diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2013-02-21 05:27:05 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2013-02-21 05:27:05 +0100 |
commit | c1bf363a732b66cdbe1c28c11f4b8fe3f064098d (patch) | |
tree | b8b00cbd92e3419e093db3d3fe63c1f1c4eb9f51 /lisp/calc | |
parent | b367ec7bc10f625cb9769bfca0b8f502cd475e22 (diff) | |
download | emacs-c1bf363a732b66cdbe1c28c11f4b8fe3f064098d.tar.gz |
lisp/calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-graph.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (setq calc-dumb-map (make-sparse-keymap)) (define-key calc-dumb-map "\n" 'scroll-up-command) (define-key calc-dumb-map " " 'scroll-up-command) - (define-key calc-dump-map [?\S-\ ] 'scroll-down-command) + (define-key calc-dumb-map [?\S-\ ] 'scroll-down-command) (define-key calc-dumb-map "\177" 'scroll-down-command) (define-key calc-dumb-map "<" 'scroll-left) (define-key calc-dumb-map ">" 'scroll-right) |