lisp/calc/calc-graph.el (calc-graph-show-dumb): Fix typo.

This commit is contained in:
Juanma Barranquero 2013-02-21 05:27:05 +01:00
parent b367ec7bc1
commit c1bf363a73
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-02-21 Juanma Barranquero <lekktu@gmail.com>
* calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
2013-02-21 Glenn Morris <rgm@gnu.org>
* files.el (basic-save-buffer): Move check for existing parent

View file

@ -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)