summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/calc.texi6
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/calc/calc-menu.el13
4 files changed, 20 insertions, 9 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index a8eaa25a5e5..50c6f26ac16 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
+2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
+
+ * calc.texi (Single-Variable Statistics): Remove mention of
+ incorrect keybinding.
+
2014-02-12 Paul Eggert <eggert@cs.ucla.edu>
* texinfo.tex: Update from gnulib.
diff --git a/doc/misc/calc.texi b/doc/misc/calc.texi
index 1700aee9dc1..4010d6c8c19 100644
--- a/doc/misc/calc.texi
+++ b/doc/misc/calc.texi
@@ -20756,9 +20756,9 @@ mean, then repeating until the two values converge.
$$ a_{i+1} = { a_i + b_i \over 2 } , \qquad b_{i+1} = \sqrt{a_i b_i} $$
@end tex
-@cindex Root-mean-square
-Another commonly used mean, the RMS (root-mean-square), can be computed
-for a vector of numbers simply by using the @kbd{A} command.
+@c @cindex Root-mean-square
+@c Another commonly used mean, the RMS (root-mean-square), can be computed
+@c for a vector of numbers simply by using the @kbd{A} command.
@kindex u S
@pindex calc-vector-sdev
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c0d08e0a6e8..787fa26f30c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
+
+ * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
+ incorrect keybinding.
+
2014-02-13 Daniel Colascione <dancol@dancol.org>
* progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
diff --git a/lisp/calc/calc-menu.el b/lisp/calc/calc-menu.el
index 201dc58a68b..9dbb40aa824 100644
--- a/lisp/calc/calc-menu.el
+++ b/lisp/calc/calc-menu.el
@@ -917,12 +917,13 @@
(call-interactively 'calc-vector-geometric-mean)))
:keys "H u G"
:active (>= (calc-stack-size) 1)]
- ["RMS(1:)"
- (progn (require 'calc-arith)
- (call-interactively 'calc-abs))
- :keys "A"
- :active (>= (calc-stack-size) 1)
- :help "The root-mean-square, or quadratic mean"])
+ ;; ["RMS(1:)"
+ ;; (progn (require 'calc-arith)
+ ;; (call-interactively 'calc-abs))
+ ;; :keys "A"
+ ;; :active (>= (calc-stack-size) 1)
+ ;; :help "The root-mean-square, or quadratic mean"]
+ )
["Abbreviate long vectors"
(progn
(require 'calc-mode)