summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Knotwell <bknotwell@yahoo.com>2024-05-24 00:00:37 -0700
committerEli Zaretskii <eliz@gnu.org>2024-05-24 10:43:40 +0300
commit3291dea441f25ca14619bebe493ffb694f53cf9d (patch)
tree32894e4966763106e48a1450e88cd07a2ab3cbeb
parent350ae75f5c1c47a03560e43e8699781c04c9078a (diff)
downloademacs-3291dea441f25ca14619bebe493ffb694f53cf9d.tar.gz
emacs-3291dea441f25ca14619bebe493ffb694f53cf9d.tar.bz2
emacs-3291dea441f25ca14619bebe493ffb694f53cf9d.zip
Fix example in Calc manual
* doc/misc/calc.texi (Defining Simple Commands): Fix typo in command names. (Bug#71166) Copyright-paperwork-exempt: yes
-rw-r--r--doc/misc/calc.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/misc/calc.texi b/doc/misc/calc.texi
index 75f88efe259..47c34a7e39b 100644
--- a/doc/misc/calc.texi
+++ b/doc/misc/calc.texi
@@ -32480,9 +32480,9 @@ decreases the precision.
(put 'calc-define 'inc-prec '(progn
(define-key calc-mode-map (format "Y%sI" inc-prec-base-key)
- 'increase-precision)
+ 'calc-increase-precision)
(define-key calc-mode-map (format "Y%sD" inc-prec-base-key)
- 'decrease-precision)
+ 'calc-decrease-precision)
(setq calc-Y-help-msgs
(cons (format "%s + Inc-prec, Dec-prec" inc-prec-base-key)