diff options
| author | Gerd Moellmann | 2000-04-26 17:46:21 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-04-26 17:46:21 +0000 |
| commit | 7464346de7f3aa76a46146d8bede0a8ce5839030 (patch) | |
| tree | 34c91190f208c16b3be938532223779d92014e67 | |
| parent | e6819fafa388fa58b1754d5d3979fa45df69f279 (diff) | |
| download | emacs-7464346de7f3aa76a46146d8bede0a8ce5839030.tar.gz emacs-7464346de7f3aa76a46146d8bede0a8ce5839030.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 17 | ||||
| -rw-r--r-- | lisp/ChangeLog | 18 | ||||
| -rw-r--r-- | lisp/loaddefs.el | 25 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
4 files changed, 60 insertions, 6 deletions
| @@ -1147,6 +1147,16 @@ Note that +++ before an item means the Lisp manual has been updated. | |||
| 1147 | When you add a new item, please add it without either +++ or --- | 1147 | When you add a new item, please add it without either +++ or --- |
| 1148 | so I will know I still need to look at it -- rms. | 1148 | so I will know I still need to look at it -- rms. |
| 1149 | 1149 | ||
| 1150 | ** The function `add-minor-mode' simplifies the definition of minor | ||
| 1151 | modes. | ||
| 1152 | |||
| 1153 | - Function: add-minor-mode SYMBOL NAME MAP | ||
| 1154 | |||
| 1155 | Register a new minor mode. SYMBOL is the name of a buffer-local | ||
| 1156 | variable that is toggled on or off to say whether the minor mode is | ||
| 1157 | active or not. NAME is the string that will appear in the mode line | ||
| 1158 | when the minor mode is active. MAP is the keymap for the minor mode. | ||
| 1159 | |||
| 1150 | ** The function `shell-command' now sets the default directory of the | 1160 | ** The function `shell-command' now sets the default directory of the |
| 1151 | `*Shell Command Output*' buffer to the default directory of the buffer | 1161 | `*Shell Command Output*' buffer to the default directory of the buffer |
| 1152 | from which the command was issued. | 1162 | from which the command was issued. |
| @@ -3803,9 +3813,14 @@ reminder about upcoming diary entries. See the documentation string | |||
| 3803 | for a sample shell script for calling this function automatically | 3813 | for a sample shell script for calling this function automatically |
| 3804 | every night. | 3814 | every night. |
| 3805 | 3815 | ||
| 3806 | ** All you need to do, to enable use of the Desktop package, is to set | 3816 | ** Desktop changes |
| 3817 | |||
| 3818 | *** All you need to do to enable use of the Desktop package, is to set | ||
| 3807 | the variable desktop-enable to t with Custom. | 3819 | the variable desktop-enable to t with Custom. |
| 3808 | 3820 | ||
| 3821 | *** Minor modes are now restored. Which minor modes are restored | ||
| 3822 | and how modes are restored is controlled by `desktop-minor-mode-table'. | ||
| 3823 | |||
| 3809 | ** There is no need to do anything special, now, to enable Gnus to | 3824 | ** There is no need to do anything special, now, to enable Gnus to |
| 3810 | read and post multi-lingual articles. | 3825 | read and post multi-lingual articles. |
| 3811 | 3826 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a282fb6dedd..4a74c6b1e02 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2000-04-26 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * desktop.el (desktop-save): Save list of minor modes. | ||
| 4 | (desktop-create-buffer): Restore minor modes. | ||
| 5 | (desktop-minor-mode-table): New user-option. | ||
| 6 | |||
| 7 | * subr.el (add-minor-mode): New function. | ||
| 8 | |||
| 9 | * image.el (find-image): New function. | ||
| 10 | (defimage): Rewritten to find image at load time. | ||
| 11 | |||
| 12 | * startup.el (normal-top-level-add-to-load-path): Handle | ||
| 13 | case that the default directory is not in load-path. | ||
| 14 | |||
| 15 | * help.el: Old patch from Stefan Monnier. | ||
| 16 | (help-xref-on-pp): New function. | ||
| 17 | (describe-variable): Use it to display xrefs in a symbol's value. | ||
| 18 | |||
| 1 | 2000-04-26 Stefan Monnier <monnier@cs.yale.edu> | 19 | 2000-04-26 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 20 | ||
| 3 | * cus-edit.el (custom-face): Fix parenthesis. | 21 | * cus-edit.el (custom-face): Fix parenthesis. |
diff --git a/lisp/loaddefs.el b/lisp/loaddefs.el index d2266672097..fa85c1b56b9 100644 --- a/lisp/loaddefs.el +++ b/lisp/loaddefs.el | |||
| @@ -3953,7 +3953,7 @@ the first time the mode is used." nil nil) | |||
| 3953 | ;;;*** | 3953 | ;;;*** |
| 3954 | 3954 | ||
| 3955 | ;;;### (autoloads (desktop-load-default desktop-read) "desktop" "desktop.el" | 3955 | ;;;### (autoloads (desktop-load-default desktop-read) "desktop" "desktop.el" |
| 3956 | ;;;;;; (14495 17963)) | 3956 | ;;;;;; (14598 57772)) |
| 3957 | ;;; Generated autoloads from desktop.el | 3957 | ;;; Generated autoloads from desktop.el |
| 3958 | 3958 | ||
| 3959 | (autoload (quote desktop-read) "desktop" "\ | 3959 | (autoload (quote desktop-read) "desktop" "\ |
| @@ -8017,9 +8017,9 @@ Switches to the buffer `*ielm*', or creates it if it does not exist." t nil) | |||
| 8017 | 8017 | ||
| 8018 | ;;;*** | 8018 | ;;;*** |
| 8019 | 8019 | ||
| 8020 | ;;;### (autoloads (defimage remove-images insert-image put-image | 8020 | ;;;### (autoloads (defimage find-image remove-images insert-image |
| 8021 | ;;;;;; create-image image-type-available-p image-type-from-file-header | 8021 | ;;;;;; put-image create-image image-type-available-p image-type-from-file-header |
| 8022 | ;;;;;; image-type-from-data) "image" "image.el" (14524 62778)) | 8022 | ;;;;;; image-type-from-data) "image" "image.el" (14598 54652)) |
| 8023 | ;;; Generated autoloads from image.el | 8023 | ;;; Generated autoloads from image.el |
| 8024 | 8024 | ||
| 8025 | (autoload (quote image-type-from-data) "image" "\ | 8025 | (autoload (quote image-type-from-data) "image" "\ |
| @@ -8074,6 +8074,21 @@ Remove images between START and END in BUFFER. | |||
| 8074 | Remove only images that were put in BUFFER with calls to `put-image'. | 8074 | Remove only images that were put in BUFFER with calls to `put-image'. |
| 8075 | BUFFER nil or omitted means use the current buffer." nil nil) | 8075 | BUFFER nil or omitted means use the current buffer." nil nil) |
| 8076 | 8076 | ||
| 8077 | (autoload (quote find-image) "image" "\ | ||
| 8078 | Find an image, choosing one of a list of image specifications. | ||
| 8079 | |||
| 8080 | SPECS is a list of image specifications. DOC is an optional | ||
| 8081 | documentation string. | ||
| 8082 | |||
| 8083 | Each image specification in SPECS is a property list. The contents of | ||
| 8084 | a specification are image type dependent. All specifications must at | ||
| 8085 | least contain the properties `:type TYPE' and either `:file FILE' or | ||
| 8086 | `:data DATA', where TYPE is a symbol specifying the image type, | ||
| 8087 | e.g. `xbm', FILE is the file to load the image from, and DATA is a | ||
| 8088 | string containing the actual image data. The first image | ||
| 8089 | specification whose TYPE is supported, and FILE exists, is used to | ||
| 8090 | define SYMBOL." nil nil) | ||
| 8091 | |||
| 8077 | (autoload (quote defimage) "image" "\ | 8092 | (autoload (quote defimage) "image" "\ |
| 8078 | Define SYMBOL as an image. | 8093 | Define SYMBOL as an image. |
| 8079 | 8094 | ||
| @@ -13361,7 +13376,7 @@ From a program takes two point or marker arguments, BEG and END." t nil) | |||
| 13361 | ;;;*** | 13376 | ;;;*** |
| 13362 | 13377 | ||
| 13363 | ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" | 13378 | ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" |
| 13364 | ;;;;;; "speedbar.el" (14597 45194)) | 13379 | ;;;;;; "speedbar.el" (14598 31838)) |
| 13365 | ;;; Generated autoloads from speedbar.el | 13380 | ;;; Generated autoloads from speedbar.el |
| 13366 | 13381 | ||
| 13367 | (defalias (quote speedbar) (quote speedbar-frame-mode)) | 13382 | (defalias (quote speedbar) (quote speedbar-frame-mode)) |
diff --git a/src/ChangeLog b/src/ChangeLog index daf9ff07f98..52e876ea666 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-04-26 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (display_line): If lines are continued, restore | ||
| 4 | iterator's ascent/descent information to the values before the | ||
| 5 | first glyph not fitting on the line. | ||
| 6 | |||
| 1 | 2000-04-25 Gerd Moellmann <gerd@gnu.org> | 7 | 2000-04-25 Gerd Moellmann <gerd@gnu.org> |
| 2 | 8 | ||
| 3 | * xdisp.c (try_window_id) <all changes above window start>: Adjust | 9 | * xdisp.c (try_window_id) <all changes above window start>: Adjust |