aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Belanger2008-07-13 05:42:31 +0000
committerJay Belanger2008-07-13 05:42:31 +0000
commit241d447bd378cbe9cb7f7c0d73ff2e9f1e48a9eb (patch)
tree218be366b60727ece032e7fec3b03de9d80fc8fc
parenta8b14149708453f8cc701202d2d6b2cf7ffc4e1f (diff)
downloademacs-241d447bd378cbe9cb7f7c0d73ff2e9f1e48a9eb.tar.gz
emacs-241d447bd378cbe9cb7f7c0d73ff2e9f1e48a9eb.zip
(calc-describe-key): Add angles to special key descriptions.
-rw-r--r--doc/misc/ChangeLog6
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/calc/calc-help.el2
3 files changed, 18 insertions, 0 deletions
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 @@
12008-07-13 Vincent Belaïche <vincent.b.1@hotmail.fr>
2
3 * calc.texi (Manipulating Vectors): Clarify definition of `rnorm' and
4 `cnorm'.
5 (Arithmetic Tutorial): Simplify the verification of prime factors.
6
12008-07-02 Katsumi Yamaoka <yamaoka@jpl.org> 72008-07-02 Katsumi Yamaoka <yamaoka@jpl.org>
2 8
3 * gnus.texi (Saving Articles): Mention 9 * 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 @@
12008-07-13 Jay Belanger <jay.p.belanger@gmail.com>
2
3 * calc-help.el (calc-describe-key): Add angles to special key
4 descriptions.
5
62008-07-13 Vincent Belaïche <vincent.b.1@hotmail.fr>
7
8 * calc-help.el (calc-describe-thing): Use `re-search-forward' to
9 search for regexp.
10
12008-07-12 Chong Yidong <cyd@stupidchicken.com> 112008-07-12 Chong Yidong <cyd@stupidchicken.com>
2 12
3 * simple.el (line-move-visual): Handle null pixel position 13 * 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."
175 (setq desc (concat "M-" (substring desc 4)))) 175 (setq desc (concat "M-" (substring desc 4))))
176 (while (string-match "^M-# \\(ESC \\|C-\\)" desc) 176 (while (string-match "^M-# \\(ESC \\|C-\\)" desc)
177 (setq desc (concat "M-# " (substring desc (match-end 0))))) 177 (setq desc (concat "M-# " (substring desc (match-end 0)))))
178 (if (string-match "\\(DEL\\|\\LFD\\|RET\\|SPC\\|TAB\\)" desc)
179 (setq desc (replace-match "<\\&>" nil nil desc)))
178 (if briefly 180 (if briefly
179 (let ((msg (save-excursion 181 (let ((msg (save-excursion
180 (set-buffer (get-buffer-create "*Calc Summary*")) 182 (set-buffer (get-buffer-create "*Calc Summary*"))