diff options
| author | Juanma Barranquero | 2003-01-27 08:50:00 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-01-27 08:50:00 +0000 |
| commit | b2f6a2ab27e8b395c81bb1463825b1152ad496e2 (patch) | |
| tree | d89aac37645da2229f915da0d4d023fda2e3355c | |
| parent | 82539cb7d299e3872e18939104b45789336a1ba9 (diff) | |
| download | emacs-b2f6a2ab27e8b395c81bb1463825b1152ad496e2.tar.gz emacs-b2f6a2ab27e8b395c81bb1463825b1152ad496e2.zip | |
(ebrowse-draw-tree-fn): Fix typo.
| -rw-r--r-- | lisp/ChangeLog | 16 | ||||
| -rw-r--r-- | lisp/progmodes/ebrowse.el | 2 |
2 files changed, 16 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 35ec7379ed7..753a0b67021 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2003-01-27 Juanma Barranquero <lektu@terra.es> | ||
| 2 | |||
| 3 | * filesets.el (filesets-file-open): Fix typo. | ||
| 4 | |||
| 5 | * vcursor.el (vcursor-disable): Likewise. | ||
| 6 | |||
| 7 | * eshell/esh-cmd.el (eshell-separate-commands): Likewise. | ||
| 8 | |||
| 9 | * progmodes/cc-styles.el (c-make-styles-buffer-local): Likewise. | ||
| 10 | |||
| 11 | * progmodes/cc-vars.el (c-offsets-alist): Likewise. | ||
| 12 | |||
| 13 | * progmodes/ebrowse.el (ebrowse-draw-tree-fn): Likewise. | ||
| 14 | |||
| 1 | 2003-01-26 Martin Stjernholm <bug-cc-mode@gnu.org> | 15 | 2003-01-26 Martin Stjernholm <bug-cc-mode@gnu.org> |
| 2 | 16 | ||
| 3 | * progmodes/cc-vars.el, progmodes/cc-mode.el | 17 | * progmodes/cc-vars.el, progmodes/cc-mode.el |
| @@ -42,7 +56,7 @@ | |||
| 42 | 56 | ||
| 43 | 2003-01-25 Richard M. Stallman <rms@gnu.org> | 57 | 2003-01-25 Richard M. Stallman <rms@gnu.org> |
| 44 | 58 | ||
| 45 | * emacs-lisp/bytecomp.el (byte-compile-file-form-custom-declare-variable): | 59 | * emacs-lisp/bytecomp.el (byte-compile-file-form-custom-declare-variable): |
| 46 | Compile any lambda-expressions among the args. | 60 | Compile any lambda-expressions among the args. |
| 47 | 61 | ||
| 48 | * view.el (view-mode): Doc fix. | 62 | * view.el (view-mode): Doc fix. |
diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el index 9ee70a5d48a..89b8404c354 100644 --- a/lisp/progmodes/ebrowse.el +++ b/lisp/progmodes/ebrowse.el | |||
| @@ -1829,7 +1829,7 @@ TREE denotes the class shown." | |||
| 1829 | 1829 | ||
| 1830 | 1830 | ||
| 1831 | (defun* ebrowse-draw-tree-fn (&aux stack1 stack2 start) | 1831 | (defun* ebrowse-draw-tree-fn (&aux stack1 stack2 start) |
| 1832 | "Display a single class and recursively it's subclasses. | 1832 | "Display a single class and recursively its subclasses. |
| 1833 | This function may look weird, but this is faster than recursion." | 1833 | This function may look weird, but this is faster than recursion." |
| 1834 | (setq stack1 (make-list (length ebrowse--tree) 0) | 1834 | (setq stack1 (make-list (length ebrowse--tree) 0) |
| 1835 | stack2 (copy-sequence ebrowse--tree)) | 1835 | stack2 (copy-sequence ebrowse--tree)) |