------------------------------------------------------------ revno: 116107 committer: Glenn Morris branch nick: trunk timestamp: Wed 2014-01-22 00:30:00 -0800 message: Some doc for image-format-suffixes * doc/lispref/display.texi (ImageMagick Images): Expand on image-format-suffixes. * lisp/image.el (image-format-suffixes): Doc fix. * etc/NEWS: Related markup. diff: === modified file 'doc/lispref/ChangeLog' --- doc/lispref/ChangeLog 2014-01-20 20:05:04 +0000 +++ doc/lispref/ChangeLog 2014-01-22 08:30:00 +0000 @@ -1,3 +1,7 @@ +2014-01-22 Glenn Morris + + * display.texi (ImageMagick Images): Expand on image-format-suffixes. + 2014-01-20 Glenn Morris * hash.texi (Other Hash): Do not mention subr-x.el functions; === modified file 'doc/lispref/display.texi' --- doc/lispref/display.texi 2014-01-07 07:51:20 +0000 +++ doc/lispref/display.texi 2014-01-22 08:30:00 +0000 @@ -4690,6 +4690,16 @@ ImageMagick entirely. @end defopt +@defvar image-format-suffixes +This variable is an alist mapping image types to file name extensions. +Emacs uses this in conjunction with the @code{:format} image property +(see below) to give a hint to the ImageMagick library as to the type +of an image. Each element has the form @code{(@var{type} +@var{extension})}, where @var{type} is a symbol specifying an image +content-type, and @var{extension} is a string that specifies the +associated file name extension. +@end defvar + Images loaded with ImageMagick support the following additional image descriptor properties: @@ -4700,13 +4710,13 @@ supports transparency. If the value is @code{nil}, it defaults to the frame's background color. -@item :width, :height +@item :width @var{width}, :height @var{height} The @code{:width} and @code{:height} keywords are used for scaling the image. If only one of them is specified, the other one will be calculated so as to preserve the aspect ratio. If both are specified, aspect ratio may not be preserved. -@item :max-width, :max-height +@item :max-width @var{max-width}, :max-height @var{max-height} The @code{:max-width} and @code{:max-height} keywords are used for scaling if the size of the image of the image exceeds these values. If @code{:width} is set it will have precedence over @code{max-width}, @@ -4715,19 +4725,16 @@ wish. @code{:max-width} and @code{:max-height} will always preserve the aspect ratio. -@c FIXME: ':format-type' or ':format'? --xfq -@item :format -ImageMagick tries to auto-detect the image type, but it isn't always -able to. By using @code{:format-type}, we can give ImageMagick a hint -to try to help it. It's used in conjunction with the -@code{image-format-suffixes} variable, which provides a mapping from -content types to file name suffixes. This is then given to -ImageMagick as a file name hint. +@item :format @var{type} +The value, @var{type}, should be a symbol specifying the type of the +image data, as found in @code{image-format-suffixes}. This is used +when the image does not have an associated file name, to provide a +hint to ImageMagick to help it detect the image type. -@item :rotation +@item :rotation @var{angle} Specifies a rotation angle in degrees. -@item :index +@item :index @var{frame} @c Doesn't work: http://debbugs.gnu.org/7978 @xref{Multi-Frame Images}. @end table === modified file 'etc/NEWS' --- etc/NEWS 2014-01-22 07:55:53 +0000 +++ etc/NEWS 2014-01-22 08:30:00 +0000 @@ -175,9 +175,11 @@ +++ *** ImageMagick images now support the :max-width and :max-height keywords. -*** Some data types aren't auto-detected by ImageMagick. -Adding :format to `create-image' may help if the content type is in -the new variable `image-format-suffixes'. ++++ +*** When using `create-image' with image data, you can pass a :format +attribute (via the property-list argument) in order to help +ImageMagick detect the image type. The value should be a MIME +content-type that is found in the new variable `image-format-suffixes'. ** Frame and window changes === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-22 07:55:53 +0000 +++ lisp/ChangeLog 2014-01-22 08:30:00 +0000 @@ -1,5 +1,7 @@ 2014-01-22 Glenn Morris + * image.el (image-format-suffixes): Doc fix. + * international/quail.el (quail-define-package): Doc fix. * emacs-lisp/authors.el (authors-valid-file-names): === modified file 'lisp/image.el' --- lisp/image.el 2014-01-01 07:43:34 +0000 +++ lisp/image.el 2014-01-22 08:30:00 +0000 @@ -104,11 +104,13 @@ (defvar image-format-suffixes '((image/x-icon "ico")) - "Alist of MIME Content-Type headers to file name suffixes. + "An alist associating image types with file name suffixes. This is used as a hint by the ImageMagick library when detecting -image types. If `create-image' is called with a :format -matching found in this alist, the ImageMagick library will be -told that the data would have this suffix if saved to a file.") +the type of image data (that does not have an associated file name). +Each element has the form (MIME-CONTENT-TYPE EXTENSION). +If `create-image' is called with a :format attribute whose value +equals a content-type found in this list, the ImageMagick library is +told that the data would have the associated suffix if saved to a file.") (defcustom image-load-path (list (file-name-as-directory (expand-file-name "images" data-directory)) ------------------------------------------------------------ revno: 116106 committer: Glenn Morris branch nick: trunk timestamp: Tue 2014-01-21 23:55:53 -0800 message: * lisp/international/quail.el (quail-define-package): Doc fix. * etc/NEWS: Related edit. diff: === modified file 'etc/NEWS' --- etc/NEWS 2014-01-20 20:07:57 +0000 +++ etc/NEWS 2014-01-22 07:55:53 +0000 @@ -166,7 +166,8 @@ `describe-class', `describe-constructor' and `describe-generic' were removed. -*** The command `quail-help' has been removed. +--- +*** The function `quail-help' is no longer an interactive command. Use `C-h C-\' (`describe-input-method') instead. ** ImageMagick === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-22 07:35:50 +0000 +++ lisp/ChangeLog 2014-01-22 07:55:53 +0000 @@ -1,5 +1,7 @@ 2014-01-22 Glenn Morris + * international/quail.el (quail-define-package): Doc fix. + * emacs-lisp/authors.el (authors-valid-file-names): (authors-renamed-files-alist): Additions. === modified file 'lisp/international/quail.el' --- lisp/international/quail.el 2014-01-01 07:43:34 +0000 +++ lisp/international/quail.el 2014-01-22 07:55:53 +0000 @@ -445,10 +445,11 @@ documentation of `quail-keyboard-layout' and `quail-keyboard-layout-standard' for more detail. -SHOW-LAYOUT non-nil means the `quail-help' command should show -the user's keyboard layout visually with translated characters. -If KBD-TRANSLATE is set, it is desirable to set also this flag unless -this package defines no translations for single character keys. +SHOW-LAYOUT non-nil means the function `quail-help' (as used by +the command `describe-input-method') should show the user's keyboard +layout visually with translated characters. If KBD-TRANSLATE is +set, it is desirable to also set this flag, unless this package +defines no translations for single character keys. CREATE-DECODE-MAP non-nil means decode map is also created. A decode map is an alist of translations and corresponding original keys. ------------------------------------------------------------ revno: 116105 committer: Glenn Morris branch nick: trunk timestamp: Tue 2014-01-21 23:35:50 -0800 message: authors.el small additions * lisp/emacs-lisp/authors.el (authors-valid-file-names): (authors-renamed-files-alist): Additions. * lisp/ChangeLog.5, etc/ChangeLog: Clarify old entries. diff: === modified file 'etc/ChangeLog' --- etc/ChangeLog 2014-01-22 02:44:44 +0000 +++ etc/ChangeLog 2014-01-22 07:35:50 +0000 @@ -5533,7 +5533,7 @@ 1995-04-09 Richard Stallman - * tpu-doc.el: File moved to etc dir and renamed. + * tpu-edt.doc: Move here from ../lisp/tpu-doc.el. 1995-04-07 Boris Goldowsky === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-22 02:44:44 +0000 +++ lisp/ChangeLog 2014-01-22 07:35:50 +0000 @@ -1,6 +1,7 @@ 2014-01-22 Glenn Morris - * emacs-lisp/authors.el (authors-valid-file-names): Additions. + * emacs-lisp/authors.el (authors-valid-file-names): + (authors-renamed-files-alist): Additions. * vc/vc-git.el (vc-git-print-log): Remove --follow; reverts 2014-01-09 change. (Bug#16422) === modified file 'lisp/ChangeLog.5' --- lisp/ChangeLog.5 2014-01-15 03:06:07 +0000 +++ lisp/ChangeLog.5 2014-01-22 07:35:50 +0000 @@ -1930,6 +1930,10 @@ 1995-04-09 Richard Stallman + * tpu-doc.el: File moved to ../etc/tpu-edt.doc. + +1995-04-09 Richard Stallman + * files.el (write-file): Default is ask for confirmation only interactively. === modified file 'lisp/emacs-lisp/authors.el' --- lisp/emacs-lisp/authors.el 2014-01-22 02:44:44 +0000 +++ lisp/emacs-lisp/authors.el 2014-01-22 07:35:50 +0000 @@ -669,7 +669,7 @@ ;; etc/ "emacsclient.c" "etags.c" "hexl.c" "make-docfile.c" "movemail.c" "test-distrib.c" "testfile" - "tpu-doc.el" ; FIXME? renamed to something? + "tpu-edt.doc" ; see below ) "File names which are valid, but no longer exist (or cannot be found) in the repository.") @@ -723,6 +723,10 @@ ("DIFF" . "OTHER.EMACSES") ("CCADIFF" . "OTHER.EMACSES") ("GOSDIFF" . "OTHER.EMACSES") + ;; Moved from lisp/tpu-doc.el to etc/tpu-edt.doc in Emacs 19.29. + ;; Removed in Emacs 19.30, replaced by new file etc/edt-user.doc + ;; (no associated ChangeLog entry). + ("tpu-doc.el" . "tpu-edt.doc") ("Makefile.in.in" . "Makefile.in") ("leim-Makefile" . "leim/Makefile") ("leim-Makefile.in" . "leim/Makefile.in") ------------------------------------------------------------ revno: 116104 committer: Glenn Morris branch nick: trunk timestamp: Tue 2014-01-21 21:44:44 -0500 message: Unduplicate the lib-src/ and etc/ ChangeLogs * lisp/emacs-lisp/authors.el (authors-valid-file-names): Related additions. diff: === modified file 'etc/ChangeLog' --- etc/ChangeLog 2014-01-22 01:43:37 +0000 +++ etc/ChangeLog 2014-01-22 02:44:44 +0000 @@ -5784,19 +5784,17 @@ * COPYING: Got June 1991 version of the GPL here. - * ChangeLog: Since the old etc contents have been split into etc - and lib-src, the old etc's ChangeLog has been duplicated in the - new etc and lib-src. That means that each contains complete and - coherent information, although each contains extraneous - information. - 1992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu) - * lib-src/etags.c: "--no-warning" option renamed to "--no-warn", - to be consistent with other GNU programs, like makeinfo. - - * lib-src/Makefile: Renamed to Makefile.in; the configure script - will edit this to produce Makefile. + Move some files to new ../lib-src directory. [approximate date] + * Makefile: Copy to new ../lib-src directory. + * aixcc.lex, b2m.c, cvtmail.c, digest-doc.c: + * emacsclient.c, emacsserver.c, emacstool.c, env.c: + * etags-vmslib.c, etags.c, fakemail.c, getdate.c, getdate.y: + * getopt.c, getopt.h, getopt1.c, hexl.c, leditcfns.c: + * make-docfile.c, movemail.c, qsort.c, sorted-doc.c: + * test-distrib.c, testfile, timer.c, wakeup.c, yow.c: + Move to new ../lib-src directory. 1992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu) @@ -5846,11 +5844,10 @@ 1992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu) - * lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to + * Makefile, MACHINES, NEWS: Changed references to `config.emacs' to `configure'. - * lib-src/Makefile: Adjusted for renaming of share-lib to etc. - * etc/MACHINES: Same. + * Makefile, MACHINES: Adjusted for renaming of share-lib to etc. 1992-03-30 Jim Blandy (jimb@pogo.cs.oberlin.edu) === modified file 'lib-src/ChangeLog' --- lib-src/ChangeLog 2014-01-21 08:49:46 +0000 +++ lib-src/ChangeLog 2014-01-22 02:44:44 +0000 @@ -8136,14 +8136,6 @@ * emacsserver.c (msgcatch): Use the SIGTYPE macro to declare the type of this function. -1992-04-14 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * ChangeLog: Since the old etc contents have been split into etc - and lib-src, the old etc's ChangeLog has been duplicated in the - new etc and lib-src. That means that each contains complete and - coherent information, although each contains extraneous - information. - 1992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu) * etags.c: "--no-warning" option renamed to "--no-warn", @@ -8152,589 +8144,18 @@ * Makefile: Renamed to Makefile.in; the configure script will edit this to produce Makefile. -1992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * etags.c (print_help, print_version): New functions. - (main): Options added to support them. - - * etags.c (longopts): New array of long names for the options. - (main): Recognize them. - -1992-04-06 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * etags.c (C_entries): Remove comment saying that \" in a string - isn't recognized as magic, because it is correctly handled. - - * getopt.c, getopt.h: New files, from GNU C library. - * etags.c: Rewritten to use getopt. - #include "getopt.h". - (file_num): Variable deleted; its role is now played by getopt's - optind. - (main): Argument processing loop rewritten to call getopt to get - next option. Options which take parameters (-o and -i) rewritten - to get parameter from optarg instead of argv[1]. - Filename preprocessing loop and update command changed similarly. - * Makefile (etags, ctags): Depend on and link with getopt.h, - getopt.o, and getopt1.o. - (getopt.o, getopt1.o): New targets for the GNU getopt routines. - - * etags.c (outfflag): Variable deleted; it is non-zero iff outfile - is non-zero. - - (main): In the argument processing loop, the 'goto next_arg' - statements are breaking out of the switch statement in exactly the - same way that a simple 'break' statement would; replace the gotos - with breaks, and remove the label. - -1992-04-06 Richard Stallman (rms@mole.gnu.ai.mit.edu) - - * etags.c (C_entries): Clear tydef and next_token_is_func at start. - (consider_token): Move next_token_is_func to global. - -1992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * Makefile: Conform with GNU coding standards: - (mostlyclean): New target, synonymous with clean. - (TAGS, check): New targets. - (INSTALL, INSTALLFLAGS): New variables. - -1992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to - `config.emacs' to `configure'. - - * lib-src/Makefile: Adjusted for renaming of share-lib to etc. - * etc/MACHINES: Same. - -1992-03-30 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * movemail.c (main): Allow tempname to be as long as necessary, - instead of limiting it to 39 characters. - - * movemail.c (main): Move declaration of buf from top of function - to local block surrounding the copy loop. This makes it less - likely to be confused with the buf used by the code which checks the - permissions on outname's directory. - -1992-03-20 Jim Kingdon (kingdon@albert.gnu.ai.mit.edu) - - * SERVICE: Remove my entry. - -1992-03-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu) - - * Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not - hardcoded -g. - - * movemail.c (xmalloc): Return char *, not int. - (main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL, - that is off by default -- normally don't unlink the mail spool - file, just empty it. Pass creat mode 0600, not 0666. - -1992-02-07 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * Makefile (../arch-lib): Depend on ${EXECUTABLES}. - (all): Instead of here. - (install): Don't use the -s option, since people need symbols to - debug code. - -1992-01-19 Eric Youngdale (youngdale@v6550c.nrl.navy.mil) - - * etags-vmslib.c (fn_exp): Add type cast. - -1992-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu) - - * movemail.c: Changes in comments. - -1992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * Makefile: Make the distclean target erase the DOC files from - ../share-lib and the executables from ../arch-lib. - -1992-01-09 Jim Blandy (jimb@pogo.cs.oberlin.edu) - - * emacsclient.c: #include - (main): Do declare statbfr. - -1991-12-21 Richard Stallman (rms@mole.gnu.ai.mit.edu) - - * emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~ - for the socket, depending on SERVER_HOME_DIR. - If using /tmp, put host name in the socket name. - - * movemail.c (pfatal_and_delete): New function. - (main, popmail): Use it. - (popmail): Close output before deleting messages. - Check for error on close and on fsync. - Use `fatal' where appropriate. - (main): Remove (void). - - * aixcc.lex: New file. Not officially part of Emacs. - * Makefile: Rules for that. - -1991-12-04 Jim Blandy (jimb@pogo.gnu.ai.mit.edu) - - * yow.c (main): Rename all references to PATH_EXEC to PATH_DATA. - - * etags.c (main): Properly cast call to alloca that initializes - included_files. - -1991-08-17 Roland McGrath (roland@geech.gnu.ai.mit.edu) - - * etags.c (files_are_tag_tables): Remove global var. - (process_file): Don't test it. Also remove hack checking for a - file named "TAGS". - (main): -i now takes an arg which is the name of a file to include. - Collect these names and emit include tags for them after processing - all the argument files. - -1991-07-30 Richard Stallman (rms@mole.gnu.ai.mit.edu) - - * wakeup.c: Terminate if parent goes away. - -1991-07-18 Richard Stallman (rms@mole.gnu.ai.mit.edu) - - * etags.c (C_entries): Process token before handling end of line. - When inner loops reach end of line, just back up. - Let the real end of line processing happen in just one place. - (consider_token): Likewise. - -1991-04-11 Jim Blandy (jimb@geech.gnu.ai.mit.edu) - - * etags.c (TEX_mode): Skip comments while scanning the text to see - which escape character this file uses. - -1991-03-29 Richard Stallman (rms@mole.gnu.ai.mit.edu) - - * emacsserver.c [USG]: Terminate if msgrcv fails. - -1991-03-03 Richard Stallman (rms@mole.ai.mit.edu) - - * emacsserver.c [BSD]: Check for errors on stdin after scanf. - -1991-01-25 Jim Blandy (jimb@churchy.ai.mit.edu) - - * make-docfile.c: Find the arguments to a C function correctly, - by not ignoring the character that read_c_string returns. - Don't even try to find argument names for functions that take MANY - or UNEVALLED arguments, since they're a figment of the docstring's - imagination. - -1991-01-14 Jim Blandy (jimb@churchy.ai.mit.edu) - - * make-docfile.c: Read the .elc files generated by the new byte - compiler. - -1990-12-31 Richard Stallman (rms@mole.ai.mit.edu) - - * refcard.tex: Use cm fonts, not am, in multi-column mode. - -1990-11-29 Richard Stallman (rms@mole.ai.mit.edu) - - * movemail.c (mbx_delimit_begin): Put space before `unseen'. - -1990-11-27 Richard Stallman (rms@mole.ai.mit.edu) - - * Makefile (install*): No need to install wakeup. - -1990-11-26 Richard Stallman (rms@mole.ai.mit.edu) - - * Makefile (install*): Install emacsclient like etags. - -1990-11-13 Richard Stallman (rms@mole.ai.mit.edu) - - * movemail.c (error): Handle 3 args. - (main): Don't check input access if using pop. - -1990-10-16 Richard Stallman (rms@mole.ai.mit.edu) - - * etags.c (find_entries): Check for numbers after Scheme suffix. - -1990-10-14 Richard Stallman (rms@mole.ai.mit.edu) - - * termcap.dat (vt200-80): Fix ke and ks to frob flag 1. - -1990-10-09 Richard Stallman (rms@mole.ai.mit.edu) - - * Makefile (nemacstool, xvetool): New targets. - -1990-09-26 Richard Stallman (rms@mole.ai.mit.edu) - - * emacsclient.c: Include errno.h and define related variables. - -1990-09-23 Richard Stallman (rms@mole.ai.mit.edu) - - * emacsclient.c: Change usage message. - -1990-08-30 David Lawrence (tale@pogo.ai.mit.edu) - - * emacs.1: Add break before -nw option. - -1990-08-19 David J. MacKenzie (djm@apple-gunkies) - - * qsort.c: Replace with GNU version. - -1990-08-14 David J. MacKenzie (djm@apple-gunkies) - - * wakeup.c: New program replacing loadst.c. - -1990-08-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * emacsclient.c [USG]: Pass msgsnd only 4 args. - -1990-08-09 David J. MacKenzie (djm@pogo.ai.mit.edu) - - * etags.c: Rename `flag' variables for what they do instead of - which option character sets them. - -1990-05-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * loadst.c (main): Conditional to get load average on Apollo. - -1990-05-22 Joseph Arceneaux (jla@churchy.ai.mit.edu) - - * emacsserver.c: Set the permission on the socket to 0600. - -1990-03-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * emacsclient.c [BSD]: Print clean message for failing getwd. - -1990-03-20 David Lawrence (tale@pogo.ai.mit.edu) - - * getdate.y: Use the getdate.y from GNU tar for timer. - -1990-03-18 Jim Kingdon (kingdon@pogo.ai.mit.edu) - - * emacsclient.c (main): Don't put brackets around "filename" in - usage message. It isn't optional. - -1990-03-14 Joseph Arceneaux (jla@churchy.ai.mit.edu) - - * etags.c (getit): Recognize '$' as beginning identifiers. - -1990-02-22 David Lawrence (tale@pogo.ai.mit.edu) - - * emacsserver.c: Renamed from server.c. - * Makefile: Reference emacsserver rather than server. - * MACHINES: Doc fix for new emacsserver name. - -1990-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * emacsclient.c: Print program name in error messages. - -1990-01-19 David Lawrence (tale@cocoa-puffs) - - * timer.c, getdate.y (new files) and Makefile: - Sub-process support for run-at-time in timer.el. - Doesn't yet work correctly for USG. - -1990-01-10 Jim Kingdon (kingdon@pogo) - - * MACHINES: Add HP 300 running BSD. - -1990-01-02 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * yow.c: Dynamically allocate buffer; skip header before random - choice to avoid bias toward first item. - -1989-12-24 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c (readline): Separate out init of `pend'. - -1989-12-17 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c: Undo changes relating to isgoodhdr. - -1989-12-16 Mosur Mohan (rms@sugar-bombs.ai.mit.edu) - - * etags.c (isgoodhdr): New macro. - (_gdh, notgdh): New variable used by that. - (init): Initialize _gdh. - (find_entries): Set header_file. - (consider_token): Use isgoodhdr if in header file. - - * etags.c (total_size_of_entries): - Was miscalculating by 1 in rewritten case. - - * etags.c (PAS_funcs): One arg to pfnote was missing. - -1989-12-05 Joseph Arceneaux (jla@spiff) - - * MACHINES: Change for the ULTRIX entry. - -1989-11-21 Joseph Arceneaux (jla@spiff) - - * etags.c (process_file): If file is not regular, return. - -1989-11-06 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR. - -1989-10-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg. - (main): If HAVE_GETLOADAVG, don't call `nlist'. - -1989-10-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c (consider_token): Allow any number of typespec keywords - after `typedef', before new type name. - (enum sym_type): Add st_C_typespec. - (C_create_stab): Put typespec kwds in table. - -1989-08-27 Richard Stallman (rms@apple-gunkies.ai.mit.edu) - - * etags.c (main): Don't depend on name invoked by. - If CTAGS is not defined, assume it is ETAGS. - -1989-07-31 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c (L_funcs): Allow package name in define construct, - as in (foo::defmumble name-defined ...). - -1989-07-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c (find_entries): Stupid bug testing for C filename suffixes. - - * Makefile (yow): Depends on ../src/paths.h. - -1989-07-04 Richard Stallman (rms@apple-gunkies.ai.mit.edu) - - * etags.c: Fix compilation by moving Pascal after Fortran. - -1989-06-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * movemail.c [USG]: Define F_OK, etc., if not found in header. - -1989-05-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * hexl.c: New file, supports hexl-mode. - -1989-05-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * movemail.c: New compilation flag MAIL_USE_MMDF. - -1989-05-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * emacsclient.c: Use BSD code whenever HAVE_SOCKETS. - * server.c: Likewise. - - * make-docfile.c (scan_c_file): Output argument names at end of string. - (write_c_args): New subroutine. - -1989-04-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * movemail.c: Report failure of flock. - -1989-04-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c (find_entries): Allow multi-letter extensions for fortran. - -1989-04-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * loadst.c: On bsd4.3, use gettimeofday instead of CPUSTATES. - -1989-03-15 Jeff Peck (rms@sugar-bombs.ai.mit.edu) - - * emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=. - - * emacstool.1: Update to document environment variables. - -1989-02-21 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c (PAS_funcs): New function by Mosur Mohan. - - * movemail.c: On sysv, include unistd.h. - -1989-02-18 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * b2m.c: New file. - -1989-02-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c: Prolog support from Sunichirou Sugou. - -1989-02-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * Makefile (clean): New target. - -1989-01-25 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * fakemail.c (put_line): Break header lines at 79 cols. - -1989-01-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c: Greatly rewritten by Sam Kendall for C++ support and for - multiple tags per line. - -1989-01-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * movemail.c: Check access before doing real work. - Check that outfile is in a writable directory. - On fatal error, delete the lock file. - -1988-12-31 Richard Mlynarik (mly@rice-chex.ai.mit.edu) - - * env.c: Add decl for my-index. - * etags.c (file-entries): .oak => scheme. - -1988-12-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * movemail.c: Use `access' to check input and output files. - -1988-12-28 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * emacsclient.c (main): Ignore all of CWD before first slash. - -1988-12-27 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c (readline): Double linebuffer->size outside the xrealloc. - -1988-12-22 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * server.c, emacsclient.c: Don't try to use gid_t; it isn't defined. - * server.c: chmod the socket to 0700. - -1988-12-09 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * fakemail.c (main): Let env var FAKEMAILER override pgm to run. - (add_field): Delete comments and turn `<', `>' to spaces - in header lines. - (USE_FAKEMAIL): New customization macro says to make fakemail - not be a no-op even on a BSD system. - -1988-12-01 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c (consider_token): Skip comments just like whitespace. - Notice `struct', etc. and set strtag for those tokens. - Return 1 for the token following `struct' if an open-brace follows it. - (C_entries): Special handling of token following `struct' - needed because we have probably advanced to the following line - to find the `{'. - (main): New option `T' sets tflag and strflag. - Set both of them by default if eflags. - -1988-11-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * movemail.c: Do fsync before closing output. - -1988-11-29 Richard Mlynarik (mly@pickled-brain.ai.mit.edu) - - * movemail.c: Better error message when can't create tempname. - This file needs a great deal of extra error-checking and lucid reporting... - -1988-11-16 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c: Support assembler code for .s and .a files. - (getit): Allow underscore in a tag. - -1988-11-15 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * movemail.c: Close output and check errors before deleting input. - -1988-10-01 Richard Stallman (rms@apple-gunkies.ai.mit.edu) - - * emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly - whether to prefix it. Handle line number args. - -1988-09-24 Richard Stallman (rms@gluteus.ai.mit.edu) - - * etags.c (main): Default setting of eflag was backwards. - -1988-09-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c: New option -i. -f renamed -o. - `-' as input file means read input file names from stdin. - -i spec'd or input file named TAGS means the input file is another - tag table; output an "include" line for it. - -1988-09-19 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT. - New targets install, install.sysv, install.xenix. - This makefile is now responsible for installing executables - and documentation from this directory into system directories. - -1988-09-16 Richard Stallman (rms@corn-chex.ai.mit.edu) - - * server.c, emacsclient.c (main): Compute socket name from euid. - -1988-08-04 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * emacsclient.c: Args like +DIGITS are passed through unchanged. - -1988-07-12 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * server.c: If both BSD and HAVE_SYSVIPC, use the latter. - * emacsclient.c: Likewise. - In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd. - -1988-06-23 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c: Handle `typedef struct foo {' (price@mcc.com). - (istoken): New string-comparison macro. - (consider_token): New arg `level'. New state `tag_ok' in `tydef'. - -1988-06-14 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * etags.c: Changes for VMS. - Always define ETAGS on VMS. - Define macros GOOD and BAD for success and failure exit codes. - (begtk, intk): Allow `$' in identifiers. - (main): Don't support -B, -F or -u on VMS. - Alternate loop for scanning filename arguments. - (system): Delete definition of this function. - - * etags-vmslib.c (system): Undefine this; VMS now provides it. - -1988-06-08 Richard Stallman (rms@sugar-bombs.ai.mit.edu) - - * loadst.c: Prevent multiple-def errors on BSD and BSD4_3 - around include of param.h. (Like fns.c.) - -1988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu) - - * loadst.c (load_average): Move load-average code to this new fn. - Add conditionals to compute load ave on UMAX. - -1988-05-14 Richard Stallman (rms@lucky-charms.ai.mit.edu) - - * loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE - with opposite sense. - -1988-05-13 Chris Hanson (cph@kleph) - - * emacsclient.c: Delete references to unused variable `out'. - This caused a bus error when used under hp-ux. - -1988-05-06 Richard Stallman (rms@frosted-flakes.ai.mit.edu) - - * loadst.c: Control dk.h conditional with DK_HEADER_FILE. - -1988-05-04 Richard Stallman (rms@rice-krispies.ai.mit.edu) - - * etags.c (find_entries): `.t' or `.sch' means scheme code. - -1988-04-29 Richard Stallman (rms@frosted-flakes.ai.mit.edu) - - * loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h. - -1988-04-28 Richard Stallman (rms@frosted-flakes.ai.mit.edu) - - * movemail.c: #undef close, since config can #define it on V.3. - * emacsclient.c, fakemail.c, loadst.c, server.c: Likewise. - -1988-04-26 Richard Stallman (rms@lucky-charms.ai.mit.edu) - - * etags.c (TEX_mode, etc.): Remove superfluous backslashes from - invalid escape sequences such as `\{'. - - * loadst.c: Add `sequent' conditional for file dk.h. - -1988-03-20 Richard M. Stallman (rms@wilson) - - * server.c [not BSD and not HAVE_SYSVIPC]: Fix error message. - - * loadst.c (main) [XENIX]: Use /usr/spool/mail, not /usr/mail. +1992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu) + + New directory, with files previously in ../etc. [approximate date] + * README: New file. + * Makefile: Copy here from ../etc/Makefile. + * aixcc.lex, b2m.c, cvtmail.c, digest-doc.c: + * emacsclient.c, emacsserver.c, emacstool.c, env.c: + * etags-vmslib.c, etags.c, fakemail.c, getdate.c, getdate.y: + * getopt.c, getopt.h, getopt1.c, hexl.c, leditcfns.c: + * make-docfile.c, movemail.c, qsort.c, sorted-doc.c: + * test-distrib.c, testfile, timer.c, wakeup.c, yow.c: + Move here from ../etc. ;; Local Variables: ;; coding: utf-8 === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-22 02:01:40 +0000 +++ lisp/ChangeLog 2014-01-22 02:44:44 +0000 @@ -1,5 +1,7 @@ 2014-01-22 Glenn Morris + * emacs-lisp/authors.el (authors-valid-file-names): Additions. + * vc/vc-git.el (vc-git-print-log): Remove --follow; reverts 2014-01-09 change. (Bug#16422) === modified file 'lisp/emacs-lisp/authors.el' --- lisp/emacs-lisp/authors.el 2014-01-18 01:50:56 +0000 +++ lisp/emacs-lisp/authors.el 2014-01-22 02:44:44 +0000 @@ -668,6 +668,7 @@ "yow.c" ;; etc/ "emacsclient.c" "etags.c" "hexl.c" "make-docfile.c" "movemail.c" + "test-distrib.c" "testfile" "tpu-doc.el" ; FIXME? renamed to something? ) "File names which are valid, but no longer exist (or cannot be found) ------------------------------------------------------------ revno: 116103 fixes bug: http://debbugs.gnu.org/16422 committer: Glenn Morris branch nick: trunk timestamp: Tue 2014-01-21 21:01:40 -0500 message: * lisp/vc/vc-git.el (vc-git-print-log): Remove --follow; reverts 2014-01-09 change. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-22 01:50:40 +0000 +++ lisp/ChangeLog 2014-01-22 02:01:40 +0000 @@ -1,5 +1,8 @@ 2014-01-22 Glenn Morris + * vc/vc-git.el (vc-git-print-log): Remove --follow; + reverts 2014-01-09 change. (Bug#16422) + * calc/calc-embed.el (thing-at-point-looking-at): * emacs-lisp/map-ynp.el (x-popup-dialog): * obsolete/lmenu.el (x-popup-dialog): === modified file 'lisp/vc/vc-git.el' --- lisp/vc/vc-git.el 2014-01-09 16:46:56 +0000 +++ lisp/vc/vc-git.el 2014-01-22 02:01:40 +0000 @@ -791,7 +791,7 @@ (apply 'vc-git-command buffer 'async files (append - '("log" "--no-color" "--follow") + '("log" "--no-color") (when shortlog `("--graph" "--decorate" "--date=short" ,(format "--pretty=tformat:%s" ------------------------------------------------------------ revno: 116102 committer: Glenn Morris branch nick: trunk timestamp: Tue 2014-01-21 20:54:10 -0500 message: Set Maintainer: FSF in some files diff: === modified file 'autogen.sh' --- autogen.sh 2014-01-08 23:24:54 +0000 +++ autogen.sh 2014-01-22 01:54:10 +0000 @@ -4,6 +4,7 @@ ## Copyright (C) 2011-2014 Free Software Foundation, Inc. ## Author: Glenn Morris +## Maintainer: FSF ## This file is part of GNU Emacs. === modified file 'build-aux/make-info-dir' --- build-aux/make-info-dir 2014-01-01 07:43:34 +0000 +++ build-aux/make-info-dir 2014-01-22 01:54:10 +0000 @@ -5,6 +5,7 @@ ## Copyright (C) 2013-2014 Free Software Foundation, Inc. ## Author: Glenn Morris +## Maintainer: FSF ## This file is part of GNU Emacs. === modified file 'lisp/mail/supercite.el' --- lisp/mail/supercite.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/supercite.el 2014-01-22 01:54:10 +0000 @@ -3,8 +3,8 @@ ;; Copyright (C) 1993, 1997, 2001-2014 Free Software Foundation, Inc. ;; Author: 1993 Barry A. Warsaw -;; Maintainer: Glenn Morris -;; Created: February 1993 +;; Maintainer: FSF +;; Created: February 1993 ;; Keywords: mail, news ;; This file is part of GNU Emacs. === modified file 'test/automated/vc-bzr.el' --- test/automated/vc-bzr.el 2014-01-01 07:43:34 +0000 +++ test/automated/vc-bzr.el 2014-01-22 01:54:10 +0000 @@ -3,6 +3,7 @@ ;; Copyright (C) 2011-2014 Free Software Foundation, Inc. ;; Author: Glenn Morris +;; Maintainer: FSF ;; This file is part of GNU Emacs. ------------------------------------------------------------ revno: 116101 committer: Glenn Morris branch nick: trunk timestamp: Tue 2014-01-21 20:50:40 -0500 message: Fix some function declarations * lisp/calc/calc-embed.el (thing-at-point-looking-at): * lisp/emacs-lisp/map-ynp.el (x-popup-dialog): * lisp/obsolete/lmenu.el (x-popup-dialog): * lisp/emacs-lisp/package.el (url-recreate-url): * lisp/mail/mailclient.el (clipboard-kill-ring-save): * lisp/subr.el (x-popup-dialog): Update declaration. * lisp/mail/rmail.el (rmail-mime-message-p): * lisp/window.el (tool-bar-lines-needed): Remove unnecessary declaration. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-21 23:42:59 +0000 +++ lisp/ChangeLog 2014-01-22 01:50:40 +0000 @@ -1,3 +1,14 @@ +2014-01-22 Glenn Morris + + * calc/calc-embed.el (thing-at-point-looking-at): + * emacs-lisp/map-ynp.el (x-popup-dialog): + * obsolete/lmenu.el (x-popup-dialog): + * emacs-lisp/package.el (url-recreate-url): + * mail/mailclient.el (clipboard-kill-ring-save): + * subr.el (x-popup-dialog): Update declaration. + * mail/rmail.el (rmail-mime-message-p): + * window.el (tool-bar-lines-needed): Remove unnecessary declaration. + 2014-01-21 Daniel Colascione * progmodes/sh-script.el (sh--inside-noncommand-expression): === modified file 'lisp/calc/calc-embed.el' --- lisp/calc/calc-embed.el 2014-01-01 07:43:34 +0000 +++ lisp/calc/calc-embed.el 2014-01-22 01:50:40 +0000 @@ -30,7 +30,8 @@ (require 'calc-macs) ;; Declare functions which are defined elsewhere. -(declare-function thing-at-point-looking-at "thingatpt" (regexp)) +(declare-function thing-at-point-looking-at "thingatpt" + (regexp &optional distance)) (defun calc-show-plain (n) === modified file 'lisp/emacs-lisp/map-ynp.el' --- lisp/emacs-lisp/map-ynp.el 2014-01-01 07:43:34 +0000 +++ lisp/emacs-lisp/map-ynp.el 2014-01-22 01:50:40 +0000 @@ -34,7 +34,7 @@ ;;; Code: -(declare-function x-popup-dialog "xmenu.c" (position contents &optional header)) +(declare-function x-popup-dialog "menu.c" (position contents &optional header)) (defun map-y-or-n-p (prompter actor list &optional help action-alist no-cursor-in-echo-area) === modified file 'lisp/emacs-lisp/package.el' --- lisp/emacs-lisp/package.el 2014-01-16 16:44:17 +0000 +++ lisp/emacs-lisp/package.el 2014-01-22 01:50:40 +0000 @@ -210,7 +210,7 @@ (declare-function lm-header "lisp-mnt" (header)) (declare-function lm-commentary "lisp-mnt" (&optional file)) (defvar url-http-end-of-headers) -(declare-function url-recreate-url "url" (urlobj)) +(declare-function url-recreate-url "url-parse" (urlobj)) (defvar url-http-target-url) (defcustom package-archives '(("gnu" . "http://elpa.gnu.org/packages/")) === modified file 'lisp/mail/mailclient.el' --- lisp/mail/mailclient.el 2014-01-01 07:43:34 +0000 +++ lisp/mail/mailclient.el 2014-01-22 01:50:40 +0000 @@ -99,7 +99,8 @@ (mail-strip-quoted-names field) "\, *")) result))))) -(declare-function clipboard-kill-ring-save "menu-bar.el" (beg end)) +(declare-function clipboard-kill-ring-save "menu-bar.el" + (beg end &optional region)) ;;;###autoload (defun mailclient-send-it () === modified file 'lisp/mail/rmail.el' --- lisp/mail/rmail.el 2014-01-10 23:29:10 +0000 +++ lisp/mail/rmail.el 2014-01-22 01:50:40 +0000 @@ -4121,7 +4121,6 @@ (autoload 'mail-position-on-field "sendmail") -(declare-function rmail-mime-message-p "rmailmm" ()) (declare-function rmail-mime-toggle-raw "rmailmm" (&optional state)) (defun rmail-retry-failure () === modified file 'lisp/obsolete/lmenu.el' --- lisp/obsolete/lmenu.el 2014-01-01 07:43:34 +0000 +++ lisp/obsolete/lmenu.el 2014-01-22 01:50:40 +0000 @@ -131,7 +131,7 @@ (setq menu-items (cdr menu-items))) menu)) -(declare-function x-popup-dialog "xmenu.c" (position contents &optional header)) +(declare-function x-popup-dialog "menu.c" (position contents &optional header)) ;; XEmacs compatibility function (defun popup-dialog-box (data) === modified file 'lisp/subr.el' --- lisp/subr.el 2014-01-06 23:34:05 +0000 +++ lisp/subr.el 2014-01-22 01:50:40 +0000 @@ -2177,7 +2177,7 @@ nil)))))) ;; Behind display-popup-menus-p test. -(declare-function x-popup-dialog "xmenu.c" (position contents &optional header)) +(declare-function x-popup-dialog "menu.c" (position contents &optional header)) (defun y-or-n-p (prompt) "Ask user a \"y or n\" question. Return t if answer is \"y\". === modified file 'lisp/window.el' --- lisp/window.el 2014-01-13 07:47:15 +0000 +++ lisp/window.el 2014-01-22 01:50:40 +0000 @@ -6811,7 +6811,6 @@ :group 'help) (declare-function x-display-pixel-height "xfns.c" (&optional terminal)) -(declare-function tool-bar-lines-needed "xdisp.c" (&optional frame)) (defun window--sanitize-margin (margin left right) "Return MARGIN if it's a number between LEFT and RIGHT." ------------------------------------------------------------ revno: 116100 committer: Glenn Morris branch nick: trunk timestamp: Tue 2014-01-21 20:43:37 -0500 message: ChangeLog fixes diff: === modified file 'ChangeLog' --- ChangeLog 2014-01-21 08:49:46 +0000 +++ ChangeLog 2014-01-22 01:43:37 +0000 @@ -102,7 +102,6 @@ * build-aux/update-copyright: New file. * make-dist: Distribute it. * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate. - * msdos/autogen/Makefile.in: Update copyright year. 2013-12-23 Andreas Schwab === modified file 'admin/ChangeLog' --- admin/ChangeLog 2014-01-21 08:49:46 +0000 +++ admin/ChangeLog 2014-01-22 01:43:37 +0000 @@ -2117,7 +2117,7 @@ 2001-09-04 Andrew Innes - * admin/nt/makedist.bat: Remove reference to obsolete file + * nt/makedist.bat: Remove reference to obsolete file GETTING.GNU.SOFTWARE. Remove outdated comments. Explain about version of tar used. === modified file 'etc/ChangeLog' --- etc/ChangeLog 2014-01-21 08:49:46 +0000 +++ etc/ChangeLog 2014-01-22 01:43:37 +0000 @@ -801,7 +801,7 @@ 2012-01-19 Werner Lemberg - * tutorial/TUTORIAL.de: Updated; synchronize with TUTORIAL. + * tutorials/TUTORIAL.de: Updated; synchronize with TUTORIAL. Minor typographical improvements. 2012-01-17 Primoz PETERLIN @@ -1854,7 +1854,7 @@ 2009-05-25 Werner Lemberg - * tutorial/TUTORIAL.de: Updated; synchronize with TUTORIAL. + * tutorials/TUTORIAL.de: Updated; synchronize with TUTORIAL. Use reformed Orthography. Minor improvements. === modified file 'lisp/ChangeLog.12' --- lisp/ChangeLog.12 2014-01-15 03:06:07 +0000 +++ lisp/ChangeLog.12 2014-01-22 01:43:37 +0000 @@ -26778,16 +26778,6 @@ (iswitchb-common-match-inserted): New variable. (iswitchb-complete, iswitchb-completion-help): Use it. -2005-06-04 David Reitter (tiny change) - - * url/url-http.el (url-http-chunked-encoding-after-change-function): - Use `url-http-debug' instead of `message'. - -2005-06-04 Thierry Emery (tiny change) - - * url/url-http.el (url-http-parse-headers): Pass redirected URL - as a callback argument. - 2005-06-04 Kim F. Storm * simple.el (line-move): Only call sit-for when moving backwards. @@ -29697,11 +29687,6 @@ * emacs-lisp/map-ynp.el (map-y-or-n-p): Clarify RET/q in help message. -2005-04-10 Chong Yidong - - * url/url-ldap.el (url-ldap): Add docstring. Fix call to - `ldap-search-internal'. - 2005-04-10 Stefan Monnier * files.el (set-auto-mode-1): Use line-end-position. === modified file 'lisp/erc/ChangeLog' --- lisp/erc/ChangeLog 2014-01-16 08:34:43 +0000 +++ lisp/erc/ChangeLog 2014-01-22 01:43:37 +0000 @@ -540,7 +540,7 @@ 2009-07-22 Kevin Ryde - * erc/erc.el (erc-cmd-MODE): Hyperlink urls in docstring with URL `...'. + * erc.el (erc-cmd-MODE): Hyperlink urls in docstring with URL `...'. 2009-03-13 D. Goel === modified file 'lisp/erc/ChangeLog.08' --- lisp/erc/ChangeLog.08 2014-01-01 07:43:34 +0000 +++ lisp/erc/ChangeLog.08 2014-01-22 01:43:37 +0000 @@ -48,8 +48,8 @@ 2008-06-07 Glenn Morris - * erc/erc-autoaway.el, erc/erc-ibuffer.el, erc/erc-menu.el: - * erc/erc-stamp.el, erc/erc.el: Remove unnecessary eval-when-compiles. + * erc-autoaway.el, erc-ibuffer.el, erc-menu.el: + * erc-stamp.el, erc.el: Remove unnecessary eval-when-compiles. 2008-05-30 Diane Murray === modified file 'lisp/url/ChangeLog' --- lisp/url/ChangeLog 2014-01-15 08:49:38 +0000 +++ lisp/url/ChangeLog 2014-01-22 01:43:37 +0000 @@ -1609,6 +1609,16 @@ * url-cookie.el (url-cookie-multiple-line): Fix spelling in docstring. +2005-06-04 David Reitter (tiny change) + + * url-http.el (url-http-chunked-encoding-after-change-function): + Use `url-http-debug' instead of `message'. + +2005-06-04 Thierry Emery (tiny change) + + * url-http.el (url-http-parse-headers): Pass redirected URL + as a callback argument. + 2005-05-19 Juanma Barranquero * url-cookie.el (url-cookie-multiple-line): @@ -1632,6 +1642,11 @@ * url.el (url-retrieve-synchronously): Work around the fact that url-http sometimes doesn't call the callback. +2005-04-10 Chong Yidong + + * url-ldap.el (url-ldap): Add docstring. Fix call to + `ldap-search-internal'. + 2005-04-04 Lute Kamstra * url-handlers.el (url-handler-mode): Specify :group. === modified file 'msdos/ChangeLog' --- msdos/ChangeLog 2014-01-21 08:49:46 +0000 +++ msdos/ChangeLog 2014-01-22 01:43:37 +0000 @@ -1,3 +1,7 @@ +2013-12-24 Paul Eggert + + * autogen/Makefile.in: Update copyright year. + 2013-11-05 Glenn Morris * autogen/config.in: ------------------------------------------------------------ revno: 116099 committer: Daniel Colascione branch nick: trunk timestamp: Tue 2014-01-21 15:42:59 -0800 message: Fix here-doc highlighting diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-21 17:21:19 +0000 +++ lisp/ChangeLog 2014-01-21 23:42:59 +0000 @@ -1,3 +1,12 @@ +2014-01-21 Daniel Colascione + + * progmodes/sh-script.el (sh--inside-noncommand-expression): + Correctly detect when we're inside an arithmetic expansion form + containing nested parenthesis. + (sh--maybe-here-document): Use `sh--inside-noncommand-expression` + to detect cases where we shouldn't expand "<<" to a heredoc + skeleton. + 2014-01-21 Stefan Monnier * emacs-lisp/eldoc.el: Properly remove message in minibuffer case. === modified file 'lisp/progmodes/sh-script.el' --- lisp/progmodes/sh-script.el 2014-01-12 05:29:11 +0000 +++ lisp/progmodes/sh-script.el 2014-01-21 23:42:59 +0000 @@ -975,11 +975,14 @@ (let ((ppss (syntax-ppss pos))) (when (nth 1 ppss) (goto-char (nth 1 ppss)) - (pcase (char-after) - ;; $((...)) or $[...] or ${...}. - (`?\( (and (eq ?\( (char-before)) - (eq ?\$ (char-before (1- (point)))))) - ((or `?\{ `?\[) (eq ?\$ (char-before)))))))) + (or + (pcase (char-after) + ;; ((...)) or $((...)) or $[...] or ${...}. Nested + ;; parenthesis can occur inside the first of these forms, so + ;; parse backward recursively. + (`?\( (eq ?\( (char-before))) + ((or `?\{ `?\[) (eq ?\$ (char-before)))) + (sh--inside-noncommand-expression (1- (point)))))))) (defun sh-font-lock-open-heredoc (start string eol) "Determine the syntax of the \\n after a < branch nick: trunk timestamp: Tue 2014-01-21 09:21:19 -0800 message: ChangeLog fix diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-21 13:09:55 +0000 +++ lisp/ChangeLog 2014-01-21 17:21:19 +0000 @@ -273,7 +273,7 @@ eldoc-message-commands. (eldoc-mode): Restrict eldoc-message-commands to editing commands if eldoc-print-after-edit is set. (Bug#16346) - + * simple.el (read--expression): Enable eldoc-mode. * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc. 2014-01-11 Eric S. Raymond ------------------------------------------------------------ revno: 116097 fixes bug: http://debbugs.gnu.org/16509 committer: Eli Zaretskii branch nick: trunk timestamp: Tue 2014-01-21 18:08:31 +0200 message: Fix bug #16509 with segfault in an assertion when exiting due to missing font. src/w32fns.c (unwind_create_frame): Avoid crashing inside assertion when the image cache is not yet allocated. diff: === modified file 'src/ChangeLog' --- src/ChangeLog 2014-01-21 02:28:57 +0000 +++ src/ChangeLog 2014-01-21 16:08:31 +0000 @@ -1,3 +1,8 @@ +2014-01-21 Eli Zaretskii + + * w32fns.c (unwind_create_frame): Avoid crashing inside assertion + when the image cache is not yet allocated. (Bug#16509) + 2014-01-21 Dmitry Antipov * buffer.c (Fkill_buffer): When killing an indirect buffer, === modified file 'src/w32fns.c' --- src/w32fns.c 2014-01-11 09:31:09 +0000 +++ src/w32fns.c 2014-01-21 16:08:31 +0000 @@ -4250,7 +4250,9 @@ #ifdef GLYPH_DEBUG /* Check that reference counts are indeed correct. */ eassert (dpyinfo->reference_count == dpyinfo_refcount); - eassert (dpyinfo->terminal->image_cache->refcount == image_cache_refcount); + eassert ((dpyinfo->terminal->image_cache == NULL + && image_cache_refcount == 0) + || dpyinfo->terminal->image_cache->refcount == image_cache_refcount); #endif return Qt; } ------------------------------------------------------------ revno: 116096 committer: Michael Albinus branch nick: trunk timestamp: Tue 2014-01-21 14:31:39 +0100 message: * automated/file-notify-tests.el (file-notify--test-local-enabled): Fix error in logic. (file-notify--wait-for-events): New defmacro. (file-notify-test02-events): Make short breaks between file operations. Use `file-notify--wait-for-events'. Check, that events have arrived. (file-notify-test03-autorevert): Use `file-notify--wait-for-events'. diff: === modified file 'test/ChangeLog' --- test/ChangeLog 2014-01-21 08:32:06 +0000 +++ test/ChangeLog 2014-01-21 13:31:39 +0000 @@ -1,5 +1,12 @@ 2014-01-21 Michael Albinus + * automated/file-notify-tests.el + (file-notify--test-local-enabled): Fix error in logic. + (file-notify--wait-for-events): New defmacro. + (file-notify-test02-events): Make short breaks between file operations. + Use `file-notify--wait-for-events'. Check, that events have arrived. + (file-notify-test03-autorevert): Use `file-notify--wait-for-events'. + * automated/comint-testsuite.el (comint-testsuite-password-strings): Add localized examples. === modified file 'test/automated/file-notify-tests.el' --- test/automated/file-notify-tests.el 2014-01-01 07:43:34 +0000 +++ test/automated/file-notify-tests.el 2014-01-21 13:31:39 +0000 @@ -67,7 +67,7 @@ This is needed for local `temporary-file-directory' only, in the remote case we return always `t'." (or file-notify--library - (not (file-remote-p temporary-file-directory)))) + (file-remote-p temporary-file-directory))) (defvar file-notify--test-remote-enabled-checked nil "Cached result of `file-notify--test-remote-enabled'. @@ -187,6 +187,16 @@ (expand-file-name (make-temp-name "file-notify-test") temporary-file-directory)) +(defmacro file-notify--wait-for-events (timeout until) + "Wait for file notification events until form UNTIL is true. +TIMEOUT is the maximum time to wait for." + `(with-timeout (,timeout (ignore)) + (while (null ,until) + ;; glib events, and remote events. + (accept-process-output nil 0.1) + ;; inotify events. + (read-event nil nil 0.1)))) + (ert-deftest file-notify-test02-events () "Check file creation/removal notifications." (skip-unless (file-notify--test-local-enabled)) @@ -205,6 +215,7 @@ (write-region "any text" nil file-notify--test-tmpfile nil 'no-message) (delete-file file-notify--test-tmpfile) + (sit-for 0.1 'nodisplay) ;; Check copy and rename. (write-region @@ -212,18 +223,21 @@ (copy-file file-notify--test-tmpfile file-notify--test-tmpfile1) (delete-file file-notify--test-tmpfile) (delete-file file-notify--test-tmpfile1) + (sit-for 0.1 'nodisplay) (write-region "any text" nil file-notify--test-tmpfile nil 'no-message) (rename-file file-notify--test-tmpfile file-notify--test-tmpfile1) - (delete-file file-notify--test-tmpfile1)) + (delete-file file-notify--test-tmpfile1) + (sit-for 0.1 'nodisplay)) ;; Wait for events, and exit. - (sit-for 5 'nodisplay) + (file-notify--wait-for-events 5 file-notify--test-results) (file-notify-rm-watch desc) (ignore-errors (delete-file file-notify--test-tmpfile)) (ignore-errors (delete-file file-notify--test-tmpfile1)))) + (should file-notify--test-results) (dolist (result file-notify--test-results) ;(message "%s" (ert-test-result-messages result)) (when (ert-test-failed-p result) @@ -278,14 +292,10 @@ ;; Check, that the buffer has been reverted. (with-current-buffer (get-buffer-create "*Messages*") - (with-timeout (timeout (ignore)) - (while - (null (string-match - (format "Reverting buffer `%s'." (buffer-name buf)) - (buffer-string))) - ;; We must trigger the process filter to run. - (when remote (accept-process-output nil 1)) - (sit-for 1 'nodisplay)))) + (file-notify--wait-for-events + timeout + (string-match (format "Reverting buffer `%s'." (buffer-name buf)) + (buffer-string)))) (should (string-match "another text" (buffer-string))))) ;; Exit. ------------------------------------------------------------ revno: 116095 committer: Stefan Monnier branch nick: trunk timestamp: Tue 2014-01-21 08:09:55 -0500 message: * lisp/emacs-lisp/eldoc.el: Properly remove message in minibuffer case. (eldoc--message-command-p): New function. (eldoc-display-message-p): Use it. (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the message is not automatically erased for us. (eldoc-print-current-symbol-info): Erase previous message, if any. diff: === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-21 08:49:46 +0000 +++ lisp/ChangeLog 2014-01-21 13:09:55 +0000 @@ -1,10 +1,19 @@ +2014-01-21 Stefan Monnier + + * emacs-lisp/eldoc.el: Properly remove message in minibuffer case. + (eldoc--message-command-p): New function. + (eldoc-display-message-p): Use it. + (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the + message is not automatically erased for us. + (eldoc-print-current-symbol-info): Erase previous message, if any. + 2014-01-21 Tassilo Horn * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to specify it's an interactive function. - * textmodes/reftex-cite.el (reftex-all-used-citation-keys): Fix - regex used for scanning for citation keys which failed for + * textmodes/reftex-cite.el (reftex-all-used-citation-keys): + Fix regex used for scanning for citation keys which failed for citations with optional arguments. 2014-01-21 Leo Liu @@ -89,8 +98,8 @@ 2014-01-17 Dmitry Gutov * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant. - (ruby-align-to-stmt-keywords): Change the default value. Use - `ruby-alignable-keywords' to generate the possible customization + (ruby-align-to-stmt-keywords): Change the default value. + Use `ruby-alignable-keywords' to generate the possible customization choices. (ruby-smie-rules): Instead of using a hardcoded list of alignable keywords, check against the value of `ruby-alignable-keywords' === modified file 'lisp/emacs-lisp/eldoc.el' --- lisp/emacs-lisp/eldoc.el 2014-01-12 10:29:59 +0000 +++ lisp/emacs-lisp/eldoc.el 2014-01-21 13:09:55 +0000 @@ -152,7 +152,7 @@ "Idle time delay currently in use by timer. This is used to determine if `eldoc-idle-delay' is changed by the user.") -(defvar eldoc-message-function 'eldoc-minibuffer-message +(defvar eldoc-message-function #'eldoc-minibuffer-message "The function used by `eldoc-message' to display messages. It should receive the same arguments as `message'.") @@ -193,10 +193,7 @@ (remove-hook 'pre-command-hook 'eldoc-pre-command-refresh-echo-area t))) ;;;###autoload -(defun turn-on-eldoc-mode () - "Unequivocally turn on ElDoc mode (see command `eldoc-mode')." - (interactive) - (eldoc-mode 1)) +(define-obsolete-function-alias 'turn-on-eldoc-mode 'eldoc-mode "24.4") (defun eldoc-schedule-timer () @@ -260,6 +257,10 @@ (omessage (funcall eldoc-message-function nil))))) eldoc-last-message) +(defun eldoc--message-command-p (command) + (and (symbolp command) + (intern-soft (symbol-name command) eldoc-message-commands))) + ;; This function goes on pre-command-hook for XEmacs or when using idle ;; timers in Emacs. Motion commands clear the echo area for some reason, ;; which make eldoc messages flicker or disappear just before motion @@ -268,10 +269,12 @@ ;; This doesn't seem to be required for Emacs 19.28 and earlier. (defun eldoc-pre-command-refresh-echo-area () (and eldoc-last-message + (not (minibufferp)) ;We don't use the echo area when in minibuffer. (if (and (eldoc-display-message-no-interference-p) - (symbolp this-command) - (intern-soft (symbol-name this-command) eldoc-message-commands)) + (eldoc--message-command-p this-command)) (eldoc-message eldoc-last-message) + ;; No need to call eldoc-message since the echo area will be cleared + ;; for us, but do note that the last-message will be gone. (setq eldoc-last-message nil)))) ;; Decide whether now is a good time to display a message. @@ -281,10 +284,9 @@ ;; timer, we're still in the middle of executing a command, ;; e.g. a query-replace where it would be annoying to ;; overwrite the echo area. - (and (not this-command) - (symbolp last-command) - (intern-soft (symbol-name last-command) - eldoc-message-commands)))) + (not this-command) + (eldoc--message-command-p last-command))) + ;; Check various conditions about the current environment that might make ;; it undesirable to print eldoc messages right this instant. @@ -313,7 +315,11 @@ ;; This is run from post-command-hook or some idle timer thing, ;; so we need to be careful that errors aren't ignored. (with-demoted-errors "eldoc error: %s" - (and (eldoc-display-message-p) + (and (or (eldoc-display-message-p) + ;; Erase the last message if we won't display a new one. + (when eldoc-last-message + (eldoc-message nil) + nil)) (if eldoc-documentation-function (eldoc-message (funcall eldoc-documentation-function)) (let* ((current-symbol (eldoc-current-symbol)) ------------------------------------------------------------ revno: 116094 committer: Glenn Morris branch nick: trunk timestamp: Tue 2014-01-21 00:49:46 -0800 message: ChangeLog fixes diff: === modified file 'ChangeLog' --- ChangeLog 2014-01-20 22:39:59 +0000 +++ ChangeLog 2014-01-21 08:49:46 +0000 @@ -29,11 +29,8 @@ 2014-01-08 Eric S. Raymond - * INSTALL.BZR: Renamed to INSTALL.REPO - * INSTALL, autogen.sh, etc/AUTHORS, etc/CONTRIBUTE, - lisp/emacs-lisp/authors.el, nt/INSTALL: Carry through the - above renaming. - * INSTALL.REPO: remove all references to any specific VCS. + * INSTALL.BZR: Rename to INSTALL.REPO. Remove refs to specific VCS. + * INSTALL, autogen.sh: Update for above change. 2014-01-05 Paul Eggert @@ -2079,9 +2076,8 @@ All uses changed to waitpid and WEXITSTATUS. Avoid needless autoheader after autogen.sh. - * src/stamp-h.in: Remove from bzr repository; no longer needed there. - * .bzrignore: Add it. - * autogen.sh: Create it. + * .bzrignore: Add src/stamp-h.in. + * autogen.sh: Create src/stamp-h.in. 2012-08-01 Glenn Morris @@ -3056,7 +3052,6 @@ (WARN_CFLAGS, GNULIB_WARN_CFLAGS): New variable. (PKG_CHECK_MODULES, C_SWITCH_X_SITE): Use -isystem rather than -I, when including system files with GCC. - * etc/NEWS: Mention --enable-gcc-warnings. * INSTALL (DETAILED BUILDING AND INSTALLATION): Likewise. * lib/Makefile.am (AM_CFLAGS): New macro. * m4/manywarnings.m4, m4/warnings.m4: New files, from gnulib. @@ -3998,7 +3993,7 @@ src/makefile.w32-in and adapt. Depend on stamp_BLD. (GNULIBOBJS): Add $(BLD)/filemode.$(O). -2011-02-20 Paul Eggert +2011-02-21 Paul Eggert Import filemode module from gnulib. * .bzrignore: Add lib/sys/. @@ -4007,7 +4002,6 @@ * lib/filemode.c: Renamed from src/filemode.c and regenerated from gnulib. This adds support for some more file types, e.g., Cray DMF migrated files. - * lisp/emacs-lisp/find-gc.el (find-gc-source-files): Remove filemode.c. * lib/filemode.h, lib/sys_stat.in.h, m4/filemode.m4, m4/st_dm_mode.m4: * m4/sys_stat_h.m4: New files, generated from gnulib. * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4: @@ -4044,8 +4038,6 @@ * lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4, m4/md5.m4: New files, imported from gnulib. * Makefile.in (MAKEFILE_MODULES): Add crypto/md5. - * admin/notes/copyright: Remove src/md5.c and src/md5.h as - special cases. 2011-02-19 Eli Zaretskii @@ -4065,7 +4057,6 @@ Import getloadavg module from gnulib. * .bzrignore: Add lib/stdlib.h. * Makefile.in (GNULIB_MODULES): Add getloadavg. - * admin/notes/copyright: Remove src/getloadavg.c as a special case. * configure.in (LIBS_SYSTEM): Omit -lkstat on sol2*; gnulib does this. (AC_CONFIG_LIBOBJ_DIR, AC_FUNC_GETLOADAVG, GETLOADAVG_FILES): Remove; gnulib does this now. @@ -4079,7 +4070,7 @@ * lib/stdlib.in.h, m4/getloadavg.m4, m4/stdlib_h.m4: New files, from gnulib. * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4: - * src/config.in: Regenerate. + Regenerate. 2011-02-15 Paul Eggert @@ -4506,7 +4497,7 @@ * m4/gnulib-common.m4, m4/gnulib-comp.m4, m4/gnulib-tool.m4, missing: New files, generated automatically, with 'make sync-from-gnulib' followed by 'make'. - * configure, lisp/dired.el, src/config.in: Regenerate. + * configure: Regenerate. Automate syncing from gnulib. * INSTALL, README: Document new subdirectory 'lib'. === modified file 'admin/ChangeLog' --- admin/ChangeLog 2014-01-16 08:34:43 +0000 +++ admin/ChangeLog 2014-01-21 08:49:46 +0000 @@ -1036,6 +1036,10 @@ * notes/bugtracker (bugtracker_debbugs_url): Fix typo. +2011-02-20 Paul Eggert + + * notes/copyright: Remove src/md5.c and src/md5.h as special cases. + 2011-02-19 Eli Zaretskii * admin.el (set-version): Add msdos/sed2v2.inp. @@ -1045,6 +1049,7 @@ Remove no-longer needed getloadavg symbols. * CPP-DEFINES (LOAD_AVE_CVT, LOAD_AVE_TYPE, FSCALE, KERNEL_FILE): (LDAV_SYMBOL): Remove. + * notes/copyright: Remove src/getloadavg.c as a special case. 2011-02-12 Glenn Morris @@ -1567,7 +1572,7 @@ Sub-directory `unidata' is for codes to generate charprop.el and many other uni-*.el files from `UnicodeData.txt'. - * Unidata/README: New file. + * unidata/README: New file. * unidata/Makefile: New file. === modified file 'doc/emacs/ChangeLog' --- doc/emacs/ChangeLog 2014-01-20 22:39:59 +0000 +++ doc/emacs/ChangeLog 2014-01-21 08:49:46 +0000 @@ -9695,13 +9695,13 @@ 2003-11-02 Jesper Harder (tiny change) - * man/ack.texi, man/basic.texi, man/cmdargs.texi: - * man/commands.texi, man/custom.texi, man/display.texi: - * man/emacs.texi, man/files.texi: - * man/frames.texi, man/glossary.texi, man/killing.texi: - * man/macos.texi, man/mark.texi, man/misc.texi, man/msdog.texi: - * man/mule.texi, man/rmail.texi, man/search.texi: - * man/sending.texi, man/text.texi, man/trouble.texi: + * ack.texi, basic.texi, cmdargs.texi: + * commands.texi, custom.texi, display.texi: + * emacs.texi, files.texi: + * frames.texi, glossary.texi, killing.texi: + * macos.texi, mark.texi, misc.texi, msdog.texi: + * mule.texi, rmail.texi, search.texi: + * sending.texi, text.texi, trouble.texi: Replace @sc{ascii} and ASCII with @acronym{ASCII}. 2003-11-01 Alan Mackenzie === modified file 'doc/misc/ChangeLog' --- doc/misc/ChangeLog 2014-01-20 22:39:59 +0000 +++ doc/misc/ChangeLog 2014-01-21 08:49:46 +0000 @@ -4835,7 +4835,7 @@ 2009-12-15 Jay Belanger - * calc/calc.texi (Radix Modes): Clarify two's complement notation. + * calc.texi (Radix Modes): Clarify two's complement notation. 2009-12-14 Chong Yidong @@ -10593,8 +10593,8 @@ 2003-11-02 Jesper Harder (tiny change) - * man/ediff.texi, man/tramp.texi, man/vip.texi, man/viper.texi: - * man/widget.texi, man/woman.texi: Replace @sc{ascii} and ASCII with + * ediff.texi, tramp.texi, vip.texi, viper.texi: + * widget.texi, woman.texi: Replace @sc{ascii} and ASCII with @acronym{ASCII}. 2003-10-26 Karl Berry @@ -11207,7 +11207,7 @@ 1993-11-15 Paul Eggert (eggert@twinsun.com) - * man/Makefile (../info/cl.info): Rename from ../info/cl. + * Makefile (../info/cl.info): Rename from ../info/cl. 1993-11-15 Richard Stallman (rms@mole.gnu.ai.mit.edu) === modified file 'etc/ChangeLog' --- etc/ChangeLog 2014-01-16 20:18:55 +0000 +++ etc/ChangeLog 2014-01-21 08:49:46 +0000 @@ -739,6 +739,11 @@ * MORE.STUFF: General update. Mention list-packages. Remove many old/outdated URLs. + +2012-04-18 Paul Eggert + + * NEWS: Mention --enable-gcc-warnings. + 2012-04-10 Lars Magne Ingebrigtsen * publicsuffix.txt: New file (bug#1401). === modified file 'lib-src/ChangeLog' --- lib-src/ChangeLog 2014-01-19 08:50:53 +0000 +++ lib-src/ChangeLog 2014-01-21 08:49:46 +0000 @@ -725,7 +725,7 @@ 2012-05-05 Jim Meyering - * lib-src/pop.c (pop_stat, pop_list, pop_multi_first, pop_last): + * pop.c (pop_stat, pop_list, pop_multi_first, pop_last): NUL-terminate the error buffer (Bug#11372). 2012-05-02 Juanma Barranquero === modified file 'lisp/ChangeLog' --- lisp/ChangeLog 2014-01-21 08:26:31 +0000 +++ lisp/ChangeLog 2014-01-21 08:49:46 +0000 @@ -347,6 +347,8 @@ In preparation for the move to git, sanitize out some Bazaar-specific names. + * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO. + * version.el (emacs-bzr-version): Name changed to emacs-repository-version. Obsolete-variable alias made. * loadup.el: Follow through on this name change. === modified file 'lisp/ChangeLog.15' --- lisp/ChangeLog.15 2014-01-15 03:06:07 +0000 +++ lisp/ChangeLog.15 2014-01-21 08:49:46 +0000 @@ -578,6 +578,10 @@ * net/tramp.el (tramp-rfn-eshadow-setup-minibuffer): Do not use `field' property of `rfn-eshadow-overlay'. +2011-02-21 Paul Eggert + + * emacs-lisp/find-gc.el (find-gc-source-files): Remove filemode.c. + 2011-02-21 Lars Ingebrigtsen * net/netrc.el (netrc-parse): Comment fix. @@ -2033,6 +2037,10 @@ Don't auto-indent for indent-to-left-margin, it's too often counter-productive. +2011-01-17 Paul Eggert + + * dired.el: Regenerate. + 2011-01-16 Tassilo Horn * strokes.el (strokes-read-stroke): Re-fill strokes buffer with === modified file 'lwlib/ChangeLog' --- lwlib/ChangeLog 2014-01-15 08:49:38 +0000 +++ lwlib/ChangeLog 2014-01-21 08:49:46 +0000 @@ -1234,7 +1234,7 @@ 1998-07-30 Paul Eggert - * lwlib/Makefile.in (lwlib-utils.o, lwlib.o, lwlib-Xlw.o) + * Makefile.in (lwlib-utils.o, lwlib.o, lwlib-Xlw.o) (lwlib-Xaw.o, lwlib-Xm.o, lwlib-Xol.o, lwlib-Xolmb.o): Add dependencies to corresponding .c files for Solaris 2.x VPATH make. === modified file 'msdos/ChangeLog' --- msdos/ChangeLog 2014-01-01 07:43:34 +0000 +++ msdos/ChangeLog 2014-01-21 08:49:46 +0000 @@ -44,7 +44,7 @@ 2012-10-04 Paul Eggert Merge from gnulib. - * msdos/sedlibmk.inp (REPLACE_PTSNAME): Edit to appropriate value. + * sedlibmk.inp (REPLACE_PTSNAME): Edit to appropriate value. 2012-09-27 Paul Eggert === modified file 'src/ChangeLog.11' --- src/ChangeLog.11 2014-01-16 08:34:43 +0000 +++ src/ChangeLog.11 2014-01-21 08:49:46 +0000 @@ -1837,6 +1837,8 @@ (float_to_string): Use dtoastr rather than rolling our own code, which had an off-by-one bug on non-IEEE hosts. + * config.in: Regenerate. + Automate syncing from gnulib. * Makefile.in (lib): New macro. (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib. === modified file 'src/ChangeLog.12' --- src/ChangeLog.12 2014-01-15 03:06:07 +0000 +++ src/ChangeLog.12 2014-01-21 08:49:46 +0000 @@ -8160,6 +8160,11 @@ * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than hard-coding the path separator. +2012-08-02 Paul Eggert + + * stamp-h.in: Remove from bzr repository; no longer needed there + now ../autogen.sh creates it. + 2012-08-01 Paul Eggert Use "ASET (a, i, v)" rather than "AREF (a, i) = v".