aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2014-12-29 12:39:58 -0800
committerPaul Eggert2014-12-29 12:42:07 -0800
commit973110680c094b7a3bbcebbfbafb9abfc7adc8fd (patch)
treed4a329e7633a0e2e685c9cf2b7476a771de6006c /ChangeLog
parentf9acac751d4cd22480e62cc63936b1208ca9fe48 (diff)
downloademacs-973110680c094b7a3bbcebbfbafb9abfc7adc8fd.tar.gz
emacs-973110680c094b7a3bbcebbfbafb9abfc7adc8fd.zip
Fix previous patch to match its commit message
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1fc7d66c883..6557ef9552f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
12014-12-29 Paul Eggert <eggert@cs.ucla.edu> 12014-12-29 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 system-name's returned value can vary 3 system-name's returned value can vary
4 Also, the system-name variable is now obsolete.
4 Fixes Bug#19438. 5 Fixes Bug#19438.
5 * doc/lispref/os.texi (System Environment): 6 * doc/lispref/os.texi (System Environment):
6 * etc/NEWS: Document this. 7 * etc/NEWS: Document this.
@@ -8,6 +9,7 @@
8 (Displaying the current file name in the titlebar): 9 (Displaying the current file name in the titlebar):
9 * lisp/desktop.el (desktop-save-frameset): 10 * lisp/desktop.el (desktop-save-frameset):
10 * lisp/dnd.el (dnd-get-local-file-uri): 11 * lisp/dnd.el (dnd-get-local-file-uri):
12 * lisp/gnus/message.el (message-make-fqdn):
11 * lisp/gnus/nnvirtual.el (nnvirtual-retrieve-headers) 13 * lisp/gnus/nnvirtual.el (nnvirtual-retrieve-headers)
12 (nnvirtual-update-xref-header): 14 (nnvirtual-update-xref-header):
13 * lisp/nxml/rng-uri.el (rng-uri-file-name-1): 15 * lisp/nxml/rng-uri.el (rng-uri-file-name-1):
@@ -16,14 +18,18 @@
16 * src/xrdb.c (get_environ_db): 18 * src/xrdb.c (get_environ_db):
17 * src/xterm.c (same_x_server): 19 * src/xterm.c (same_x_server):
18 * src/xterm.c (x_term_init): 20 * src/xterm.c (x_term_init):
19 Prefer (system-name) to system-name. 21 Prefer (system-name) to system-name, and avoid naming
22 locals 'system-name'.
20 * doc/misc/smtpmail.texi (Server workarounds): Fix grammar. 23 * doc/misc/smtpmail.texi (Server workarounds): Fix grammar.
24 * lisp/startup.el (system-name): Now an obsolete variable.
21 * src/editfns.c (cached_system_name): New static var. 25 * src/editfns.c (cached_system_name): New static var.
22 (init_and_cache_system_name): New function. 26 (init_and_cache_system_name): New function.
23 (init_editfns, Fsystem_name): Use it. 27 (init_editfns, Fsystem_name): Use it.
24 (syms_of_editfns): Initialize it and Vsystem_name to the same value. 28 (syms_of_editfns): Initialize it and Vsystem_name to the same value.
25 * src/sysdep.c (init_system_name): Don't create a new string if 29 * src/sysdep.c [HAVE_SOCKETS]: Don't include <sys/socket.h>, <netdb.h>.
26 the current value is already correct. 30 (h_errno) [TRY_AGAIN && !HAVE_H_ERRNO]: Remove decl.
31 (init_system_name) [HAVE_SOCKETS]: Don't canonicalize the name.
32 Don't create a new string if the current value is already correct.
27 33
282014-12-28 Paul Eggert <eggert@cs.ucla.edu> 342014-12-28 Paul Eggert <eggert@cs.ucla.edu>
29 35