commit 11ee7d8bf16b8ee4fcb3659e4b09686ed8b10590 (HEAD, refs/remotes/origin/master) Author: Glenn Morris Date: Fri Jan 2 11:52:03 2015 -0800 ChangeLog fixes diff --git a/ChangeLog b/ChangeLog index 3182c6c..0efa32a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -28,39 +28,6 @@ Be less chatty when not verbose. ($(srcdir)/src/stamp-h.in): Simplify with '$@'. -2014-12-29 Paul Eggert - - system-name's returned value can vary - Also, the system-name variable is now obsolete. - Fixes Bug#19438. - * doc/lispref/os.texi (System Environment): - * etc/NEWS: Document this. - * doc/misc/efaq.texi: - (Displaying the current file name in the titlebar): - * lisp/desktop.el (desktop-save-frameset): - * lisp/dnd.el (dnd-get-local-file-uri): - * lisp/gnus/message.el (message-make-fqdn): - * lisp/gnus/nnvirtual.el (nnvirtual-retrieve-headers) - (nnvirtual-update-xref-header): - * lisp/nxml/rng-uri.el (rng-uri-file-name-1): - * lisp/org/org-clock.el (org-clock-save): - * src/filelock.c (current_lock_owner): - * src/xrdb.c (get_environ_db): - * src/xterm.c (same_x_server): - * src/xterm.c (x_term_init): - Prefer (system-name) to system-name, and avoid naming - locals 'system-name'. - * doc/misc/smtpmail.texi (Server workarounds): Fix grammar. - * lisp/startup.el (system-name): Now an obsolete variable. - * src/editfns.c (cached_system_name): New static var. - (init_and_cache_system_name): New function. - (init_editfns, Fsystem_name): Use it. - (syms_of_editfns): Initialize it and Vsystem_name to the same value. - * src/sysdep.c [HAVE_SOCKETS]: Don't include , . - (h_errno) [TRY_AGAIN && !HAVE_H_ERRNO]: Remove decl. - (init_system_name) [HAVE_SOCKETS]: Don't canonicalize the name. - Don't create a new string if the current value is already correct. - 2014-12-28 Paul Eggert * build-aux/git-hooks/commit-msg: Allow tabs. diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index ce97b4d..de1a760 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -14,6 +14,10 @@ `temp-buffer-resize-mode', `temp-buffer-max-height' and `temp-buffer-max-width'. +2014-12-29 Paul Eggert + + * os.texi (System Environment): Update for system-name changes. + 2014-12-27 Glenn Morris * control.texi (Pattern matching case statement): diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 70c68f0..5057fb9 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -12,6 +12,16 @@ (${buildinfodir}/efaq%.info, efaq%.html): Use them. +2014-12-31 Filipp Gunbin + + * info.texi (Create Info buffer): Mention info-display-manual prefix. + +2014-12-29 Paul Eggert + + * efaq.texi (Displaying the current file name in the titlebar): + Prefer (system-name) to system-name. + * smtpmail.texi (Server workarounds): Fix grammar. + 2014-12-18 Eric Abrahamsen * gnus.texi (Gnus Registry Setup): Explain pruning changes. Mention diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9d5416c..4b413fb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -59,6 +59,12 @@ * obsolete/pc-select.el (pc-selection-mode): Use system-type. This is instead of system-name, which is both wrong here and obsolete. + * desktop.el (desktop-save-frameset): + * dnd.el (dnd-get-local-file-uri): + * nxml/rng-uri.el (rng-uri-file-name-1): + Prefer (system-name) to system-name, and avoid naming + locals 'system-name'. + * startup.el (system-name): Now an obsolete variable. (Bug#19438) 2014-12-29 Dmitry Gutov diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 73fe41f..73a0de7 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,10 @@ +2014-12-29 Paul Eggert + + * message.el (message-make-fqdn): + * nnvirtual.el (nnvirtual-retrieve-headers) + (nnvirtual-update-xref-header): Prefer (system-name) to system-name, + and avoid naming locals 'system-name'. + 2014-12-29 Lars Ingebrigtsen * mm-decode.el (mm-shr): Bind `shr-width' to `fill-column' so that diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 7b87933..081da5d 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog @@ -1,3 +1,7 @@ +2014-12-29 Paul Eggert + + * org-clock.el (org-clock-save): Prefer (system-name) to system-name. + 2014-10-29 Paul Eggert Simplify use of current-time and friends. diff --git a/src/ChangeLog b/src/ChangeLog index 7b286cc..d204ccf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -21,6 +21,24 @@ * sysdep.c [WINDOWSNT]: Include sys/socket.h, without which this file doesn't compile on MS-Windows. +2014-12-29 Paul Eggert + + Allow return value of system-name to vary. (Bug#19438) + * filelock.c (current_lock_owner): + * xrdb.c (get_environ_db): + * xterm.c (same_x_server): + * xterm.c (x_term_init): + Prefer (system-name) to system-name, and avoid naming + locals 'system-name'. + * editfns.c (cached_system_name): New static var. + (init_and_cache_system_name): New function. + (init_editfns, Fsystem_name): Use it. + (syms_of_editfns): Initialize it and Vsystem_name to the same value. + * sysdep.c [HAVE_SOCKETS]: Don't include , . + (h_errno) [TRY_AGAIN && !HAVE_H_ERRNO]: Remove decl. + (init_system_name) [HAVE_SOCKETS]: Don't canonicalize the name. + Don't create a new string if the current value is already correct. + 2014-12-28 Paul Eggert Fix produce_composite_width typo commit d0ca1148fe2d1e72e86f0197731071f139c143e3 Author: Glenn Morris Date: Fri Jan 2 06:22:24 2015 -0500 Auto-commit of loaddefs files. diff --git a/lisp/dired.el b/lisp/dired.el index 003a95a..2b3e783 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -3884,7 +3884,7 @@ Ask means pop up a menu for the user to select one of copy, move or link." ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "dired-aux" "dired-aux.el" "73269f48e7fe2fd0ac580fd69252b33a") +;;;### (autoloads nil "dired-aux" "dired-aux.el" "65f8aa57ace423283926d92dff903ca7") ;;; Generated autoloads from dired-aux.el (autoload 'dired-diff "dired-aux" "\ @@ -4387,7 +4387,7 @@ instead. ;;;*** -;;;### (autoloads nil "dired-x" "dired-x.el" "994b5d9fc38059ab641ec271c728e56f") +;;;### (autoloads nil "dired-x" "dired-x.el" "d8d702a50887671b9128ba60bd9ebb8e") ;;; Generated autoloads from dired-x.el (autoload 'dired-jump "dired-x" "\ diff --git a/lisp/emacs-lisp/eieio.el b/lisp/emacs-lisp/eieio.el index d87841c..3610054 100644 --- a/lisp/emacs-lisp/eieio.el +++ b/lisp/emacs-lisp/eieio.el @@ -895,7 +895,7 @@ variable PRINT-FUNCTION. Optional argument NOESCAPE is passed to ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "eieio-custom" "eieio-custom.el" "ab711689b2bae8a7d8c4b1e99c892306") +;;;### (autoloads nil "eieio-custom" "eieio-custom.el" "62709d76ae43f4fe70ed922391f9c64d") ;;; Generated autoloads from eieio-custom.el (autoload 'customize-object "eieio-custom" "\ @@ -906,7 +906,7 @@ Optional argument GROUP is the sub-group of slots to display. ;;;*** -;;;### (autoloads nil "eieio-opt" "eieio-opt.el" "889c0a935dddf758dbb65488470ffa06") +;;;### (autoloads nil "eieio-opt" "eieio-opt.el" "76058d02377b677eed3d15c28fc7ab21") ;;; Generated autoloads from eieio-opt.el (autoload 'eieio-browse "eieio-opt" "\ diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index 2bf3695..719cb82 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el @@ -2411,7 +2411,7 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'." (load file 'NOERROR nil nil) )) -;;;### (autoloads nil "hfy-cmap" "hfy-cmap.el" "27dc80b0f7187aaf582805a8f887819a") +;;;### (autoloads nil "hfy-cmap" "hfy-cmap.el" "ce07a28b93c09032fd6b225ad74be0df") ;;; Generated autoloads from hfy-cmap.el (autoload 'htmlfontify-load-rgb-file "hfy-cmap" "\ diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index be81769..8bd1e46 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el @@ -2597,7 +2597,7 @@ will be inserted before the group at point." ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "ibuf-ext" "ibuf-ext.el" "0d2393d1b47136bc7b1ac41593527f02") +;;;### (autoloads nil "ibuf-ext" "ibuf-ext.el" "442bac528ce7a9a20bb191d0eb08cbd8") ;;; Generated autoloads from ibuf-ext.el (autoload 'ibuffer-auto-mode "ibuf-ext" "\ diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index b35e736..855a4c2 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -4660,7 +4660,7 @@ encoded string (and the same mask) will decode the string." ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "rmailedit" "rmailedit.el" "b155463a02e4aa9256ac21997ea003e9") +;;;### (autoloads nil "rmailedit" "rmailedit.el" "f6da7267316d02c90b9d314ce95b3c22") ;;; Generated autoloads from rmailedit.el (autoload 'rmail-edit-current-message "rmailedit" "\ @@ -4670,7 +4670,7 @@ Edit the contents of this message. ;;;*** -;;;### (autoloads nil "rmailkwd" "rmailkwd.el" "d462d15a119ee2a1733de2bc31bf347c") +;;;### (autoloads nil "rmailkwd" "rmailkwd.el" "298dcda7febb6e4ebf0a166101f40650") ;;; Generated autoloads from rmailkwd.el (autoload 'rmail-add-label "rmailkwd" "\ @@ -4713,7 +4713,7 @@ With prefix argument N moves forward N messages with these labels. ;;;*** -;;;### (autoloads nil "rmailmm" "rmailmm.el" "6446c799d49a6df8519b11bfe2e3cbea") +;;;### (autoloads nil "rmailmm" "rmailmm.el" "43e0b9f680c4d2581640b286bd4b3107") ;;; Generated autoloads from rmailmm.el (autoload 'rmail-mime "rmailmm" "\ @@ -4739,7 +4739,7 @@ The arguments ARG and STATE have no effect in this case. ;;;*** -;;;### (autoloads nil "rmailmsc" "rmailmsc.el" "0950b0ad020610737220948bb3f37c17") +;;;### (autoloads nil "rmailmsc" "rmailmsc.el" "c3f0d33739768fc12acc4258ae0da72e") ;;; Generated autoloads from rmailmsc.el (autoload 'set-rmail-inbox-list "rmailmsc" "\ @@ -4753,7 +4753,7 @@ This applies only to the current session. ;;;*** -;;;### (autoloads nil "rmailsort" "rmailsort.el" "4106a6e4898795822554ce931f531ab8") +;;;### (autoloads nil "rmailsort" "rmailsort.el" "8f551773021df4fa1a14ec2517e6a4f1") ;;; Generated autoloads from rmailsort.el (autoload 'rmail-sort-by-date "rmailsort" "\ @@ -4810,7 +4810,7 @@ If prefix argument REVERSE is non-nil, sorts in reverse order. ;;;*** -;;;### (autoloads nil "rmailsum" "rmailsum.el" "ee1fa556cd65d7ef457a97ab560e15da") +;;;### (autoloads nil "rmailsum" "rmailsum.el" "e3943ef45946f10b9b5cab8097d7f271") ;;; Generated autoloads from rmailsum.el (autoload 'rmail-summary "rmailsum" "\ @@ -4857,7 +4857,7 @@ SENDERS is a string of regexps separated by commas. ;;;*** -;;;### (autoloads nil "undigest" "undigest.el" "f30d93eb6a006ac64080a1ee8a45a1af") +;;;### (autoloads nil "undigest" "undigest.el" "912d4d3bf762991df5d4d02f42358025") ;;; Generated autoloads from undigest.el (autoload 'undigestify-rmail-message "undigest" "\ diff --git a/lisp/ps-print.el b/lisp/ps-print.el index 29534d2..0a2c214 100644 --- a/lisp/ps-print.el +++ b/lisp/ps-print.el @@ -6592,7 +6592,7 @@ If FACE is not a valid face name, use default face." ;; To make this file smaller, some commands go in a separate file. ;; But autoload them here to make the separation invisible. -;;;### (autoloads nil "ps-mule" "ps-mule.el" "173235d6520575a877c25be437fb9e5f") +;;;### (autoloads nil "ps-mule" "ps-mule.el" "231b07356e5a37ebf517c613a3a12bba") ;;; Generated autoloads from ps-mule.el (defvar ps-multibyte-buffer nil "\ diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 2a12579..160d9fb 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el @@ -2382,7 +2382,7 @@ Your bug report will be posted to the AUCTeX bug reporting list. ;;; Start of automatically extracted autoloads. -;;;### (autoloads nil "reftex-auc" "reftex-auc.el" "16f7e4bde671b5faee975a9ff10838e7") +;;;### (autoloads nil "reftex-auc" "reftex-auc.el" "cf606f7918831321cb46f254436dc66e") ;;; Generated autoloads from reftex-auc.el (autoload 'reftex-arg-label "reftex-auc" "\ @@ -2450,7 +2450,7 @@ of ENTRY-LIST is a list of cons cells (\"MACRONAME\" . LEVEL). See ;;;*** -;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "43a70b713b3cd8a225f03431400e54e6") +;;;### (autoloads nil "reftex-cite" "reftex-cite.el" "5a53c260fa01268c04ea2f558add9d7d") ;;; Generated autoloads from reftex-cite.el (autoload 'reftex-default-bibliography "reftex-cite" "\ @@ -2552,7 +2552,7 @@ created files in the variables `reftex-create-bibtex-header' or ;;;*** -;;;### (autoloads nil "reftex-dcr" "reftex-dcr.el" "e90640fdd78f4404b29729bf7a5fce30") +;;;### (autoloads nil "reftex-dcr" "reftex-dcr.el" "08fc5bd6c35f9d6ab4a6ad336d3769c0") ;;; Generated autoloads from reftex-dcr.el (autoload 'reftex-view-crossref "reftex-dcr" "\ @@ -2600,7 +2600,7 @@ Calling this function several times find successive citation locations. ;;;*** -;;;### (autoloads nil "reftex-global" "reftex-global.el" "a773b46e8b751bca3a82c991f81b5fdd") +;;;### (autoloads nil "reftex-global" "reftex-global.el" "5fdd9c2edced0882471f86baf4b4b234") ;;; Generated autoloads from reftex-global.el (autoload 'reftex-create-tags-file "reftex-global" "\ @@ -2680,7 +2680,7 @@ With no argument, this command toggles ;;;*** -;;;### (autoloads nil "reftex-index" "reftex-index.el" "ccf53e4cdf1d7280e4cdb54d23e81854") +;;;### (autoloads nil "reftex-index" "reftex-index.el" "d80e84d499050e32569a454d8db16861") ;;; Generated autoloads from reftex-index.el (autoload 'reftex-index-selection-or-word "reftex-index" "\ @@ -2778,7 +2778,7 @@ Here are all local bindings. ;;;*** -;;;### (autoloads nil "reftex-parse" "reftex-parse.el" "69a531bd0ac3f97f076b7dda4ec2304d") +;;;### (autoloads nil "reftex-parse" "reftex-parse.el" "c327a848a6d168412b1a9be9f2e3dce8") ;;; Generated autoloads from reftex-parse.el (autoload 'reftex-parse-one "reftex-parse" "\ @@ -2936,7 +2936,7 @@ When LEVEL is non-nil, increase section numbers on that level. ;;;*** -;;;### (autoloads nil "reftex-ref" "reftex-ref.el" "3ad5bfbb747c7f8c5cd5b30e3b6fc342") +;;;### (autoloads nil "reftex-ref" "reftex-ref.el" "64cd7a4eaec426177a8fb3689139d935") ;;; Generated autoloads from reftex-ref.el (autoload 'reftex-label-location "reftex-ref" "\ @@ -2997,7 +2997,7 @@ Optional prefix argument OTHER-WINDOW goes to the label in another window. ;;;*** -;;;### (autoloads nil "reftex-sel" "reftex-sel.el" "4ffdcf92acf13e0e93cfac51b6e0607c") +;;;### (autoloads nil "reftex-sel" "reftex-sel.el" "faea36cbe37033efd3f9063187eef7ee") ;;; Generated autoloads from reftex-sel.el (autoload 'reftex-select-label-mode "reftex-sel" "\ @@ -3050,7 +3050,7 @@ During a selection process, these are the local bindings. ;;;*** -;;;### (autoloads nil "reftex-toc" "reftex-toc.el" "30e611bd9b33af3e6a5a22cf7497de78") +;;;### (autoloads nil "reftex-toc" "reftex-toc.el" "e04344fac7ba4c2043439e130bdd283f") ;;; Generated autoloads from reftex-toc.el (autoload 'reftex-toc "reftex-toc" "\