]> git.eshelyaron.com Git - emacs.git/commitdiff
* calculator.el (calculator-op-or-exp): Reflow docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 25 Nov 2008 00:30:47 +0000 (00:30 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 25 Nov 2008 00:30:47 +0000 (00:30 +0000)
  (calculator-remove-zeros, calculator-repR, calculator-repL):
  Fix typos in docstrings.

lisp/ChangeLog
lisp/calculator.el

index c3fc10c4bece1a8b0d36e998d82176f1dc6f2a6b..6063ff945b003519934b6f78dc13ba5bb697722d 100644 (file)
@@ -1,3 +1,9 @@
+2008-11-25  Juanma Barranquero  <lekktu@gmail.com>
+
+       * calculator.el (calculator-op-or-exp): Reflow docstring.
+       (calculator-remove-zeros, calculator-repR, calculator-repL):
+       Fix typos in docstrings.
+
 2008-11-24  Chong Yidong  <cyd@stupidchicken.com>
 
        * log-view.el (log-view-annotate-version): Let vc-annotate manage
index def2c540cd4f3f3428e70e78d6deb1c5e0e9015f..c843a3d0290a980b9924f3296ea3086e470f852d 100644 (file)
@@ -996,8 +996,8 @@ If radix output mode is active, decrease the grouping size."
               (calculator-standard-displayer 'right (cadr disp))))))))
 
 (defun calculator-remove-zeros (numstr)
-  "Get a number string NUMSTR and remove unnecessary zeroes.
-the behavior of this function is controlled by
+  "Get a number string NUMSTR and remove unnecessary zeros.
+The behavior of this function is controlled by
 `calculator-remove-zeros'."
   (cond ((and (eq calculator-remove-zeros t)
               (string-match "\\.0+\\([eE][+-]?[0-9]*\\)?$" numstr))
@@ -1457,8 +1457,7 @@ Optional string argument KEYS will force using it as the keys entered."
 (defun calculator-op-or-exp ()
   "Either enter an operator or a digit.
 Used with +/- for entering them as digits in numbers like 1e-3 (there is
-no need for negative numbers since these are handled by unary
-operators)."
+no need for negative numbers since these are handled by unary operators)."
   (interactive)
   (if (and (not calculator-display-fragile)
            calculator-curnum
@@ -1755,7 +1754,7 @@ Used by `calculator-paste' and `get-register'."
   (calculator-quit))
 
 (defun calculator-repR (x)
-  "Repeats the last binary operation with its second argument and X.
+  "Repeat the last binary operation with its second argument and X.
 To use this, apply a binary operator (evaluate it), then call this."
   (if calculator-last-opXY
     ;; avoid rebinding calculator-last-opXY
@@ -1765,7 +1764,7 @@ To use this, apply a binary operator (evaluate it), then call this."
     x))
 
 (defun calculator-repL (x)
-  "Repeats the last binary operation with its first argument and X.
+  "Repeat the last binary operation with its first argument and X.
 To use this, apply a binary operator (evaluate it), then call this."
   (if calculator-last-opXY
     ;; avoid rebinding calculator-last-opXY
@@ -1807,7 +1806,7 @@ To use this, apply a binary operator (evaluate it), then call this."
        ;; If y is odd
        -1.0e+INF)
       (t
-       ;; 
+       ;;
        1.0e+INF)))
     (error 0.0e+NaN)))