diff options
| author | Glenn Morris | 2013-09-11 14:33:58 -0400 |
|---|---|---|
| committer | Glenn Morris | 2013-09-11 14:33:58 -0400 |
| commit | da712f22f9fe22e0477a3ec1fe81da6bd49ed058 (patch) | |
| tree | deba6a3ce51a37b5f5ee14711233ffaf553c720d | |
| parent | 512e4cdc0d3e5d00ac1d5ae5b4be74d090d034c2 (diff) | |
| download | emacs-da712f22f9fe22e0477a3ec1fe81da6bd49ed058.tar.gz emacs-da712f22f9fe22e0477a3ec1fe81da6bd49ed058.zip | |
* lisp/echistory.el (electric-command-history): Remove call to deleted func.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/echistory.el | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 315e0d42e74..06c30cdb624 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-09-11 Glenn Morris <rgm@gnu.org> | 1 | 2013-09-11 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * echistory.el (electric-command-history): Remove call to deleted func. | ||
| 4 | |||
| 3 | * play/landmark.el (landmark-mode): Fix typos. | 5 | * play/landmark.el (landmark-mode): Fix typos. |
| 4 | 6 | ||
| 5 | * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec. | 7 | * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec. |
| @@ -61,6 +63,7 @@ | |||
| 61 | * chistory.el (command-history-mode-map): Rename from | 63 | * chistory.el (command-history-mode-map): Rename from |
| 62 | command-history-map. | 64 | command-history-map. |
| 63 | (command-history-mode): Use define-derived-mode. | 65 | (command-history-mode): Use define-derived-mode. |
| 66 | (Command-history-setup): Remove function. | ||
| 64 | * calc/calc.el (calc-trail-mode-map): New var. | 67 | * calc/calc.el (calc-trail-mode-map): New var. |
| 65 | (calc-trail-mode): Use define-derived-mode. | 68 | (calc-trail-mode): Use define-derived-mode. |
| 66 | (calc-trail-buffer): Set calc-main-buffer manually. | 69 | (calc-trail-buffer): Set calc-main-buffer manually. |
diff --git a/lisp/echistory.el b/lisp/echistory.el index fc576aa6484..5989c9b8445 100644 --- a/lisp/echistory.el +++ b/lisp/echistory.el | |||
| @@ -117,7 +117,6 @@ The Command History listing is recomputed each time this mode is invoked." | |||
| 117 | (save-window-excursion | 117 | (save-window-excursion |
| 118 | (list-command-history) | 118 | (list-command-history) |
| 119 | (set-buffer "*Command History*") | 119 | (set-buffer "*Command History*") |
| 120 | (Command-history-setup) | ||
| 121 | (setq major-mode 'electric-command-history) | 120 | (setq major-mode 'electric-command-history) |
| 122 | (setq mode-name "Electric History") | 121 | (setq mode-name "Electric History") |
| 123 | (use-local-map electric-history-map)) | 122 | (use-local-map electric-history-map)) |