diff options
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/speedbar.el | 6 |
2 files changed, 6 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5a30583a9dc..1e09fe0850d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,3 @@ | |||
| 1 | 2012-09-06 Chong Yidong <cyd@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/vhdl-mode.el | ||
| 4 | |||
| 5 | 2012-09-06 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de> | 1 | 2012-09-06 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de> |
| 6 | 2 | ||
| 7 | * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use | 3 | * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use |
| @@ -14,6 +10,9 @@ | |||
| 14 | 10 | ||
| 15 | * frame.el (window-system-version): Mark as obsolete. | 11 | * frame.el (window-system-version): Mark as obsolete. |
| 16 | 12 | ||
| 13 | * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses | ||
| 14 | of obsolete variable speedbar-key-map. | ||
| 15 | |||
| 17 | 2012-09-06 Juri Linkov <juri@jurta.org> | 16 | 2012-09-06 Juri Linkov <juri@jurta.org> |
| 18 | 17 | ||
| 19 | * replace.el (replace-lax-whitespace): New defcustom. | 18 | * replace.el (replace-lax-whitespace): New defcustom. |
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index 16993ce1891..90cdea63e85 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el | |||
| @@ -763,7 +763,7 @@ DIRECTORY-EXPRESSION to `speedbar-ignored-directory-expressions'." | |||
| 763 | "Non-nil means to automatically update the display. | 763 | "Non-nil means to automatically update the display. |
| 764 | When this is nil then speedbar will not follow the attached frame's directory. | 764 | When this is nil then speedbar will not follow the attached frame's directory. |
| 765 | If you want to change this while speedbar is active, either use | 765 | If you want to change this while speedbar is active, either use |
| 766 | \\[customize] or call \\<speedbar-key-map> `\\[speedbar-toggle-updates]'." | 766 | \\[customize] or call \\<speedbar-mode-map> `\\[speedbar-toggle-updates]'." |
| 767 | :group 'speedbar | 767 | :group 'speedbar |
| 768 | :initialize 'custom-initialize-default | 768 | :initialize 'custom-initialize-default |
| 769 | :set (lambda (sym val) | 769 | :set (lambda (sym val) |
| @@ -1083,7 +1083,7 @@ Return nil if it doesn't exist." | |||
| 1083 | 1083 | ||
| 1084 | (define-derived-mode speedbar-mode fundamental-mode "Speedbar" | 1084 | (define-derived-mode speedbar-mode fundamental-mode "Speedbar" |
| 1085 | "Major mode for managing a display of directories and tags. | 1085 | "Major mode for managing a display of directories and tags. |
| 1086 | \\<speedbar-key-map> | 1086 | \\<speedbar-mode-map> |
| 1087 | The first line represents the default directory of the speedbar frame. | 1087 | The first line represents the default directory of the speedbar frame. |
| 1088 | Each directory segment is a button which jumps speedbar's default | 1088 | Each directory segment is a button which jumps speedbar's default |
| 1089 | directory to that directory. Buttons are activated by clicking `\\[speedbar-click]'. | 1089 | directory to that directory. Buttons are activated by clicking `\\[speedbar-click]'. |
| @@ -1120,7 +1120,7 @@ category of tags. Click the {+} to expand the category. Jump-able | |||
| 1120 | tags start with >. Click the name of the tag to go to that position | 1120 | tags start with >. Click the name of the tag to go to that position |
| 1121 | in the selected file. | 1121 | in the selected file. |
| 1122 | 1122 | ||
| 1123 | \\{speedbar-key-map}" | 1123 | \\{speedbar-mode-map}" |
| 1124 | (save-excursion | 1124 | (save-excursion |
| 1125 | (setq font-lock-keywords nil) ;; no font-locking please | 1125 | (setq font-lock-keywords nil) ;; no font-locking please |
| 1126 | (setq truncate-lines t) | 1126 | (setq truncate-lines t) |