summaryrefslogtreecommitdiff
path: root/lisp/calculator.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2002-02-03 13:45:59 +0000
committerPavel Janík <Pavel@Janik.cz>2002-02-03 13:45:59 +0000
commit2188f2d4f49cfeb1917cac54cabad5b14d85eb78 (patch)
treeb19a482244db35aa3a234b76934d67f3b4276643 /lisp/calculator.el
parent0c0d3c65cfb07b762f2612d0c0abf194dff43195 (diff)
downloademacs-2188f2d4f49cfeb1917cac54cabad5b14d85eb78.tar.gz
(calculator-displayers): Doc fixes.
Diffstat (limited to 'lisp/calculator.el')
-rw-r--r--lisp/calculator.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/calculator.el b/lisp/calculator.el
index fc8f211e4b9..0aca51b2a46 100644
--- a/lisp/calculator.el
+++ b/lisp/calculator.el
@@ -4,7 +4,6 @@
;; Author: Eli Barzilay <eli@barzilay.org>
;; Keywords: tools, convenience
-;; Time-stamp: <2001-10-11 16:18:29 eli>
;; This file is part of GNU Emacs.
@@ -129,14 +128,14 @@ character, in this case the `calculator-standard-displayer' function
will be used with this character for a format string.")
(defcustom calculator-displayers
- '(((std ?n) "Standard dislpay, decimal point or scientific")
+ '(((std ?n) "Standard display, decimal point or scientific")
(calculator-eng-display "Eng display")
((std ?f) "Standard display, decimal point")
- ((std ?e) "Standard dislpay, scientific")
+ ((std ?e) "Standard display, scientific")
("%S" "Emacs printer"))
"*A list of displayers.
Each element is a list of a displayer and a description string. The
-first element is the one which is curently used, this is for the display
+first element is the one which is currently used, this is for the display
of result values not values in expressions. A displayer specification
is the same as the values that can be stored in `calculator-displayer'.
@@ -721,7 +720,7 @@ See the documentation for `calculator-mode' for more information."
(calculator)))
;;;---------------------------------------------------------------------
-;;; Operatos
+;;; Operators
(defun calculator-op-arity (op)
"Return OP's arity, 2, +1 or -1."