emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-24 r117698: * lisp/startup.el (command-line): Handle


From: Glenn Morris
Subject: [Emacs-diffs] emacs-24 r117698: * lisp/startup.el (command-line): Handle nil elements in load-path.
Date: Mon, 10 Nov 2014 07:12:47 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117698
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Sun 2014-11-09 23:12:37 -0800
message:
  * lisp/startup.el (command-line): Handle nil elements in load-path.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/startup.el                startup.el-20091113204419-o5vbwnq5f7feedwu-260
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-11-08 21:29:04 +0000
+++ b/lisp/ChangeLog    2014-11-10 07:12:37 +0000
@@ -1,3 +1,7 @@
+2014-11-10  Glenn Morris  <address@hidden>
+
+       * startup.el (command-line): Handle nil elements in load-path.
+
 2014-11-08  Glenn Morris  <address@hidden>
 
        * emacs-lisp/bytecomp.el (byte-compile-report-error):

=== modified file 'lisp/startup.el'
--- a/lisp/startup.el   2014-10-23 16:32:51 +0000
+++ b/lisp/startup.el   2014-11-10 07:12:37 +0000
@@ -1319,6 +1319,7 @@
   (let (warned)
     (dolist (dir load-path)
       (and (not warned)
+          (stringp dir)
           (string-match-p "/[._]emacs\\.d/?\\'" dir)
           (string-equal (file-name-as-directory (expand-file-name dir))
                         (expand-file-name user-emacs-directory))


reply via email to

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