From: Jay Belanger Date: Fri, 14 Feb 2014 02:35:59 +0000 (-0600) Subject: lisp/calc/calc-menu.el (calc-vectors-menu): Remove menu item for X-Git-Tag: emacs-24.3.90~173^2^2~42^2~57 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2804e0bd8f9a58d8d9e77965cdb34f495ee7f292;p=emacs.git lisp/calc/calc-menu.el (calc-vectors-menu): Remove menu item for incorrect keybinding. doc/misc/calc.texi (Single-Variable Statistics): Remove mention of incorrect keybinding. --- 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 + + * calc.texi (Single-Variable Statistics): Remove mention of + incorrect keybinding. + 2014-02-12 Paul Eggert * 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 + + * calc/calc-menu.el (calc-vectors-menu): Remove menu item for + incorrect keybinding. + 2014-02-13 Daniel Colascione * 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)