From 241d447bd378cbe9cb7f7c0d73ff2e9f1e48a9eb Mon Sep 17 00:00:00 2001 From: Jay Belanger Date: Sun, 13 Jul 2008 05:42:31 +0000 Subject: [PATCH] (calc-describe-key): Add angles to special key descriptions. --- doc/misc/ChangeLog | 6 ++++++ lisp/ChangeLog | 10 ++++++++++ lisp/calc/calc-help.el | 2 ++ 3 files changed, 18 insertions(+) diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index fbfd1775954..d037ee225f8 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog @@ -1,3 +1,9 @@ +2008-07-13 Vincent Belaïche + + * calc.texi (Manipulating Vectors): Clarify definition of `rnorm' and + `cnorm'. + (Arithmetic Tutorial): Simplify the verification of prime factors. + 2008-07-02 Katsumi Yamaoka * gnus.texi (Saving Articles): Mention diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e361a3873d6..cee88696b69 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,13 @@ +2008-07-13 Jay Belanger + + * calc-help.el (calc-describe-key): Add angles to special key + descriptions. + +2008-07-13 Vincent Belaïche + + * calc-help.el (calc-describe-thing): Use `re-search-forward' to + search for regexp. + 2008-07-12 Chong Yidong * simple.el (line-move-visual): Handle null pixel position diff --git a/lisp/calc/calc-help.el b/lisp/calc/calc-help.el index 7b9ac5cd1fd..79026df66a8 100644 --- a/lisp/calc/calc-help.el +++ b/lisp/calc/calc-help.el @@ -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*")) -- 2.39.2