diff options
| author | Stefan Monnier | 2000-06-11 05:34:05 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-06-11 05:34:05 +0000 |
| commit | 70223ca45de140e28d29f476a96d84d02661ff62 (patch) | |
| tree | f2d180104cbbc39b52d36fa9630e10945b2dbbda | |
| parent | 61dc47f5dcb2b7b20403270106f220a82bc8a243 (diff) | |
| download | emacs-70223ca45de140e28d29f476a96d84d02661ff62.tar.gz emacs-70223ca45de140e28d29f476a96d84d02661ff62.zip | |
(imenu-generic-expression): Docstring fix.
| -rw-r--r-- | lisp/ChangeLog | 34 | ||||
| -rw-r--r-- | lisp/imenu.el | 4 |
2 files changed, 35 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c3c557e82d5..a44099bfb8e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,35 @@ | |||
| 1 | 2000-06-11 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * imenu.el (imenu-generic-expression): Docstring fix. | ||
| 4 | |||
| 5 | * composite.el (composition-function-table): Move the `put' | ||
| 6 | below the autoload cookie so we can load the file before loaddefs. | ||
| 7 | |||
| 8 | * avoid.el (mouse-avoidance-random-shape): Don't quote lambda. | ||
| 9 | |||
| 10 | * emacs-lisp/autoload.el (make-autoload): Use `cond'. | ||
| 11 | Handle easy-mmode-define-global-mode. | ||
| 12 | For complex macros like define-minor-mode that can generate | ||
| 13 | several autoload entries, try to autoload entries in the | ||
| 14 | macroexpanded code. | ||
| 15 | |||
| 16 | * emacs-lisp/easy-mmode.el (define-minor-mode): | ||
| 17 | If KEYMAP is a symbol, just use it. | ||
| 18 | Use byte-compile-current-file and load-file-name to infer the | ||
| 19 | proper :require to pass to defcustom. | ||
| 20 | Wrap the hook var into `progn' so as not to autoload it. | ||
| 21 | Add a :autoload-end cookie. | ||
| 22 | Be more careful about the evaluation of KEYMAP. | ||
| 23 | (easy-mmode-define-global-mode): Add a :autoload-end cookie. | ||
| 24 | (define-derived-mode): Move define-abbrev-table outside of defvar. | ||
| 25 | |||
| 26 | 2000-06-10 Stefan Monnier <monnier@cs.yale.edu> | ||
| 27 | |||
| 28 | * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch). | ||
| 29 | (autoloads): Explicitly load `autoload' to bootstrap without loaddefs. | ||
| 30 | (backup-compiled-files): Ignore errors during `tar'. | ||
| 31 | (bootstrap): Make autoloads before elc files. | ||
| 32 | |||
| 1 | 2000-06-10 Kenichi Handa <handa@etl.go.jp> | 33 | 2000-06-10 Kenichi Handa <handa@etl.go.jp> |
| 2 | 34 | ||
| 3 | * international/mule.el (set-buffer-file-coding-system): If one of | 35 | * international/mule.el (set-buffer-file-coding-system): If one of |
| @@ -10,7 +42,7 @@ | |||
| 10 | 42 | ||
| 11 | * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region. | 43 | * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region. |
| 12 | 44 | ||
| 13 | * executable.el: Byte compile dynamic. | 45 | * progmodes/executable.el: Byte compile dynamic. |
| 14 | (executable-insert): Change custom type. | 46 | (executable-insert): Change custom type. |
| 15 | (executable-find): Add autoload cookie. | 47 | (executable-find): Add autoload cookie. |
| 16 | (executable-make-buffer-file-executable-if-script-p): New | 48 | (executable-make-buffer-file-executable-if-script-p): New |
diff --git a/lisp/imenu.el b/lisp/imenu.el index 64a5bd9941f..393a1967ac1 100644 --- a/lisp/imenu.el +++ b/lisp/imenu.el | |||
| @@ -187,8 +187,8 @@ or like this: | |||
| 187 | (MENU-TITLE REGEXP INDEX FUNCTION ARGUMENTS...) | 187 | (MENU-TITLE REGEXP INDEX FUNCTION ARGUMENTS...) |
| 188 | with zero or more ARGUMENTS. The former format creates a simple element in | 188 | with zero or more ARGUMENTS. The former format creates a simple element in |
| 189 | the index alist when it matches; the latter creates a special element | 189 | the index alist when it matches; the latter creates a special element |
| 190 | of the form (NAME FUNCTION POSITION-MARKER ARGUMENTS...) | 190 | of the form (NAME POSITION-MARKER FUNCTION ARGUMENTS...) |
| 191 | with FUNCTION and ARGUMENTS beiong copied from `imenu-generic-expression'. | 191 | with FUNCTION and ARGUMENTS copied from `imenu-generic-expression'. |
| 192 | 192 | ||
| 193 | MENU-TITLE is a string used as the title for the submenu or nil if the | 193 | MENU-TITLE is a string used as the title for the submenu or nil if the |
| 194 | entries are not nested. | 194 | entries are not nested. |