diff lisp/emacs-lisp/shadow.el @ 110806:62865a8e7f58

Rename shadow-mode. * lisp/emacs-lisp/shadow.el (shadow-font-lock-keywords) (load-path-shadows-mode, list-load-path-shadows): Rename shadow-mode to load-path-shadows-mode, update references.
author Glenn Morris <rgm@gnu.org>
date Thu, 07 Oct 2010 10:17:18 -0700
parents 2343b29e1e8d
children 3c97e9b7b34f
line wrap: on
line diff
--- a/lisp/emacs-lisp/shadow.el	Thu Oct 07 12:31:39 2010 +0000
+++ b/lisp/emacs-lisp/shadow.el	Thu Oct 07 10:17:18 2010 -0700
@@ -156,9 +156,9 @@
   `((,(format "hides \\(%s.*\\)"
 	      (file-name-directory (locate-library "simple.el")))
      . (1 font-lock-warning-face)))
-  "Keywords to highlight in `shadow-mode'.")
+  "Keywords to highlight in `load-path-shadows-mode'.")
 
-(define-derived-mode shadow-mode fundamental-mode "Shadow"
+(define-derived-mode load-path-shadows-mode fundamental-mode "LP-Shadows"
   "Major mode for load-path shadows buffer."
   (set (make-local-variable 'font-lock-defaults)
        '((shadow-font-lock-keywords)))
@@ -263,7 +263,7 @@
 	      (let ((string (buffer-string)))
 		(with-current-buffer (get-buffer-create "*Shadows*")
 		  (display-buffer (current-buffer))
-		  (shadow-mode)	    ; run after-change-major-mode-hook
+		  (load-path-shadows-mode) ; run after-change-major-mode-hook
 		  (let ((inhibit-read-only t))
 		    (erase-buffer)
 		    (insert string)