diff lisp/speedbar.el @ 99919:0be1dac780bb

(speedbar-restricted-move): Fix signal arguments.
author Glenn Morris <rgm@gnu.org>
date Tue, 25 Nov 2008 04:24:45 +0000
parents ee5932bf781d
children d42aff5ca541
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]+:")