]> git.eshelyaron.com Git - emacs.git/commitdiff
(normal-top-level-add-subdirs-to-load-path): Use
authorDave Love <fx@gnu.org>
Thu, 12 Oct 2000 13:39:32 +0000 (13:39 +0000)
committerDave Love <fx@gnu.org>
Thu, 12 Oct 2000 13:39:32 +0000 (13:39 +0000)
character class, not ASCII when matching file names.
(fancy-splash-head): Add trailing slash to URL.
(command-line): Don't require XPM support for toolbar.

lisp/ChangeLog
lisp/startup.el

index 20cd22240d148715b264a90ff5c9f7eb6f7d03fe..4be6a98ad081b379e192ed88964f87f5dbbdfff8 100644 (file)
@@ -1,5 +1,10 @@
 2000-10-12  Dave Love  <fx@gnu.org>
 
+       * startup.el (normal-top-level-add-subdirs-to-load-path): Use
+       character class, not ASCII when matching file names.
+       (fancy-splash-head): Add trailing slash to URL.
+       (command-line): Don't require XPM support for toolbar.
+
        * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
        (cperl-invalid-face): Revert last change.
        (cperl-init-faces): Quote cperl-invalid-face.
        (tool-bar-add-item-from-menu): Don't favour XPM icons on mono
        display.
 
-       * startup.el (command-line): Don't require XPM support for toolbar.
-
        * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
        * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
        * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
index a6aae252045db2f407c41e807e0d573009f3307d..4e478f5882f5f72454d29f200312e4c3b3f2dbf1 100644 (file)
@@ -360,7 +360,7 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
                (cons attrs normal-top-level-add-subdirs-inode-list))
          (while contents
            (unless (member (car contents) '("." ".." "RCS" "CVS"))
-             (when (and (string-match "\\`[a-zA-Z0-9]" (car contents))
+             (when (and (string-match "\\`[[:alnum:]]" (car contents))
                         ;; Avoid doing a `stat' when it isn't necessary
                         ;; because that can cause trouble when an NFS server
                         ;; is down.
@@ -656,7 +656,6 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
   ;; If frame was created with a tool bar, switch tool-bar-mode on.
   (when (and (not noninteractive)
             (memq window-system '(x w32))
-            (image-type-available-p 'xpm)
             (> (frame-parameter nil 'tool-bar-lines) 0))
     (tool-bar-mode t))
 
@@ -943,11 +942,11 @@ where FACE is a valid face specification, as it can be used with
 
        ;; Insert the image with a help-echo and a keymap.
        (let ((map (make-sparse-keymap))
-             (help-echo "mouse-2: browse http://www.gnu.org"))
+             (help-echo "mouse-2: browse http://www.gnu.org/"))
          (define-key map [mouse-2]
            (lambda ()
              (interactive)
-             (browse-url "http://www.gnu.org")
+             (browse-url "http://www.gnu.org/")
              (throw 'exit nil)))
          (define-key map [down-mouse-2] 'ignore)
          (define-key map [up-mouse-2] 'ignore)