1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-03 20:24:29 +00:00

(calc-describe-key): Add angles to special key descriptions.

This commit is contained in:
Jay Belanger 2008-07-13 05:42:31 +00:00
parent a8b1414970
commit 241d447bd3
3 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-07-13 Vincent Belaïche <vincent.b.1@hotmail.fr>
* calc.texi (Manipulating Vectors): Clarify definition of `rnorm' and
`cnorm'.
(Arithmetic Tutorial): Simplify the verification of prime factors.
2008-07-02 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus.texi (Saving Articles): Mention

View File

@ -1,3 +1,13 @@
2008-07-13 Jay Belanger <jay.p.belanger@gmail.com>
* calc-help.el (calc-describe-key): Add angles to special key
descriptions.
2008-07-13 Vincent Belaïche <vincent.b.1@hotmail.fr>
* calc-help.el (calc-describe-thing): Use `re-search-forward' to
search for regexp.
2008-07-12 Chong Yidong <cyd@stupidchicken.com>
* simple.el (line-move-visual): Handle null pixel position

View File

@ -175,6 +175,8 @@ C-w Describe how there is no warranty for Calc."
(setq desc (concat "M-" (substring desc 4))))
(while (string-match "^M-# \\(ESC \\|C-\\)" desc)
(setq desc (concat "M-# " (substring desc (match-end 0)))))
(if (string-match "\\(DEL\\|\\LFD\\|RET\\|SPC\\|TAB\\)" desc)
(setq desc (replace-match "<\\&>" nil nil desc)))
(if briefly
(let ((msg (save-excursion
(set-buffer (get-buffer-create "*Calc Summary*"))