]> git.eshelyaron.com Git - emacs.git/commitdiff
(speedbar-restricted-move): Fix signal arguments.
authorGlenn Morris <rgm@gnu.org>
Tue, 25 Nov 2008 04:24:45 +0000 (04:24 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 25 Nov 2008 04:24:45 +0000 (04:24 +0000)
lisp/speedbar.el

index 2a9f76152e9a6557966b75d2aff473c6c5fb0c3b..b3157b22025a097beee462de5174491c1138a22b 100644 (file)
@@ -1318,7 +1318,7 @@ and the existence of packages."
   "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]+:")