mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-17 10:06:13 +00:00
(calc-macro-edit-variable): Fix character constant.
This commit is contained in:
parent
9b80830ca2
commit
4a72380522
@ -821,7 +821,7 @@
|
||||
(defun calc-macro-edit-variable (&optional no-cmd)
|
||||
(let ((str "") ch)
|
||||
(or no-cmd (insert (symbol-name key-symbol) "\n"))
|
||||
(if (memq (MacEdit-peek-char) '(?\+ ?\- ?\* ?\/ ?\^ ?\|))
|
||||
(if (memq (MacEdit-peek-char) '(?\+ ?\- ?\* ?\/ ?^ ?\|))
|
||||
(setq str (char-to-string (MacEdit-read-char))))
|
||||
(if (and (setq ch (MacEdit-peek-char))
|
||||
(>= ch ?0) (<= ch ?9))
|
||||
|
Loading…
Reference in New Issue
Block a user