From: Juanma Barranquero Date: Thu, 21 Feb 2013 04:27:05 +0000 (+0100) Subject: lisp/calc/calc-graph.el (calc-graph-show-dumb): Fix typo. X-Git-Tag: emacs-24.3.90~173^2~6^2~77 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c1bf363a732b66cdbe1c28c11f4b8fe3f064098d;p=emacs.git lisp/calc/calc-graph.el (calc-graph-show-dumb): Fix typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7581b2a376c..fb9c6b25c54 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-02-21 Juanma Barranquero + + * calc/calc-graph.el (calc-graph-show-dumb): Fix typo. + 2013-02-21 Glenn Morris * 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." (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)