(calc-describe-key): Add angles to special key descriptions.
authorJay Belanger <jay.p.belanger@gmail.com>
Sun, 13 Jul 2008 05:42:31 +0000 (05:42 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Sun, 13 Jul 2008 05:42:31 +0000 (05:42 +0000)
doc/misc/ChangeLog
lisp/ChangeLog
lisp/calc/calc-help.el

index fbfd177..d037ee2 100644 (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
index e361a38..cee8869 100644 (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
index 7b9ac5c..79026df 100644 (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*"))