unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* lisp-imenu-generic-expression
@ 2005-12-02 13:21 martin rudalics
  0 siblings, 0 replies; only message in thread
From: martin rudalics @ 2005-12-02 13:21 UTC (permalink / raw)


`lisp-imenu-generic-expression' doesn't return names of length one or
names starting with a symbol constituent.  The patch below should take
care of them.


*** lisp-mode.el	Fri Dec  2 10:16:24 2005
--- lisp-mode.el	Fri Dec  2 14:10:04 2005
***************
*** 102,108 ****
   				"defsetf" "define-setf-expander"
   				"define-method-combination"
   				"defgeneric" "defmethod") t))
! 			   "\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)"))
   	 2)
      (list (purecopy "Variables")
   	 (purecopy (concat "^\\s-*("
--- 102,108 ----
   				"defsetf" "define-setf-expander"
   				"define-method-combination"
   				"defgeneric" "defmethod") t))
! 			   "\\s-+\\(\\(\\sw\\|\\s_\\)+\\)"))
   	 2)
      (list (purecopy "Variables")
   	 (purecopy (concat "^\\s-*("
***************
*** 110,116 ****
   			     (regexp-opt
   			      '("defvar" "defconst" "defconstant" "defcustom"
   				"defparameter" "define-symbol-macro") t))
! 			   "\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)"))
   	 2)
      (list (purecopy "Types")
   	 (purecopy (concat "^\\s-*("
--- 110,116 ----
   			     (regexp-opt
   			      '("defvar" "defconst" "defconstant" "defcustom"
   				"defparameter" "define-symbol-macro") t))
! 			   "\\s-+\\(\\(\\sw\\|\\s_\\)+\\)"))
   	 2)
      (list (purecopy "Types")
   	 (purecopy (concat "^\\s-*("
***************
*** 119,125 ****
   			      '("defgroup" "deftheme" "deftype" "defstruct"
   				"defclass" "define-condition" "define-widget"
   				"defface" "defpackage") t))
! 			   "\\s-+'?\\(\\sw\\(\\sw\\|\\s_\\)+\\)"))
   	 2))

     "Imenu generic expression for Lisp mode.  See `imenu-generic-expression'.")
--- 119,125 ----
   			      '("defgroup" "deftheme" "deftype" "defstruct"
   				"defclass" "define-condition" "define-widget"
   				"defface" "defpackage") t))
! 			   "\\s-+'?\\(\\(\\sw\\|\\s_\\)+\\)"))
   	 2))

     "Imenu generic expression for Lisp mode.  See `imenu-generic-expression'.")

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

only message in thread, other threads:[~2005-12-02 13:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-02 13:21 lisp-imenu-generic-expression martin rudalics

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).