diff options
| author | Gerd Moellmann | 2000-10-04 19:05:33 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-10-04 19:05:33 +0000 |
| commit | 3dc78168e1df2966e8fd9ebd213baf472583c3f7 (patch) | |
| tree | 886bb58a76ef8b703863cb057f3447a45d8cd970 | |
| parent | 5b61c6a782b52f17a9f7e951eff00f007bbedf2f (diff) | |
| download | emacs-3dc78168e1df2966e8fd9ebd213baf472583c3f7.tar.gz emacs-3dc78168e1df2966e8fd9ebd213baf472583c3f7.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 22 | ||||
| -rw-r--r-- | src/ChangeLog | 7 |
2 files changed, 22 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5ab4e83d1d7..a8d0ab8309e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2000-10-04 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * startup.el (fancy-splash-pending-command): New variable. | ||
| 4 | (fancy-splash-pre-command): New function. | ||
| 5 | (fancy-splash-screens): Rewritten. | ||
| 6 | (command-line-1): If fancy-splash-pending-command is set, call it | ||
| 7 | interactively. | ||
| 8 | |||
| 1 | 2000-10-04 Dave Love <fx@gnu.org> | 9 | 2000-10-04 Dave Love <fx@gnu.org> |
| 2 | 10 | ||
| 3 | * toolbar/tool-bar.el (tool-bar-setup): New function. | 11 | * toolbar/tool-bar.el (tool-bar-setup): New function. |
| @@ -33,8 +41,8 @@ | |||
| 33 | 41 | ||
| 34 | 2000-10-04 Peter Breton <pbreton@ne.mediaone.net> | 42 | 2000-10-04 Peter Breton <pbreton@ne.mediaone.net> |
| 35 | 43 | ||
| 36 | * net/net-utils.el (nslookup-font-lock-keywords, | 44 | * net/net-utils.el (nslookup-font-lock-keywords) |
| 37 | ftp-font-lock-keywords, smbclient-font-lock-keywords): | 45 | (ftp-font-lock-keywords, smbclient-font-lock-keywords): |
| 38 | Only set if window-system is non-nil | 46 | Only set if window-system is non-nil |
| 39 | (net-utils-run-program): Returns buffer. | 47 | (net-utils-run-program): Returns buffer. |
| 40 | (network-connection-reconnect): Added this function. | 48 | (network-connection-reconnect): Added this function. |
| @@ -43,20 +51,20 @@ | |||
| 43 | Incorporates extensive cleanup and docfixes by | 51 | Incorporates extensive cleanup and docfixes by |
| 44 | Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu). | 52 | Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu). |
| 45 | Uses cl compile-time macros. | 53 | Uses cl compile-time macros. |
| 46 | (generic-mode-name, generic-comment-list, | 54 | (generic-mode-name, generic-comment-list) |
| 47 | generic-keywords-list, generic-font-lock-expressions, | 55 | (generic-keywords-list, generic-font-lock-expressions) |
| 48 | generic-mode-function-list, generic-mode-syntax-table): | 56 | (generic-mode-function-list, generic-mode-syntax-table): |
| 49 | Removed variables. | 57 | Removed variables. |
| 50 | (generic-mode-alist): Renamed to generic-mode-list. | 58 | (generic-mode-alist): Renamed to generic-mode-list. |
| 51 | (generic-find-file-regexp): Default changed to "^#". | 59 | (generic-find-file-regexp): Default changed to "^#". |
| 52 | (generic-read-type): Uses completing read on generic-mode-list. | 60 | (generic-read-type): Uses completing read on generic-mode-list. |
| 53 | (generic-mode-sanity-check): removed this function. | 61 | (generic-mode-sanity-check): removed this function. |
| 54 | (generic-add-to-auto-mode): Removed this function | 62 | (generic-add-to-auto-mode): Removed this function |
| 55 | (generic-mode-internal): Binds mode-specific definitions | 63 | (generic-mode-internal): Bind mode-specific definitions |
| 56 | into function instead of putting them in alist. | 64 | into function instead of putting them in alist. |
| 57 | (generic-mode-set-comments): Reworked extensively. | 65 | (generic-mode-set-comments): Reworked extensively. |
| 58 | (generic-mode-find-file-hook): Simplified regexp searching | 66 | (generic-mode-find-file-hook): Simplified regexp searching |
| 59 | (generic-make-keywords-list): Omit extra pair of parens | 67 | (generic-make-keywords-list): Omit extra pair of parens |
| 60 | 68 | ||
| 61 | * find-lisp.el (find-lisp-find-files-internal): | 69 | * find-lisp.el (find-lisp-find-files-internal): |
| 62 | Make sure directory name ends with "/". | 70 | Make sure directory name ends with "/". |
diff --git a/src/ChangeLog b/src/ChangeLog index 0485ee5517e..4277f5fd45b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2000-10-04 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * keyboard.c (update_menu_bindings): New variable. | ||
| 4 | (parse_menu_item): Use AREF. If update_menu_bindings | ||
| 5 | is 0, don't update menu bindings. | ||
| 6 | (syms_of_keyboard): New Lisp variable `update-menu-bindings'. | ||
| 7 | |||
| 1 | 2000-10-03 Eli Zaretskii <eliz@is.elta.co.il> | 8 | 2000-10-03 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 9 | ||
| 3 | * alloc.c (Fgarbage_collect): Prevent compiler warning for a call | 10 | * alloc.c (Fgarbage_collect): Prevent compiler warning for a call |