diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 53c6db7eb0d..d0607f72f7e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-11-17 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/autoload.el (autoload-find-destination): The function | ||
| 4 | coding-system-eol-type may return non-numeric values. (Bug#7414) | ||
| 5 | |||
| 1 | 2010-11-16 Ulrich Mueller <ulm@gentoo.org> | 6 | 2010-11-16 Ulrich Mueller <ulm@gentoo.org> |
| 2 | 7 | ||
| 3 | * server.el (server-force-stop): Ensure the server is stopped (Bug#7409). | 8 | * server.el (server-force-stop): Ensure the server is stopped (Bug#7409). |
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index c985aae07b6..5ae984ffdb0 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | ;; autoload.el --- maintain autoloads in loaddefs.el | 1 | ;; autoload.el --- maintain autoloads in loaddefs.el |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2001, 2002, 2003, | 3 | ;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2001, 2002, |
| 4 | ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. | 4 | ;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
| 5 | ;; Free Software Foundation, Inc. | ||
| 5 | 6 | ||
| 6 | ;; Author: Roland McGrath <roland@gnu.org> | 7 | ;; Author: Roland McGrath <roland@gnu.org> |
| 7 | ;; Keywords: maint | 8 | ;; Keywords: maint |
| @@ -525,8 +526,8 @@ removes any prior now out-of-date autoload entries." | |||
| 525 | (autoload-ensure-default-file (autoload-generated-file))) | 526 | (autoload-ensure-default-file (autoload-generated-file))) |
| 526 | ;; This is to make generated-autoload-file have Unix EOLs, so | 527 | ;; This is to make generated-autoload-file have Unix EOLs, so |
| 527 | ;; that it is portable to all platforms. | 528 | ;; that it is portable to all platforms. |
| 528 | (unless (zerop (coding-system-eol-type buffer-file-coding-system)) | 529 | (or (eq 0 (coding-system-eol-type buffer-file-coding-system)) |
| 529 | (set-buffer-file-coding-system 'unix)) | 530 | (set-buffer-file-coding-system 'unix)) |
| 530 | (or (> (buffer-size) 0) | 531 | (or (> (buffer-size) 0) |
| 531 | (error "Autoloads file %s does not exist" buffer-file-name)) | 532 | (error "Autoloads file %s does not exist" buffer-file-name)) |
| 532 | (or (file-writable-p buffer-file-name) | 533 | (or (file-writable-p buffer-file-name) |
| @@ -735,5 +736,4 @@ Calls `update-directory-autoloads' on the command line arguments." | |||
| 735 | 736 | ||
| 736 | (provide 'autoload) | 737 | (provide 'autoload) |
| 737 | 738 | ||
| 738 | ;; arch-tag: 00244766-98f4-4767-bf42-8a22103441c6 | ||
| 739 | ;;; autoload.el ends here | 739 | ;;; autoload.el ends here |