changeset 99919:0be1dac780bb

(speedbar-restricted-move): Fix signal arguments.
author Glenn Morris <rgm@gnu.org>
date Tue, 25 Nov 2008 04:24:45 +0000
parents d6617fc229b7
children c7bff6d07d9c
files lisp/speedbar.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/speedbar.el	Tue Nov 25 04:23:59 2008 +0000
+++ b/lisp/speedbar.el	Tue Nov 25 04:24:45 2008 +0000
@@ -1318,7 +1318,7 @@
   "Move to the next ARGth line in a speedbar buffer at the same depth.
 This means that movement is restricted to a subnode, and that siblings
 of intermediate nodes are skipped."
-  (if (not (numberp arg)) (signal 'wrong-type-argument (list arg 'numberp)))
+  (if (not (numberp arg)) (signal 'wrong-type-argument (list 'numberp arg)))
   ;; First find the extent for which we are allowed to move.
   (let ((depth (save-excursion (beginning-of-line)
 			       (if (looking-at "[0-9]+:")