diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2007-09-26 06:00:47 +0000 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2007-09-26 06:00:47 +0000 |
commit | 0f3955d99ce7d1b50bfc8b7b5a5152d871f9e44c (patch) | |
tree | 84c87fd81bcc32236aa21c29e683c2eafe7d9743 | |
parent | 567b9191e973efcb6f06718f5bfcc3f4cbc6a6b8 (diff) | |
download | emacs-0f3955d99ce7d1b50bfc8b7b5a5152d871f9e44c.tar.gz |
(calc-convert-units, calc-convert-temperature): Remove unnecessary
colons.
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/calc/calc-units.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index aa6c1a1cbf8..1c8bc602b99 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-09-26 Jay Belanger <jay.p.belanger@gmail.com> + + * calc/calc-units.el (calc-convert-units) + (calc-convert-temperature): Remove unnecessary colons. + 2007-09-26 Bastien Guerry <bzg@altern.org> * org-export-latex.el (org-export-latex-tables-verbatim): New diff --git a/lisp/calc/calc-units.el b/lisp/calc/calc-units.el index 14ab00791d3..839bac77581 100644 --- a/lisp/calc/calc-units.el +++ b/lisp/calc/calc-units.el @@ -412,7 +412,7 @@ If EXPR is nil, return nil." "New units") (if defunits (concat - " (default: " + " (default " defunits "): ") ": ")))) @@ -484,7 +484,7 @@ If EXPR is nil, return nil." ", new units") "New temperature units") (if defunits - (concat " (default: " + (concat " (default " defunits "): ") ": ")))))) |