diff options
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 12 |
1 files changed, 9 insertions, 3 deletions
| @@ -1,6 +1,7 @@ | |||
| 1 | 2014-12-29 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2014-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 | ||
| 28 | 2014-12-28 Paul Eggert <eggert@cs.ucla.edu> | 34 | 2014-12-28 Paul Eggert <eggert@cs.ucla.edu> |
| 29 | 35 | ||