bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#835: 23.0.60; Quick calc is quietly disabled in view-mode


From: martin rudalics
Subject: bug#835: 23.0.60; Quick calc is quietly disabled in view-mode
Date: Sun, 31 Aug 2008 12:48:53 +0200
User-agent: Thunderbird 2.0.0.16 (Windows/20080708)

> When I do:
>
>    $ emacs -Q -f view-mode
>
> and then "C-x * Q", nothing happens. ("C-x * *" works as expected.)

Does it work if you replace

            (when (string-match "abcdefhijklnopqrstuwxyz"
                                (char-to-string (car x)))
              (define-key map (char-to-string (- (car x) ?a -1)) (cdr x)))

by something like

            (when (string-match "[a-z]" (char-to-string (car x)))
              (define-key map (upcase (char-to-string (car x))) (cdr x)))

in the definition of `calc-dispatch-map'?

martin







reply via email to

[Prev in Thread] Current Thread [Next in Thread]