unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Patch: make navigation work as documented in easy-mmode derived modes
@ 2006-11-27 15:44 Andreas Seltenreich
  0 siblings, 0 replies; only message in thread
From: Andreas Seltenreich @ 2006-11-27 15:44 UTC (permalink / raw)


I just noticed that prefix args didn't work when navigating in
diff-mode, contrary to the docstrings of the functions.

The attached patch fixes it for me.

regards,
andreas

Index: lisp/ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.10357
diff -u -0 -r1.10357 ChangeLog
--- lisp/ChangeLog	27 Nov 2006 14:35:47 -0000	1.10357
+++ lisp/ChangeLog	27 Nov 2006 15:21:37 -0000
@@ -0,0 +1,6 @@
+2006-11-27  Andreas Seltenreich  <uwi7@rz.uni-karlsruhe.de>
+
+	* emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Fix
+	interactive spec of the functions getting defined to make them
+	work as documented.
+
Index: lisp/emacs-lisp/easy-mmode.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/emacs-lisp/easy-mmode.el,v
retrieving revision 1.78
diff -u -r1.78 easy-mmode.el
--- lisp/emacs-lisp/easy-mmode.el	31 Aug 2006 23:14:26 -0000	1.78
+++ lisp/emacs-lisp/easy-mmode.el	27 Nov 2006 15:22:45 -0000
@@ -500,7 +500,7 @@
 		    ,(concat "^No \\(previous\\|next\\) " (regexp-quote name)))
        (defun ,next-sym (&optional count)
 	 ,(format "Go to the next COUNT'th %s." name)
-	 (interactive)
+	 (interactive "p")
 	 (unless count (setq count 1))
 	 (if (< count 0) (,prev-sym (- count))
 	   (if (looking-at ,re) (setq count (1+ count)))
@@ -523,7 +523,7 @@
        (put ',next-sym 'definition-name ',base)
        (defun ,prev-sym (&optional count)
 	 ,(format "Go to the previous COUNT'th %s" (or name base-name))
-	 (interactive)
+	 (interactive "p")
 	 (unless count (setq count 1))
 	 (if (< count 0) (,next-sym (- count))
            (let (was-narrowed)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-11-27 15:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-27 15:44 Patch: make navigation work as documented in easy-mmode derived modes Andreas Seltenreich

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).