diff options
| author | Juanma Barranquero | 2013-02-21 05:27:05 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2013-02-21 05:27:05 +0100 |
| commit | c1bf363a732b66cdbe1c28c11f4b8fe3f064098d (patch) | |
| tree | b8b00cbd92e3419e093db3d3fe63c1f1c4eb9f51 | |
| parent | b367ec7bc10f625cb9769bfca0b8f502cd475e22 (diff) | |
| download | emacs-c1bf363a732b66cdbe1c28c11f4b8fe3f064098d.tar.gz emacs-c1bf363a732b66cdbe1c28c11f4b8fe3f064098d.zip | |
lisp/calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/calc/calc-graph.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7581b2a376c..fb9c6b25c54 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-02-21 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * calc/calc-graph.el (calc-graph-show-dumb): Fix typo. | ||
| 4 | |||
| 1 | 2013-02-21 Glenn Morris <rgm@gnu.org> | 5 | 2013-02-21 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * files.el (basic-save-buffer): Move check for existing parent | 7 | * files.el (basic-save-buffer): Move check for existing parent |
diff --git a/lisp/calc/calc-graph.el b/lisp/calc/calc-graph.el index c84c7fdf949..16fc6c09dbe 100644 --- a/lisp/calc/calc-graph.el +++ b/lisp/calc/calc-graph.el | |||
| @@ -948,7 +948,7 @@ This \"dumb\" driver will be present in Gnuplot 3.0." | |||
| 948 | (setq calc-dumb-map (make-sparse-keymap)) | 948 | (setq calc-dumb-map (make-sparse-keymap)) |
| 949 | (define-key calc-dumb-map "\n" 'scroll-up-command) | 949 | (define-key calc-dumb-map "\n" 'scroll-up-command) |
| 950 | (define-key calc-dumb-map " " 'scroll-up-command) | 950 | (define-key calc-dumb-map " " 'scroll-up-command) |
| 951 | (define-key calc-dump-map [?\S-\ ] 'scroll-down-command) | 951 | (define-key calc-dumb-map [?\S-\ ] 'scroll-down-command) |
| 952 | (define-key calc-dumb-map "\177" 'scroll-down-command) | 952 | (define-key calc-dumb-map "\177" 'scroll-down-command) |
| 953 | (define-key calc-dumb-map "<" 'scroll-left) | 953 | (define-key calc-dumb-map "<" 'scroll-left) |
| 954 | (define-key calc-dumb-map ">" 'scroll-right) | 954 | (define-key calc-dumb-map ">" 'scroll-right) |