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:
(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.
;; 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))
;; 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)