diff options
author | Brad Knotwell <bknotwell@yahoo.com> | 2024-05-24 00:00:37 -0700 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2024-05-24 10:43:40 +0300 |
commit | 3291dea441f25ca14619bebe493ffb694f53cf9d (patch) | |
tree | 32894e4966763106e48a1450e88cd07a2ab3cbeb | |
parent | 350ae75f5c1c47a03560e43e8699781c04c9078a (diff) | |
download | emacs-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.texi | 4 |
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) |