emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100087: Rename some shadow.el thi


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100087: Rename some shadow.el things.
Date: Thu, 07 Oct 2010 20:05:09 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100087
committer: Glenn Morris <address@hidden>
branch nick: emacs-23
timestamp: Thu 2010-10-07 20:05:09 -0700
message:
  Rename some shadow.el things.
  
  * lisp/emacs-lisp/shadow.el (lisp-shadow): Change prefix.
  (shadows-compare-text-p): Make it an obsolete alias for...
  (load-path-shadows-compare-text): ... new name.
  (find-emacs-lisp-shadows): Update for above name change.
  (load-path-shadows-same-file-or-nonexistent): New name for the old
  shadow-same-file-or-nonexistent.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/shadow.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-10-03 19:50:14 +0000
+++ b/lisp/ChangeLog    2010-10-08 03:05:09 +0000
@@ -1,3 +1,12 @@
+2010-10-08  Glenn Morris  <address@hidden>
+
+       * emacs-lisp/shadow.el (lisp-shadow): Change prefix.
+       (shadows-compare-text-p): Make it an obsolete alias for...
+       (load-path-shadows-compare-text): ... new name.
+       (find-emacs-lisp-shadows): Update for above name change.
+       (load-path-shadows-same-file-or-nonexistent): New name for the old
+       shadow-same-file-or-nonexistent.
+
 2010-10-03  Chong Yidong  <address@hidden>
 
        * minibuffer.el (completion--some, completion--do-completion)

=== modified file 'lisp/emacs-lisp/shadow.el'
--- a/lisp/emacs-lisp/shadow.el 2010-01-13 08:35:10 +0000
+++ b/lisp/emacs-lisp/shadow.el 2010-10-08 03:05:09 +0000
@@ -53,10 +53,13 @@
 
 (defgroup lisp-shadow nil
   "Locate Emacs Lisp file shadowings."
-  :prefix "shadows-"
+  :prefix "load-path-shadows-"
   :group 'lisp)
 
-(defcustom shadows-compare-text-p nil
+(define-obsolete-variable-alias 'shadows-compare-text-p
+  'load-path-shadows-compare-text "23.3")
+
+(defcustom load-path-shadows-compare-text nil
   "If non-nil, then shadowing files are reported only if their text differs.
 This is slower, but filters out some innocuous shadowing."
   :type 'boolean
@@ -124,11 +127,11 @@
                ;; Report it unless the files are identical.
                (let ((base1 (concat (cdr orig-dir) "/" file))
                      (base2 (concat dir "/" file)))
-                 (if (not (and shadows-compare-text-p
-                               (shadow-same-file-or-nonexistent
+                 (if (not (and load-path-shadows-compare-text
+                               (load-path-shadows-same-file-or-nonexistent
                                 (concat base1 ".el") (concat base2 ".el"))
                                ;; This is a bit strict, but safe.
-                               (shadow-same-file-or-nonexistent
+                               (load-path-shadows-same-file-or-nonexistent
                                 (concat base1 ".elc") (concat base2 ".elc"))))
                      (setq shadows
                            (append shadows (list base1 base2)))))
@@ -140,7 +143,7 @@
 
 ;; Return true if neither file exists, or if both exist and have identical
 ;; contents.
-(defun shadow-same-file-or-nonexistent (f1 f2)
+(defun load-path-shadows-same-file-or-nonexistent (f1 f2)
   (let ((exists1 (file-exists-p f1))
        (exists2 (file-exists-p f2)))
     (or (and (not exists1) (not exists2))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]