1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-03 08:30:09 +00:00

(calc-over-notation): Replaced `completing-read' with

`interactive "s"'.
This commit is contained in:
Jay Belanger 2004-11-01 20:08:56 +00:00
parent 12e46b0083
commit 97d8398874
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2004-11-01 Jay Belanger <belanger@truman.edu>
* calc/calc-frac.el (calc-over-notation): Replaced
`completing-read' with `interactive "s"'.
2004-11-2 Pavel Kobiakov <pk_at_work@yahoo.com>
* progmodes/flymake.el (flymake-err-line-patterns): Use

View File

@ -54,12 +54,7 @@
(defun calc-over-notation (fmt)
(interactive
(list
(completing-read "Fraction separator: " (mapcar (lambda (s)
(cons s 0))
'(":" "::" "/" "//" ":/"))
nil t)))
(interactive "sFraction separator: ")
(calc-wrapper
(if (string-match "\\`\\([^ 0-9][^ 0-9]?\\)[0-9]*\\'" fmt)
(let ((n nil))