bpt/emacs.git
11 years agoAuto-generate EXFUN using make-docfile
Tom Tromey [Tue, 3 Jul 2012 18:24:42 +0000 (12:24 -0600)]
Auto-generate EXFUN using make-docfile

src
* window.c (Fset_window_margins, Fset_window_fringes)
(Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
* textprop.c (Fprevious_property_change): No longer static.
* syntax.c (Fsyntax_table_p): No longer static.
* process.c (Fget_process, Fprocess_datagram_address): No longer
static.
* keymap.c (Flookup_key, Fcopy_keymap): No longer static.
* keyboard.c (Fcommand_execute): No longer static.
Remove EXFUN.
* insdel.c (Fcombine_after_change_execute): No longer static.
* image.c (Finit_image_library): No longer static.
* fileio.c (Fmake_symbolic_link): No longer static.
* eval.c (Ffetch_bytecode): No longer static.
* editfns.c (Fuser_full_name): No longer static.
* doc.c: (Fdocumentation_property, Fsnarf_documentation): No
longer static.
* buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
static.
* dired.c (Ffile_attributes): No longer static.
* composite.c (Fcomposition_get_gstring): No longer static.
* callproc.c (Fgetenv_internal): No longer static.

* ccl.h: Remove EXFUNs.
* buffer.h: Remove EXFUNs.
* dispextern.h: Remove EXFUNs.
* intervals.h: Remove EXFUNs.
* fontset.h: Remove EXFUN.
* font.h: Remove EXFUNs.
* dosfns.c (system_process_attributes): Remove EXFUN.
* keymap.h: Remove EXFUNs.
* lisp.h: Remove EXFUNs.
* w32term.h: Remove EXFUNs.
* window.h: Remove EXFUNs.
* xsettings.h: Remove EXFUN.
* xterm.h: Remove EXFUN.

lib-src
* make-docfile.c (enum global_type) <FUNCTION>: New constant.
(struct global) <value>: New field.
(add_global): Add 'value' argument.
(compare_globals): Sort functions at the end.
(close_emacs_globals): New function.
(write_globals): Handle functions.
(scan_c_file): Call add_global for DEFUN.

11 years agoSpeed up generate-new-buffer-name for invisible buffers (bug#1229)
Glenn Morris [Tue, 3 Jul 2012 17:47:32 +0000 (13:47 -0400)]
Speed up generate-new-buffer-name for invisible buffers (bug#1229)

* src/buffer.c (Fgenerate_new_buffer_name):
Speed up finding a new buffer for invisible buffers.

* src/lisp.h (Frandom): Make it visible to C.

11 years agoFix block vector allocation code to allow VECTOR_BLOCK_SIZE
Dmitry Antipov [Tue, 3 Jul 2012 16:35:53 +0000 (20:35 +0400)]
Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
values which aren't power of 2.
* alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.  Verify
it's value and the value of VECTOR_BLOCK_SIZE.  Adjust users
accordingly.

11 years ago* src/alloc.c (mark_object): Revert part of last patch to use `switch'.
Stefan Monnier [Tue, 3 Jul 2012 14:37:55 +0000 (10:37 -0400)]
* src/alloc.c (mark_object): Revert part of last patch to use `switch'.
* src/lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.

11 years ago* alloc.c (allocate_vector_block): Remove redundant
Dmitry Antipov [Tue, 3 Jul 2012 11:09:36 +0000 (15:09 +0400)]
* alloc.c (allocate_vector_block): Remove redundant
calls to mallopt if DOUG_LEA_MALLOC is defined.
(allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
avoid calls to mallopt if zero_vector is returned.

11 years ago* alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
Dmitry Antipov [Tue, 3 Jul 2012 10:21:01 +0000 (14:21 +0400)]
* alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
is enabled, avoid dereferencing NULL current_sblock if
running undumped.

11 years ago* vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
Michael Albinus [Tue, 3 Jul 2012 07:42:31 +0000 (09:42 +0200)]
* vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
files on the same host.

11 years agoFixes: debbugs:11848
Andreas Schwab [Tue, 3 Jul 2012 07:12:22 +0000 (09:12 +0200)]
Fixes: debbugs:11848

* help-fns.el (describe-function-1): Only call
help-fns--autoloaded-p when we have a file name.

11 years ago* xml.el: Protect parser against XML bombs.
Chong Yidong [Tue, 3 Jul 2012 05:28:42 +0000 (13:28 +0800)]
* xml.el: Protect parser against XML bombs.
(xml-entity-expansion-limit): New variable.
(xml-parse-string, xml-substitute-special): Use it.
(xml-parse-dtd): Avoid infloop if the DTD is not terminated.

* test/automated/xml-parse-tests.el: Update testcases.

11 years agoCleanup basic buffer management.
Dmitry Antipov [Tue, 3 Jul 2012 03:57:52 +0000 (07:57 +0400)]
Cleanup basic buffer management.
* buffer.h (struct buffer): Change layout to use generic vector
marking code.  Fix some comments.  Change type of 'clip_changed'
to bitfield.  Remove unused #ifndef old.
(FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
(GET_OVERLAYS_AT): Fix indentation.
(for_each_per_buffer_object_at): New macro.
* buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
(Fbuffer_local_variables): Use it.
(init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
* alloc.c (allocate_buffer): Adjust to match new layout of
struct buffer.  Fix comment.
(mark_overlay): New function.
(mark_buffer): Use it.  Use mark_vectorlike to mark normal
Lisp area of struct buffer.
(mark_object): Use it.  Adjust marking of misc objects
and related comments.

11 years agoTweak bug-reference-bug-regexp setting
Glenn Morris [Tue, 3 Jul 2012 02:16:11 +0000 (22:16 -0400)]
Tweak bug-reference-bug-regexp setting

* lisp/progmodes/bug-reference.el (bug-reference-bug-regexp):
Allow linking to specific messages in debbugs reports (eg 123#5).

11 years agognus-art.el (gnus-article-view-part): Toggle subparts of multipart/alternative part
Katsumi Yamaoka [Tue, 3 Jul 2012 00:25:57 +0000 (00:25 +0000)]
gnus-art.el (gnus-article-view-part): Toggle subparts of multipart/alternative part

11 years ago* lisp/xml.el: Handle entity and character reference expansion correctly.
Chong Yidong [Mon, 2 Jul 2012 16:21:54 +0000 (00:21 +0800)]
* lisp/xml.el: Handle entity and character reference expansion correctly.
(xml-default-ns): New variable.
(xml-entity-alist): Use XML spec definitions for lt and amp.
(xml-parse-region): Make first two arguments optional.  Discard
text properties.
(xml-parse-tag-1): New function, spun off from xml-parse-tag.  All
callers changed.
(xml-parse-tag): Call xml-parse-tag-1.  For backward
compatibility, this function should not modify buffer contents.
(xml-parse-tag-1): Fix opening-tag regexp.
(xml-parse-string): Rewrite, handling entity and character
references properly.
(xml--entity-replacement-text): Signal an error if a parameter
entity is undefined.

* test/automated/xml-parse-tests.el (xml-parse-tests--data): More
testcases.

11 years ago* lisp/comint.el (comint-output-filter): Filter out repeated prompts.
Stefan Monnier [Mon, 2 Jul 2012 16:18:02 +0000 (12:18 -0400)]
* lisp/comint.el (comint-output-filter): Filter out repeated prompts.

11 years ago* lisp/net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
Stefan Monnier [Mon, 2 Jul 2012 13:31:15 +0000 (09:31 -0400)]
* lisp/net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
and file-name-absolute-p.
(ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
internal calls.

11 years ago* src/ChangeLog: Fix a typo.
Dmitry Antipov [Mon, 2 Jul 2012 10:08:41 +0000 (14:08 +0400)]
* src/ChangeLog: Fix a typo.

11 years agoSpelling fixes.
Paul Eggert [Mon, 2 Jul 2012 08:00:05 +0000 (01:00 -0700)]
Spelling fixes.

11 years ago* alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
Paul Eggert [Mon, 2 Jul 2012 07:36:17 +0000 (00:36 -0700)]
* alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"

wrapper that is not needed because the wrapped code is a no-op (zero
machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.

11 years ago* alloc.c (mark_buffer): Simplify. Remove prototype.
Dmitry Antipov [Mon, 2 Jul 2012 06:23:15 +0000 (10:23 +0400)]
* alloc.c (mark_buffer): Simplify.  Remove prototype.
(mark_object): Add comment.  Reorganize marking of vector-like
objects.  Use CHECK_LIVE for all vector-like ojects except buffers
and subroutines when GC_CHECK_MARKED_OBJECTS is defined.  Avoid
redundant calls to mark_vectorlike for bool vectors.

11 years agognus-sync.el: Simply require json
Katsumi Yamaoka [Mon, 2 Jul 2012 00:48:41 +0000 (00:48 +0000)]
gnus-sync.el: Simply require json
registry.el: Simply require eieio and eieio-base

11 years ago* xml.el (xml-parse-dtd): Use proper regexps for ELEMENT declarations.
Chong Yidong [Sun, 1 Jul 2012 11:05:17 +0000 (19:05 +0800)]
* xml.el (xml-parse-dtd): Use proper regexps for ELEMENT declarations.

* test/automated/xml-parse-tests.el: Update testcase.

Fixes: debbugs:7172

11 years agoAuto-commit of loaddefs files.
Glenn Morris [Sun, 1 Jul 2012 10:23:35 +0000 (06:23 -0400)]
Auto-commit of loaddefs files.

11 years agoAuto-commit of generated files.
Glenn Morris [Sun, 1 Jul 2012 10:18:49 +0000 (06:18 -0400)]
Auto-commit of generated files.

11 years agoImprove xml parameter entity parsing, and add a new ERT test.
Chong Yidong [Sun, 1 Jul 2012 07:17:05 +0000 (15:17 +0800)]
Improve xml parameter entity parsing, and add a new ERT test.

* test/automated/xml-parse-tests.el: New file.

* lisp/xml.el (xml--parse-buffer): New function.  Move most of
xml-parse-region here.
(xml-parse-region): Copy region into a temporary buffer, since
parameter entity substitution requires changing buffer contents.
Use xml--parse-buffer.
(xml-parse-file): Use xml--parse-buffer.
(xml-parse-dtd): Make parameter entity substitution work right.

11 years agolib-src/makefile.w32-in (CTAGS_CFLAGS): Remove EMACS_NAME.
Juanma Barranquero [Sat, 30 Jun 2012 23:01:52 +0000 (01:01 +0200)]
lib-src/makefile.w32-in (CTAGS_CFLAGS): Remove EMACS_NAME.
Already defined in ETAGS_CFLAGS.

11 years ago* src/nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
Glenn Morris [Sat, 30 Jun 2012 21:35:20 +0000 (14:35 -0700)]
* src/nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.

11 years ago* lisp/comint.el (follow-comint-scroll-to-bottom): Fix declaration.
Glenn Morris [Sat, 30 Jun 2012 21:23:38 +0000 (14:23 -0700)]
* lisp/comint.el (follow-comint-scroll-to-bottom): Fix declaration.

11 years agoRemove outdated and unnecessary dbus- declarations.
Glenn Morris [Sat, 30 Jun 2012 21:22:18 +0000 (14:22 -0700)]
Remove outdated and unnecessary dbus- declarations.

* net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
Remove outdated and unnecessary dbus- declarations.
(They are in defined dbus.el now.)

11 years ago* url-vars.el (mm-mime-mule-charset-alist, mm-coding-system-p): Declare.
Glenn Morris [Sat, 30 Jun 2012 21:13:05 +0000 (14:13 -0700)]
* url-vars.el (mm-mime-mule-charset-alist, mm-coding-system-p): Declare.

11 years agoMake --no-site-lisp work for --enable-locallisppath elements
Glenn Morris [Sat, 30 Jun 2012 21:10:50 +0000 (14:10 -0700)]
Make --no-site-lisp work for --enable-locallisppath elements
without "site-lisp" in the name.
Ref http://debbugs.gnu.org/10208#25, point iii).

* configure.in (standardlisppath): New output variable.
(lisppath): Use standardlisppath.
* Makefile.in (standardlisppath): New, set by configure.
(epaths-force): Use standardlisppath and locallisppath rather than lisppath.

* src/epaths.in (PATH_SITELOADSEARCH): New.
* src/lread.c (init_lread): Use PATH_SITELOADSEARCH.

* nt/paths.h (PATH_SITELOADSEARCH): New.

Fixes: debbugs:11658

11 years agoFix last entry in src/ChangeLog.
Eli Zaretskii [Sat, 30 Jun 2012 16:09:47 +0000 (19:09 +0300)]
Fix last entry in src/ChangeLog.

11 years agoAdapt the MS-DOS build to the latest changes.
Eli Zaretskii [Sat, 30 Jun 2012 15:55:27 +0000 (18:55 +0300)]
Adapt the MS-DOS build to the latest changes.

  msdos/mainmake.v2 (bootstrap-clean): Do a maintainer-clean in lib, not
  bootstrap-clean (which doesn't exist).
  msdos/inttypes.h (PRIuMAX) [__DJGPP__ < 2.04]: Define to "llu".
  msdos/sedleim.inp (MKDIR_P): Edit to DOS "md" command.
  msdos/sed1v2.inp: (LIB_CLOCK_GETTIME): Edit to empty.
  Remove lines that invoke PAXCTL.
  (clean): Fix recipe not to run Unixy shell commands.
  msdos/sed2v2.inp (GETTIMEOFDAY_TIMEZONE): Edit to 'struct timezone'.
  (HAVE_STRNCASECMP): Edit to 1.
  msdos/sed3v2.inp (LIB_CLOCK_GETTIME): Edit to empty.
  (C_SWITCH_SYSTEM): Add "-I../msdos".
  msdos/sedlibmk.inp (GNULIB_GETTIMEOFDAY, GNULIB_PSELECT)
  (GNULIB_SELECT, HAVE_STRUCT_TIMEVAL, HAVE_SYS_SELECT_H)
  (HAVE_SYS_TIME_H, NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H)
  (NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H, NEXT_SYS_SELECT_H)
  (NEXT_SYS_TIME_H, REPLACE_GETTIMEOFDAY, REPLACE_PSELECT)
  (REPLACE_STRUCT_TIMEVAL): Edit to appropriate values.
  (BUILT_SOURCES): Edit out sys/select.h and sys/time.h.
  (mostlyclean-local, distclean-generic): Fix recipe not to run
  Unixy shell commands.

  src/sysselect.h [DOS_NT]: Don't include sys/select.h.
  src/sysselect.h (pselect) [!HAVE_PSELECT]: Redirect to sys_select.
  src/sysdep.c: Don't include dos.h and dosfns.h.
  src/process.c (sys_select):
  src/msdos.c (sys_select): Accept one more argument and ignore it.
  src/msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
  adapt data types and code to that.
  src/dosfns.c:
  src/msdos.c (gettime, settime): Define away the prototypes in dos.h,
  which clashes with the gnulib function of the same name.
  src/ w32proc.c (sys_select): Accept and ignore one more argument.
  src/w32.c (emacs_gnutls_pull): Call select with one more argument.

  lisp/emacs-lisp/timer.el (timer-until): Subtract results of
  float-time, instead of taking float-time of the result of
  time-subtract, since float-time signals an error for negative time
  arguments.

11 years agoAdapt the MS-DOS build to the latest changes.
Eli Zaretskii [Sat, 30 Jun 2012 15:32:51 +0000 (18:32 +0300)]
Adapt the MS-DOS build to the latest changes.

 msdos/mainmake.v2 (bootstrap-clean): Do a maintainer-clean in lib, not
 bootstrap-clean (which doesn't exist).
 msdos/inttypes.h (PRIuMAX) [__DJGPP__ < 2.04]: Define to "llu".
 msdos/sedleim.inp (MKDIR_P): Edit to DOS "md" command.
 msdos/sed1v2.inp: (LIB_CLOCK_GETTIME): Edit to empty.
 Remove lines that invoke PAXCTL.
 (clean): Fix recipe not to run Unixy shell commands.
 msdos/sed2v2.inp (GETTIMEOFDAY_TIMEZONE): Edit to 'struct timezone'.
 (HAVE_STRNCASECMP): Edit to 1.
 msdos/sed3v2.inp (LIB_CLOCK_GETTIME): Edit to empty.
 (C_SWITCH_SYSTEM): Add "-I../msdos".
 msdos/sedlibmk.inp (GNULIB_GETTIMEOFDAY, GNULIB_PSELECT)
 (GNULIB_SELECT, HAVE_STRUCT_TIMEVAL, HAVE_SYS_SELECT_H)
 (HAVE_SYS_TIME_H, NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H)
 (NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H, NEXT_SYS_SELECT_H)
 (NEXT_SYS_TIME_H, REPLACE_GETTIMEOFDAY, REPLACE_PSELECT)
 (REPLACE_STRUCT_TIMEVAL): Edit to appropriate values.
 (BUILT_SOURCES): Edit out sys/select.h and sys/time.h.
 (mostlyclean-local, distclean-generic): Fix recipe not to run
 Unixy shell commands.

 src/sysselect.h [DOS_NT]: Don't include sys/select.h.
 src/s/ms-w32.h (select, pselect): Don't define here, they are
 defined in sysselect.h
 src/sysselect.h (pselect) [!HAVE_PSELECT]: Redirect to sys_select.
 src/sysdep.c: Don't include dos.h and dosfns.h.
 src/process.c (sys_select):
 src/msdos.c (sys_select): Accept one more argument and ignore it.
 src/msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
 adapt data types and code to that.
 src/dosfns.c:
 src/msdos.c (gettime, settime): Define away the prototypes in dos.h,
 which clashes with the gnulib function of the same name.

 lisp/emacs-lisp/timer.el (timer-until): Subtract results of
 float-time, instead of taking float-time of the result of
 time-subtract, since float-time signals an error for negative time
 arguments.

11 years agoFix use of eval-and-compile in regexps in xml.el.
Chong Yidong [Sat, 30 Jun 2012 14:21:24 +0000 (22:21 +0800)]
Fix use of eval-and-compile in regexps in xml.el.

* xml.el (xml-*-re): Convert defvars into defconsts, and
eval-and-compile them so eval-and-compile works on derivatives.
(xml--entity-replacement-text): Use eval-and-comple.

11 years agoxml.el: Fix last change.
Chong Yidong [Sat, 30 Jun 2012 13:57:55 +0000 (21:57 +0800)]
xml.el: Fix last change.

11 years ago* vc/vc-git.el (vc-git-registered): Use cache property
Michael Albinus [Sat, 30 Jun 2012 13:18:16 +0000 (15:18 +0200)]
* vc/vc-git.el (vc-git-registered): Use cache property
`git-registered'.
(vc-git-mode-line-string): Call `vc-working-revision' instead of
`vc-git-working-revision' in order to benefit from the cache.
(vc-git-root): Use cache property `git-root'.

11 years ago* vc/vc-hooks.el (vc-before-save): Clear cache if file has been
Dmitry Gutov [Sat, 30 Jun 2012 13:14:00 +0000 (15:14 +0200)]
* vc/vc-hooks.el (vc-before-save): Clear cache if file has been
removed (likely outside Emacs).

11 years ago* lisp/emacs-lisp/cl-lib.el: Require macroexp.
Stefan Monnier [Sat, 30 Jun 2012 12:52:08 +0000 (08:52 -0400)]
* lisp/emacs-lisp/cl-lib.el: Require macroexp.

11 years ago* lisp/emacs-lisp/cl-lib.el: Require macroexp for its macros.
Stefan Monnier [Sat, 30 Jun 2012 12:05:22 +0000 (08:05 -0400)]
* lisp/emacs-lisp/cl-lib.el: Require macroexp for its macros.

11 years ago* xml.el: Implement XML parameter entities.
Chong Yidong [Sat, 30 Jun 2012 11:33:22 +0000 (19:33 +0800)]
* xml.el: Implement XML parameter entities.
(xml-parameter-entity-alist): New variable.
(xml-parse-region, xml-parse-fragment): Preserve previous values
of xml-entity-alist and xml-parameter-entity-alist, so that
repeated calls on different documents do not change them.
(xml-parse-tag): Fix doctype regexp.
(xml--entity-replacement-text): New function.
(xml-parse-dtd): Use it.  Don't handle system entities; doing that
properly requires url retrieval which is unimplemented.
(xml-escape-string): Doc fix.

11 years ago* font.c (font_style_to_value, font_style_symbolic)
Andreas Schwab [Sat, 30 Jun 2012 09:13:54 +0000 (11:13 +0200)]
* font.c (font_style_to_value, font_style_symbolic)
(font_prop_validate_style): Add type checks for values in
font_style_table.

11 years ago* lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
Andreas Schwab [Sat, 30 Jun 2012 09:13:54 +0000 (11:13 +0200)]
* lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
argument.
* character.c, charset.c, menu.c, process.c, window.c: Adjust all
uses.

11 years ago* lisp/emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
Stefan Monnier [Sat, 30 Jun 2012 02:00:08 +0000 (22:00 -0400)]
* lisp/emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.

11 years agoUndo change in xdisp.c in 2012-06-29T11:48:08Z!dmantipov@yandex.ru.
Eli Zaretskii [Fri, 29 Jun 2012 18:52:54 +0000 (21:52 +0300)]
Undo change in xdisp.c in 2012-06-29T11:48:08Z!dmantipov@yandex.ru.

 src/xdisp.c (try_window_id): Undo last change.  'int' is wide
 enough to hold vertical pixel positions on screen.

11 years agoFix the current directory of the Emacs process on MS-Windows.
Eli Zaretskii [Fri, 29 Jun 2012 13:11:54 +0000 (16:11 +0300)]
Fix the current directory of the Emacs process on MS-Windows.

 src/w32.c (getwd): Adjust commentary about startup_dir.
 (init_environment): Always call sys_access, even in non-MSVC
 builds.  Don't chdir to the directory of the Emacs executable.
 This undoes code from 1997 which was justified by the need to
 "avoid conflicts when removing and renaming directories".  But its
 downside was that every relative file name was being interpreted
 relative to the directory of the Emacs executable, which can never
 be TRT.  In particular, it broke sys_access when called with
 relative file names.
 (sys_access): Map GetLastError to errno.

11 years ago* lisp/fringe.el (fringe-mode): Doc fix.
Dmitry Antipov [Fri, 29 Jun 2012 11:48:08 +0000 (15:48 +0400)]
* lisp/fringe.el (fringe-mode): Doc fix.
* src/window.h (struct window): Change type of 'fringes_outside_margins'
to bitfield.  Fix comment.  Adjust users accordingly.
(struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
Adjust comment.
* src/xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
to ptrdiff_t.

11 years agoAuto-commit of generated files.
Glenn Morris [Fri, 29 Jun 2012 10:17:31 +0000 (06:17 -0400)]
Auto-commit of generated files.

11 years ago* net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
Michael Albinus [Fri, 29 Jun 2012 07:14:36 +0000 (09:14 +0200)]
* net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
is non-nil.
(ange-ftp-ignore-errors-if-non-essential): New defmacro.
(ange-ftp-file-name-all-completions): Use it.  (Bug#11808)

11 years agoMerge from emacs-24; up to 2012-04-30T11:57:47Z!sdl.web@gmail.com
Glenn Morris [Fri, 29 Jun 2012 06:28:37 +0000 (23:28 -0700)]
Merge from emacs-24; up to 2012-04-30T11:57:47Z!sdl.web@gmail.com

11 years agolisp/gnus/tests/: Remove
Katsumi Yamaoka [Fri, 29 Jun 2012 04:15:43 +0000 (04:15 +0000)]
lisp/gnus/tests/: Remove

11 years ago* editfns.c (region_limit): Fix type mismatch.
Dmitry Antipov [Fri, 29 Jun 2012 02:19:32 +0000 (06:19 +0400)]
* editfns.c (region_limit): Fix type mismatch.

11 years ago* nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
Dmitry Antipov [Fri, 29 Jun 2012 01:35:32 +0000 (05:35 +0400)]
* nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
undefined.  Convert from xassert to eassert.
* nsmenu.m: Convert from xassert to eassert.
* nsterm.m: Likewise.

11 years agolisp/emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
Juanma Barranquero [Thu, 28 Jun 2012 23:04:27 +0000 (01:04 +0200)]
lisp/emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).

11 years ago* src/editfns.c (region_limit): Clip to narrowing.
Stefan Monnier [Thu, 28 Jun 2012 19:09:41 +0000 (15:09 -0400)]
* src/editfns.c (region_limit): Clip to narrowing.

Fixes: debbugs:11770

11 years ago* configure.in: Fix previous change. Remove --enable-asserts.
Dmitry Antipov [Thu, 28 Jun 2012 16:34:05 +0000 (20:34 +0400)]
* configure.in: Fix previous change. Remove --enable-asserts.
(CPPFLAGS): Remove conditional -DXASSERTS=1.
Add --enable-link-time-optimization.
* INSTALL: Mention this.

11 years agoAvoid integer overflow on scroll-left and scroll-right.
Paul Eggert [Thu, 28 Jun 2012 15:50:11 +0000 (08:50 -0700)]
Avoid integer overflow on scroll-left and scroll-right.

* window.c (HSCROLL_MAX): New macro.
(Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
overflow when requested scroll falls outside ptrdiff_t range.

11 years ago* window.h (struct window): Change type of 'hscroll',
Dmitry Antipov [Thu, 28 Jun 2012 12:29:37 +0000 (16:29 +0400)]
* window.h (struct window): Change type of 'hscroll',
'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
'last_modified' and 'last_overlay_modified' to EMACS_INT.
Adjust users accordingly.
* xdisp.c (try_cursor_movement): Replace type check with eassert.
* window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
from EMACS_INT to ptrdiff_t.
(make_window): Omit redundant initialization.

11 years ago* calendar/cal-dst.el (calendar-current-time-zone): Return
Andreas Schwab [Thu, 28 Jun 2012 12:13:38 +0000 (14:13 +0200)]
* calendar/cal-dst.el (calendar-current-time-zone): Return
calendar-current-time-zone-cache if non-nil.

11 years agosrc/makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
Juanma Barranquero [Thu, 28 Jun 2012 11:37:27 +0000 (13:37 +0200)]
src/makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.

11 years ago* window.h (struct window): Change type of 'use_time' and
Dmitry Antipov [Thu, 28 Jun 2012 11:11:48 +0000 (15:11 +0400)]
* window.h (struct window): Change type of 'use_time' and
'sequence_number' from Lisp_Object to int.
* frame.c (make_frame): Adjust users accordingly.
* print.c (print_object): Likewise.
* window.c (select_window, Fwindow_use_time, make_parent_window)
(make_window): Likewise.

11 years agoterm: rework color cutomizing
Julien Danjou [Thu, 28 Jun 2012 10:40:24 +0000 (12:40 +0200)]
term: rework color cutomizing

* term.el (term-handle-colors-array): Use a set of new faces to
color the terminal.  Also uses :inverse-video property.
(term-default-fg-color): Set to nil by default, deprecate in favor
of `term-face'.
(term-default-bg-color): Set to nil by default, deprecate in favor
of `term-face'.
(term-current-face): Use `term-face' by default.
(term-bold-attribute): Variable deleted.

11 years agoAuto-commit of generated files.
Glenn Morris [Thu, 28 Jun 2012 10:17:30 +0000 (06:17 -0400)]
Auto-commit of generated files.

11 years agont/nmake.defs,gmake.defs (CHECKING_FLAGS): Remove XASSERTS.
Juanma Barranquero [Thu, 28 Jun 2012 09:06:11 +0000 (11:06 +0200)]
nt/nmake.defs,gmake.defs (CHECKING_FLAGS): Remove XASSERTS.

11 years ago* configure.in: Add glyphs category to --enable-checking option.
Dmitry Antipov [Thu, 28 Jun 2012 07:50:50 +0000 (11:50 +0400)]
* configure.in: Add glyphs category to --enable-checking option.
(GLYPH_DEBUG): Define if glyphs debugging is enabled.
* src/dispextern.h (GLYPH_DEBUG): Now defined in config.h if
enabled with --enable-checking=[all,glyphs] configure option.
Fix GLYPH_DEBUG usage assuming that it may be undefined,
adjust comments accordingly.
* src/dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
undefined, adjust comments accordingly.
* src/image.c: Likewise.
* src/scroll.c: Likewise.
* src/w32fns.c: Likewise.
* src/w32term.c: Likewise.
* src/xdisp.c: Likewise.
* src/xfaces.c: Likewise.
* src/xfns.c: Likewise.
* src/xterm.c: Likewise.

11 years agoGeneralize run-time debugging checks.
Dmitry Antipov [Thu, 28 Jun 2012 07:50:27 +0000 (11:50 +0400)]
Generalize run-time debugging checks.
* configure.in (ENABLE_CHECKING): Update comment.
* src/dispextern.h (XASSERTS): Remove.
* src/fontset.c (xassert): Remove.
Convert from xassert to eassert.
* src/alloc.c: Convert from xassert to eassert.
* src/bidi.c: Likewise.
* src/dispnew.c: Likewise.
* src/fns.c: Likewise.
* src/fringe.c: Likewise.
* src/ftfont.c: Likewise.
* src/gtkutil.c: Likewise.
* src/image.c: Likewise.
* src/keyboard.c: Likewise.
* src/menu.c: Likewise.
* src/process.c: Likewise.
* src/scroll.c: Likewise.
* src/sound.c: Likewise.
* src/term.c: Likewise.
* src/w32console.c: Likewise.
* src/w32fns.c: Likewise.
* src/w32term.c: Likewise.
* src/window.c: Likewise.
* src/xdisp.c: Likewise.
* src/xfaces.c: Likewise.
* src/xfns.c: Likewise.
* src/xselect.c: Likewise.
* src/xterm.c: Likewise.

11 years agoAdd a PROBLEMS note about the libotf name-clash annoyance
Glenn Morris [Thu, 28 Jun 2012 07:47:19 +0000 (00:47 -0700)]
Add a PROBLEMS note about the libotf name-clash annoyance

11 years ago* simple.el (completion-list-mode-finish): Don't use toggle-read-only.
Glenn Morris [Thu, 28 Jun 2012 07:21:41 +0000 (00:21 -0700)]
* simple.el (completion-list-mode-finish): Don't use toggle-read-only.
Since completion-list-mode has a special mode-class, it wasn't doing
anything extra anyway.

11 years ago* gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
Andreas Schwab [Thu, 28 Jun 2012 07:12:59 +0000 (09:12 +0200)]
* gnutls.c (emacs_gnutls_handshake): Revert last change.  Add QUIT
to make the loop interruptible.

11 years agoTODO updates; add wishlist section
Glenn Morris [Thu, 28 Jun 2012 07:05:15 +0000 (00:05 -0700)]
TODO updates; add wishlist section

11 years ago* emacs.py, emacs2.py, emacs3.py: Remove files.
Glenn Morris [Thu, 28 Jun 2012 06:58:39 +0000 (23:58 -0700)]
* emacs.py, emacs2.py, emacs3.py: Remove files.
AFAICS, the new python.el does not use these files.

11 years ago* configure.in: Don't check for sys/select.h, sys/time.h, utime.h.
Paul Eggert [Thu, 28 Jun 2012 05:29:58 +0000 (22:29 -0700)]
* configure.in: Don't check for sys/select.h, sys/time.h, utime.h.

Emacs proper no longer uses these headers, and can rely on Gnulib
for these checks.

11 years agoMake inlining of other-mode interpreted functions work.
Stefan Monnier [Thu, 28 Jun 2012 03:31:27 +0000 (23:31 -0400)]
Make inlining of other-mode interpreted functions work.
* lisp/emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
(byte-compile): Use it to fix compilation of lexical-binding closures.
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
function, if needed.

Fixes: debbugs:11799

11 years agoMerge from gnulib.
Paul Eggert [Thu, 28 Jun 2012 00:07:33 +0000 (17:07 -0700)]
Merge from gnulib.

* m4/getopt.m4: Copy new version from gnulib, incorporating:
getopt-posix: No longer guarantee that option processing is resettable.

11 years ago* configure.in: Only check for paxctl on gnu-linux.
Glenn Morris [Wed, 27 Jun 2012 23:57:56 +0000 (19:57 -0400)]
* configure.in: Only check for paxctl on gnu-linux.

http://debbugs.gnu.org/11398#26

NetBSD has a "paxctl" that does not support the same options
as the GNU/Linux version...

11 years ago* lisp/help-mode.el (help-make-xrefs): Don't just withstand
Stefan Monnier [Wed, 27 Jun 2012 21:16:32 +0000 (17:16 -0400)]
* lisp/help-mode.el (help-make-xrefs): Don't just withstand
cyclic-variable-indirection but any error in documentation-property.

11 years agoGet rid of all the manual purecopy calls in menu-bar definitions.
Stefan Monnier [Wed, 27 Jun 2012 21:15:13 +0000 (17:15 -0400)]
Get rid of all the manual purecopy calls in menu-bar definitions.
* lisp/loadup.el (purify-flag): Pre-grow the hash-table to reduce the
memory use.
* lisp/bindings.el (bindings--define-key): New function.
* lisp/vc/vc-hooks.el, lisp/replace.el, lisp/menu-bar.el:
* lisp/international/mule-cmds.el, lisp/emacs-lisp/lisp-mode.el:
* lisp/buff-menu.el, lisp/bookmark.el:
* bindings.el: Use it to purecopy define-key bindings.
* src/fns.c (maybe_resize_hash_table): Output message when growing the
purify-hashtable.

11 years ago* lisp/textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
Stefan Monnier [Wed, 27 Jun 2012 18:36:25 +0000 (14:36 -0400)]
* lisp/textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.

11 years ago* alloc.c (allocate_string_data): Remove dead code.
Dmitry Antipov [Wed, 27 Jun 2012 15:46:48 +0000 (19:46 +0400)]
* alloc.c (allocate_string_data): Remove dead code.
* xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
avoid GCC warning about unused macro.

11 years ago* lisp/emacs-lisp/cl.el (flet): Mark obsolete.
Stefan Monnier [Wed, 27 Jun 2012 15:11:28 +0000 (11:11 -0400)]
* lisp/emacs-lisp/cl.el (flet): Mark obsolete.
* lisp/emacs-lisp/cl-macs.el (cl-flet*): New macro.
* lisp/vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
* lisp/progmodes/js.el (js-c-fill-paragraph):
* lisp/progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
(ebrowse-switch-member-buffer-to-derived-class):
* test/automated/ert-x-tests.el (ert-test-run-tests-interactively-2):
* lisp/play/5x5.el (5x5-solver): Use cl-flet.

Fixes: debbugs:11780

11 years ago* lisp/gnus/shr.el (shr-render-buffer): New command.
Stefan Monnier [Wed, 27 Jun 2012 14:40:22 +0000 (10:40 -0400)]
* lisp/gnus/shr.el (shr-render-buffer): New command.
(shr-visit-file): Use it.

11 years ago* lisp/emacs-lisp/cl.el: Use lexical-binding. Fix flet.
Stefan Monnier [Wed, 27 Jun 2012 14:39:30 +0000 (10:39 -0400)]
* lisp/emacs-lisp/cl.el: Use lexical-binding.  Fix flet.
(cl--symbol-function): New macro.
(cl--letf, cl--letf*): Use it.

Fixes: debbugs:11780

11 years ago* alloc.c (allocate_string): Omit intervals initialization.
Dmitry Antipov [Wed, 27 Jun 2012 14:35:51 +0000 (18:35 +0400)]
* alloc.c (allocate_string): Omit intervals initialization.
* alloc.c (make_uninit_multibyte_string): Initialize intervals
as in make_pure_string and make_pure_c_string.

11 years ago* lisp/emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
Stefan Monnier [Wed, 27 Jun 2012 14:05:24 +0000 (10:05 -0400)]
* lisp/emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
Strip "toggle-" if any.

11 years ago* alloc.c (allocate_string): Fix last change.
Dmitry Antipov [Wed, 27 Jun 2012 11:25:56 +0000 (15:25 +0400)]
* alloc.c (allocate_string):  Fix last change.

11 years ago* alloc.c (allocate_string): Remove two redundant calls
Dmitry Antipov [Wed, 27 Jun 2012 11:19:54 +0000 (15:19 +0400)]
* alloc.c (allocate_string):  Remove two redundant calls
to memset, add explicit initialization where appropriate.

11 years agoRemove paths.el
Glenn Morris [Wed, 27 Jun 2012 07:47:56 +0000 (00:47 -0700)]
Remove paths.el

* lisp/info.el (Info-default-directory-list): Move here from paths.el.
* lisp/paths.el: Remove file, which is now empty.
* lisp/loadup.el: No longer load "paths".

* src/lisp.mk (lisp): Remove paths.elc.

* lib-src/makefile.w32-in (lisp2): Remove paths.el.

* INSTALL: Remove references to paths.el.

11 years ago* lisp/custom.el (custom-initialize-delay): Doc fix.
Glenn Morris [Wed, 27 Jun 2012 07:10:27 +0000 (00:10 -0700)]
* lisp/custom.el (custom-initialize-delay): Doc fix.

11 years agoReplace eshell-defgroup with plain defgroup
Glenn Morris [Wed, 27 Jun 2012 07:08:06 +0000 (00:08 -0700)]
Replace eshell-defgroup with plain defgroup

Borrowing a trick from vc-sccs.el, wrap the defgroup in a progn
so that the whole thing ends up in the generated autoload file,
esh-groups.el.

* em-alias.el, em-banner.el, em-basic.el, em-cmpl.el, em-dirs.el:
* em-glob.el, em-hist.el, em-ls.el, em-pred.el, em-prompt.el:
* em-rebind.el, em-script.el, em-smart.el, em-term.el, em-unix.el:
* em-xtra.el: Replace eshell-defgroup with (progn (defgroup.
* eshell.el (eshell-defgroup): Remove alias.

11 years agoFix ChangeLog entry from trunk 2012-06-27T03:52:02Z!jwiegley@gmail.com.
Glenn Morris [Wed, 27 Jun 2012 06:55:01 +0000 (23:55 -0700)]
Fix ChangeLog entry from trunk 2012-06-27T03:52:02Z!jwiegley@gmail.com.
For some reason, this included an extraneous entry from the emacs-24
branch.

11 years agoLet C-h f do autoloading, and report if a function was previously autoloaded.
Chong Yidong [Wed, 27 Jun 2012 05:47:14 +0000 (13:47 +0800)]
Let C-h f do autoloading, and report if a function was previously autoloaded.

* lisp/help-fns.el (help-fns--autoloaded-p): New function.
(describe-function-1): Refer to a function as "autoloaded" if it
was autoloaded at any time in the past.  Perform autoloading if
help-enable-auto-load is non-nil.

* lisp/help.el (help-enable-auto-load): New variable.

* src/doc.c (Fsubstitute_command_keys): Fix punctuation.

11 years agoIn Lisp manual, don't capitalize pty.
Chong Yidong [Wed, 27 Jun 2012 05:21:15 +0000 (13:21 +0800)]
In Lisp manual, don't capitalize pty.

* doc/lispref/processes.texi (Asynchronous Processes, Input to Processes):
* doc/lispref/internals.texi (Process Internals): Don't capitalize "pty".

11 years agounexmacosx.c (copy_data_segment): Added two section names used on Mac
John Wiegley [Wed, 27 Jun 2012 03:52:02 +0000 (22:52 -0500)]
unexmacosx.c (copy_data_segment): Added two section names used on Mac
OS X Lion: __mod_init_func and __mod_term_func.

11 years agoalloc.c (mark_memory): Do not check with -faddress-sanitizer when
John Wiegley [Wed, 27 Jun 2012 03:49:35 +0000 (22:49 -0500)]
alloc.c (mark_memory): Do not check with -faddress-sanitizer when
building with Clang.

11 years ago* doc/emacs/ack.texi (Acknowledgments): Tiny update.
Glenn Morris [Wed, 27 Jun 2012 03:24:29 +0000 (20:24 -0700)]
* doc/emacs/ack.texi (Acknowledgments): Tiny update.

11 years agoNEWS, ChangeLog fixes
Glenn Morris [Wed, 27 Jun 2012 03:23:23 +0000 (20:23 -0700)]
NEWS, ChangeLog fixes

11 years agolisp/gnus/tests/gnustest-{nntp,registry}.el: Set no-byte-compile and no-update-autoloads
Katsumi Yamaoka [Wed, 27 Jun 2012 00:47:19 +0000 (00:47 +0000)]
lisp/gnus/tests/gnustest-{nntp,registry}.el: Set no-byte-compile and no-update-autoloads

11 years agolisp/gnus/ChangeLog: Cosmetic fix
Katsumi Yamaoka [Tue, 26 Jun 2012 23:26:41 +0000 (23:26 +0000)]
lisp/gnus/ChangeLog: Cosmetic fix

11 years ago* src/eval.c (Fapply): Allow calling it with a single argument.
Stefan Monnier [Tue, 26 Jun 2012 23:09:09 +0000 (19:09 -0400)]
* src/eval.c (Fapply): Allow calling it with a single argument.

11 years agoAdd lisp/gnus/mm-archive.el, lisp/gnus/tests/gnustest-nntp.el, and lisp/gnus/tests...
Gnus developers [Tue, 26 Jun 2012 22:55:13 +0000 (22:55 +0000)]
Add lisp/gnus/mm-archive.el, lisp/gnus/tests/gnustest-nntp.el, and lisp/gnus/tests/gnustest-registry.el

11 years agoMerge changes made in Gnus master ever since feature freeze
Gnus developers [Tue, 26 Jun 2012 22:52:31 +0000 (22:52 +0000)]
Merge changes made in Gnus master ever since feature freeze

:::::::::::::::::
::: doc/misc/ :::
:::::::::::::::::
2012-06-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus.texi (POP before SMTP): POP-before-SMTP works with all sending
  methods, so don't mention smtpmail here.

2012-05-04 Wolfgang Jenkner <wjenkner@inode.at>
* gnus.texi (Picons): Document gnus-picon-properties.

2012-06-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus.texi: Remove mention of compilation, as that's no longer
 supported.

2012-03-14 Christopher Schmidt <christopher@ch.ristopher.com>
* gnus.texi (Archived Messages): Mention
  gnus-gcc-pre-body-encode-hook and gnus-gcc-post-body-encode-hook.

2012-02-16 Lars Ingebrigtsen <larsi@gnus.org>
* gnus.texi (Various Summary Stuff):
  Remove mention of `gnus-propagate-marks'.

2012-02-15 Lars Ingebrigtsen <larsi@gnus.org>
* gnus.texi: Remove mentions of nnml/nnfolder/nntp backend marks,
  which no longer exist.

2012-02-08 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus.texi (Archived Messages):
  Document gnus-gcc-self-resent-messages.

2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
* message.texi (Mail Variables):
  Mention the optional user parameter for X-Message-SMTP-Method.

2012-02-02 Lars Ingebrigtsen <larsi@gnus.org>
* gnus.texi (Posting Styles): Mention X-Message-SMTP-Method.
* message.texi (Mail Variables): Document X-Message-SMTP-Method.

2012-01-31 Lars Ingebrigtsen <larsi@gnus.org>
* gnus.texi (Key Index): Change encoding to utf-8.

::::::::::::::::::
::: lisp/gnus/ :::
::::::::::::::::::
2012-06-26 Katsumi Yamaoka <yamaoka@jpl.org>
* mm-decode.el: Add coding cookie for a soft hyphen that mm-shr uses.

2012-06-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus-art.el (gnus-article-read-summary-keys): Protect against the key
  being bound to a lambda form.

2012-05-04 Wolfgang Jenkner <wjenkner@inode.at>
* gnus-picon.el (gnus-picon-properties): New defcustom.
  (gnus-picon-create-glyph): Use it.

2012-06-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
* shr.el: Add a iso-8859-1 cookie to make stuff work under other
  locales.
* mm-decode.el (mm-display-part): Dissect archives when hitting `RET'
  on a handle.
* gnus-sum.el (gnus-summary-limit-to-author): Use the current From
  address as the default.
* nnfolder.el (nnfolder-save-buffer): Delete old versions silently.
  It makes no sense to query the user about internal files.
* gnus-spec.el: Remove all the byte-compilation stuff, since
  benchmarking shows that it doesn't help when entering large summary
  buffers.
* gnus-util.el (gnus-byte-code): Remove.
* gnus-spec.el (gnus-update-format-specifications): Remove outdated
  grouplens stuff.

2012-06-07 Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>
* message.el (message-buffers): Return all buffers derived from Message
  to make `gnus-dired-attach' work with mu4e.

2012-05-28 Daiki Ueno <ueno@unixuser.org>
* mm-decode.el (mm-inhibit-auto-detect-attachment): New variable.
  (mm-dissect-singlepart): Don't guess the MIME type of
  application/octet-stream parts if mm-inhibit-auto-detect-attachment is
  set.
  (mm-dissect-multipart): Bind mm-inhibit-auto-detect-attachment if the
  toplevel MIME type is multipart/encrypted.

2011-12-02 Wolfgang Jenkner <wjenkner@inode.at>
* gnus-agent.el (gnus-agent-save-active): Deal with the "groups" format.
  In particular, add an optional argument and a docstring.
* gnus-start.el (gnus-groups-to-gnus-format): Use it.
* nntp.el (nntp-finish-retrieve-group-infos): Make `nntp-server-buffer'
  current before calling `gnus-groups-to-gnus-format'.
  Note that this was already the case for `gnus-active-to-gnus-format'.

2012-04-25 Katsumi Yamaoka <yamaoka@jpl.org>
* pop3.el (pop3-wait-for-messages): Fix retrieved data size calculation.

2012-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
* mm-decode.el (mm-dissect-buffer): Doc fix.
* gnus-sum.el (gnus-handle-ephemeral-exit):
  Avoid creating the group buffer if it doesn't exist.
* gnus-group.el (gnus-group-read-ephemeral-group): If no quit-config
  is given, mark the group as ephemeral with the current window conf.
* gnus-sum.el (gnus-set-global-variables): Don't assume that the group
  buffer exists, which it doesn't if we haven't started Gnus.
  (gnus-summary-exit): Allow quitting when we don't have a group buffer.

2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
* mml.el (mml-generate-mime):
  Allow specifying what the top-level part type is.
* gnus-sum.el (gnus-auto-center-summary):
  `scroll-margin' isn't defined on XEmacs.

2012-04-10 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
* gnus-sum.el (gnus-auto-center-summary):
  Set default to respect `scroll-margin'.

2012-04-10 Elias Oltmanns <eo@nebensachen.de> (tiny change)
* gnus-cite.el (gnus-dissect-cited-text): A single line without
  citation prefix within a block of cited text should be considered
  part of that block *only* if it is a blank line.

2012-04-02 Katsumi Yamaoka <yamaoka@jpl.org>
* shr.el (shr-find-fill-point): Remove unused code; don't break a line
  before kinsoku-bol characters nor within kinsoku-eol characters.

2012-03-27 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sync.el (gnus-topic-alist, gnus-group-topic)
  (gnus-topic-create-topic, gnus-topic-enter-dribble):
  Silence compiler.
  (gnus-sync-read): Use mapc instead of mapcar.
* mm-archive.el: Require mm-decode for some macros.
  (gnus-recursive-directory-files, mailcap-extension-to-mime):
  Silence the byte compiler.
  (mm-archive-decoders): New function that returns the value of
  the mm-archive-decoders variable.
* mm-decode.el:
  Don't require mm-archive; autoload mm-archive functions instead.
  (mm-dissect-singlepart): Use the function mm-archive-decoders.
* nnmail.el (mail-send-and-exit): Silence the byte compiler.

2012-03-12 Peter Munster <pmrb@free.fr>
* gnus-demon.el (gnus-demon-timers): Now a plist (function -> timer).
  (gnus-demon-cancel): Ditto.
  (gnus-demon-run-callback): When function cannot be called due to low
  idleness, call it when idleness reaches the expected value, instead
  of waiting another timer period.
  (gnus-demon-init): Add `time' to arguments of call-back.

2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
* gnus.el: Register gnus-registry functions.
* gnus-registry.el (gnus-try-warping-via-registry):
  Moved here and indent.
* gnus-int.el (gnus-warp-to-article):
  Check whether the registry is enabled before warping.

2012-03-22 Dave Abrahams <dave@boostpro.com>
* gnus-sum.el (gnus-summary-insert-subject): Record information
  in the registry about each article retrieved.
* gnus-int.el (gnus-select-group-with-message-id): New function.
  (gnus-try-warping-via-registry): Ditto.
  (gnus-warp-to-article): Fall back on the registry.

2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
* nnimap.el (nnimap-fetch-partial-articles): Minor doc string fixup.

2012-03-22 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-msg.el (gnus-summary-resend-message-insert-gcc): Assume that
  gnus-gcc-self-resent-messages may be a group parameter.
  (gnus-summary-resend-message):
  Don't encode encoded words in header when Gcc'ing resent message.

2012-03-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
* shr.el (shr-insert): Treat non-breaking space just like normal
  space.  This seems to produce more pleasing results.
  (shr-insert):
  Only insert a blank line if we're starting from an image.
  (shr-tag-br):
  Allow <br> to end lines or to make a single blank line.
  (shr-ensure-paragraph): Consider lines with white space to be blank.

2012-03-14 Christopher Schmidt <christopher@ch.ristopher.com>
* gnus-msg.el (gnus-inews-do-gcc): Add gnus-gcc-pre-body-encode-hook
  and gnus-gcc-post-body-encode-hook.

2012-02-16 Lars Ingebrigtsen <larsi@gnus.org>
* mm-decode.el (mm-dissect-singlepart):
  Guess what the type of application/octet-stream parts really is.
* gnus-sum.el (gnus-propagate-marks): Remove.

2012-02-15 Lars Ingebrigtsen <larsi@gnus.org>
* nntp.el (nntp-coding-system-for-read): Remove.
  (nntp-coding-system-for-write): Ditto.
  (nntp-open-connection): Just use `binary' directly.

2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
* registry.el (registry-usage-test, registry-persistence-test):
  Move to tests/gnustest-registry.el.
  (registry-make-testable-db, registry-match-test)
  (registry-instantiation-test): Move to tests/gnustest-registry.el.
* gnus-registry.el (gnus-registry-misc-test)
  (gnus-registry-usage-test): Move to tests/gnustest-registry.el.
* tests/gnustest-registry.el:
  New file with the registry and gnus-registry ERT tests.

2012-02-13 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-msg.el (gnus-summary-resend-message):
  Make gnus-summary-resend-message-insert-gcc be last item in
  message-header-setup-hook.

2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
* nnfolder.el (nnfolder-marks-directory, nnfolder-marks-is-evil)
  (nnfolder-marks, nnfolder-marks-file-suffix)
  (nnfolder-marks-modtime): Remove.
  (nnfolder-open-server): Don't use marks.
  (nnfolder-request-delete-group): Ditto.
  (nnfolder-request-rename-group): Ditto.
  (nnfolder-request-set-mark, nnfolder-request-marks)
  (nnfolder-group-marks-pathname, nnfolder-marks-changed-p)
  (nnfolder-save-marks, nnfolder-open-marks): Remove.
* nnml.el (nnml-marks-is-evil, nnml-marks-file-name, nnml-marks)
  (nnml-marks-modtime): Remove.
  (nnml-request-delete-group): Don't use marks.
  (nnml-request-rename-group): Ditto.
  (nnml-request-set-mark, nnml-request-marks, nnml-marks-changed-p)
  (nnml-save-marks, nnml-open-marks): Remove.
* nntp.el (nntp-marks-is-evil, nntp-marks-file-name, nntp-marks)
  (nntp-marks-modtime, nntp-marks-directory, nntp-request-set-mark)
  (nntp-request-marks, nntp-marks-directory, nntp-marks-changed-p)
  (nntp-save-marks, nntp-open-marks, nntp-possibly-create-directory)
  (nntp-server-to-method-cache): Remove.
* shr.el (shr-rescale-image): Fix wrong merge.

2012-02-15 Lars Ingebrigtsen <larsi@gnus.org>
* shr.el (shr-remove-trailing-whitespace):
  Really delete the padding on too-wide lines.

2012-02-09 Lars Ingebrigtsen <larsi@gnus.org>
* mm-archive.el (mm-archive-dissect-and-inline): New function.
  (mm-archive-dissect-and-inline): Fix up the undisplayer.
* mm-decode.el (mm-display-external): Output the text from
  the command in the buffer after the command finished.
  This makes text-based commands behave better.

2012-02-07 Lars Ingebrigtsen <larsi@gnus.org>
* message.el (smtpmail-smtp-user): Silence compiler warning.

2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
* message.el (message-multi-smtp-send-mail):
  Also allow specifying the SMTP user name.

2012-02-06 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sum.el (gnus-summary-article-map): Fix typo.

2012-02-02 Lars Ingebrigtsen <larsi@gnus.org>
* message.el (message-multi-smtp-send-mail): New function.
  (message-multi-smtp-send-mail): Respect the X-Message-SMTP-Method
  header to implement multi-SMTP functionality.
* gnus-agent.el (gnus-agent-send-mail-function): Removed.
  (gnus-agentize): Don't set it.
  (gnus-agent-send-mail): Don't use it.
* gnus-sum.el (gnus-summary-widget-backward):
  New function and keystroke.
* shr.el (shr-put-image): Remove underlines from sliced images.
  (shr-zoom-image): Compute the region to be replaced more correctly.

2012-02-02 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-msg.el (gnus-gcc-self-resent-messages): New user option.
  (gnus-summary-resend-message-insert-gcc): New function.
  (gnus-summary-resend-message): Modify message-header-setup-hook and
  message-sent-hook to make it work for Gcc.
  (gnus-inews-do-gcc): Update the number of unread articles of groups
  that messages are Gcc'd to.
* message.el (message-resend): Run message-sent-hook to do Gcc.

2012-02-01 Lars Ingebrigtsen <larsi@gnus.org>
* gnus-registry.el (gnus-registry-fixup-registry):
  Move the message to a higher level to silence compilation.
* gnus-art.el (gnus-shr-put-image): Take and pass on a `flags'
  parameter to allow controlling the scaling.
* shr.el (shr-zoom-image): New command and keystroke.
  (shr-put-image): Take a `size' flag to say how to scale the image.
* mm-archive.el (mm-dissect-archive): Use it to get all file names.
  Use recursive deletion.
  (mm-dissect-archive): Add support for zip files.
* gnus-util.el (gnus-recursive-directory-files): New function.
* mm-archive.el (mm-archive-list-files): Inline text and image parts.
  (mm-archive-decoders): Add tgz support.
* mm-decode.el (mm-shr): Make sure that the HTML ends with a newline.
  Otherwise inserting text into the Gnus buffer can look odd.
* gnus-art.el (gnus-mime-inline-part): Slight clean-up.
* mm-archive.el (mm-archive-decoders): Add support for tar.
* gnus.el (gnus-logo-color-alist): Change the colours for Ma Gnus.
* nnmail.el (nnmail-extra-headers): Add Cc to the default.

2012-01-31 Lars Ingebrigtsen <larsi@gnus.org>
* mm-decode.el (mm-dissect-singlepart): Check that the decoder exists.
* mm-archive.el: New file.
* mm-decode.el (mm-dissect-singlepart):
  Use it to decode ms-tnef files.
* mm-util.el (mm-find-buffer-file-coding-system): Comment fix.
* message.el (message-goto-*): Make all the `message-goto-*' commands
  push the mark before moving point.  This makes it easier to go back
  to where you came from after editing whatever you jumped to.

2012-01-07 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-sync.el (gnus-sync-newsrc-groups): Quote normally.
  (gnus-sync-lesync-pre-save-group-entry): Remove invalid invlists.
  (gnus-sync-lesync-normalize-group-entry): Ignore a few more keys.

2011-11-09 Teodor Zlatanov <tzz@lifelogs.com>
* spam.el: Move BBDB autoloads.
  (spam-exists-in-BBDB-p):
  New function to do the BBDB search directly in BBDB 2 and 3.
  (spam-check-BBDB): Use it.
  (spam-enter-ham-BBDB): Use it.

2011-10-31 Peter Munster <pmrb@free.fr> (tiny change)
* gnus-group.el (gnus-group-get-new-news):
  New parameter `one-level' for scanning exactly one level.
* gnus-start.el (gnus-get-unread-articles): Ditto.

2011-11-03 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-sync.el: More commentary about setup.

2011-11-02 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-sync.el: More commentary about `gnus-sync-read' issues.

2011-10-31 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-sync.el: Improve docs about CouchDB admins.

2011-10-29 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-sync.el (gnus-sync-lesync-setup): Fix salt when user setup is
  not needed.  Provide xmlplistread list function to produce XML plist
  output for non-Gnus LeSync clients.

2011-10-27 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-sync.el: Add LeSync synchronization backend and logic to read
  and save against it.  Group subscriptions, read marks, other marks,
  subscription levels, topic names, and topic offsets (the group's
  position within the topic) are saved.  This is an experimental
  backend and may change significantly.  Load json.el from
  the gnus-fallback-lib if it's not available otherwise.
  (gnus-sync-save): Don't use `apply-partially' because of XEmacs.

2011-04-20 David Engster <dengste@eml.cc>
* tests/gnustest-nntp.el: New file for simple NNTP testing.