diff options
| author | Dave Love | 2000-10-12 13:39:32 +0000 |
|---|---|---|
| committer | Dave Love | 2000-10-12 13:39:32 +0000 |
| commit | a622451fdc808f526bd7b1bb49d9ca5689486b66 (patch) | |
| tree | 991d3cf971843a46f36b8f7d162b2d8714e037c4 | |
| parent | 8661c643dbe2480e3d9faaec05db96297cca5198 (diff) | |
| download | emacs-a622451fdc808f526bd7b1bb49d9ca5689486b66.tar.gz emacs-a622451fdc808f526bd7b1bb49d9ca5689486b66.zip | |
(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.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/startup.el | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 20cd22240d1..4be6a98ad08 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | 2000-10-12 Dave Love <fx@gnu.org> | 1 | 2000-10-12 Dave Love <fx@gnu.org> |
| 2 | 2 | ||
| 3 | * startup.el (normal-top-level-add-subdirs-to-load-path): Use | ||
| 4 | character class, not ASCII when matching file names. | ||
| 5 | (fancy-splash-head): Add trailing slash to URL. | ||
| 6 | (command-line): Don't require XPM support for toolbar. | ||
| 7 | |||
| 3 | * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix. | 8 | * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix. |
| 4 | (cperl-invalid-face): Revert last change. | 9 | (cperl-invalid-face): Revert last change. |
| 5 | (cperl-init-faces): Quote cperl-invalid-face. | 10 | (cperl-init-faces): Quote cperl-invalid-face. |
| @@ -102,8 +107,6 @@ | |||
| 102 | (tool-bar-add-item-from-menu): Don't favour XPM icons on mono | 107 | (tool-bar-add-item-from-menu): Don't favour XPM icons on mono |
| 103 | display. | 108 | display. |
| 104 | 109 | ||
| 105 | * startup.el (command-line): Don't require XPM support for toolbar. | ||
| 106 | |||
| 107 | * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm: | 110 | * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm: |
| 108 | * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm: | 111 | * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm: |
| 109 | * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm: | 112 | * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm: |
diff --git a/lisp/startup.el b/lisp/startup.el index a6aae252045..4e478f5882f 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -360,7 +360,7 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'." | |||
| 360 | (cons attrs normal-top-level-add-subdirs-inode-list)) | 360 | (cons attrs normal-top-level-add-subdirs-inode-list)) |
| 361 | (while contents | 361 | (while contents |
| 362 | (unless (member (car contents) '("." ".." "RCS" "CVS")) | 362 | (unless (member (car contents) '("." ".." "RCS" "CVS")) |
| 363 | (when (and (string-match "\\`[a-zA-Z0-9]" (car contents)) | 363 | (when (and (string-match "\\`[[:alnum:]]" (car contents)) |
| 364 | ;; Avoid doing a `stat' when it isn't necessary | 364 | ;; Avoid doing a `stat' when it isn't necessary |
| 365 | ;; because that can cause trouble when an NFS server | 365 | ;; because that can cause trouble when an NFS server |
| 366 | ;; is down. | 366 | ;; is down. |
| @@ -656,7 +656,6 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'." | |||
| 656 | ;; If frame was created with a tool bar, switch tool-bar-mode on. | 656 | ;; If frame was created with a tool bar, switch tool-bar-mode on. |
| 657 | (when (and (not noninteractive) | 657 | (when (and (not noninteractive) |
| 658 | (memq window-system '(x w32)) | 658 | (memq window-system '(x w32)) |
| 659 | (image-type-available-p 'xpm) | ||
| 660 | (> (frame-parameter nil 'tool-bar-lines) 0)) | 659 | (> (frame-parameter nil 'tool-bar-lines) 0)) |
| 661 | (tool-bar-mode t)) | 660 | (tool-bar-mode t)) |
| 662 | 661 | ||
| @@ -943,11 +942,11 @@ where FACE is a valid face specification, as it can be used with | |||
| 943 | 942 | ||
| 944 | ;; Insert the image with a help-echo and a keymap. | 943 | ;; Insert the image with a help-echo and a keymap. |
| 945 | (let ((map (make-sparse-keymap)) | 944 | (let ((map (make-sparse-keymap)) |
| 946 | (help-echo "mouse-2: browse http://www.gnu.org")) | 945 | (help-echo "mouse-2: browse http://www.gnu.org/")) |
| 947 | (define-key map [mouse-2] | 946 | (define-key map [mouse-2] |
| 948 | (lambda () | 947 | (lambda () |
| 949 | (interactive) | 948 | (interactive) |
| 950 | (browse-url "http://www.gnu.org") | 949 | (browse-url "http://www.gnu.org/") |
| 951 | (throw 'exit nil))) | 950 | (throw 'exit nil))) |
| 952 | (define-key map [down-mouse-2] 'ignore) | 951 | (define-key map [down-mouse-2] 'ignore) |
| 953 | (define-key map [up-mouse-2] 'ignore) | 952 | (define-key map [up-mouse-2] 'ignore) |