aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-03-29 12:46:02 +0000
committerRichard M. Stallman2002-03-29 12:46:02 +0000
commit6b52944ef5d348053cb148de14e8211839347dbf (patch)
tree8f139bf2fb52680d8e88e79deeacea134819ceb1
parentad6ccf2919d561a65558bf377915aa35099d1262 (diff)
downloademacs-6b52944ef5d348053cb148de14e8211839347dbf.tar.gz
emacs-6b52944ef5d348053cb148de14e8211839347dbf.zip
(speedbar-default-directory-list): Made robust against deleted directories.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/speedbar.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 34b4c7fc48a..bb6131aedda 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-03-29 Eric M. Ludlam <eric@siege-engine.com>
2
3 * speedbar.el (speedbar-default-directory-list): Made robust
4 against deleted directories.
5
12002-03-28 Richard M. Stallman <rms@gnu.org> 62002-03-28 Richard M. Stallman <rms@gnu.org>
2 7
3 * dired.el (dired-toggle-marks): Renamed from dired-do-toggle. 8 * dired.el (dired-toggle-marks): Renamed from dired-do-toggle.
diff --git a/lisp/speedbar.el b/lisp/speedbar.el
index 5a01717a19b..6f63ba2469b 100644
--- a/lisp/speedbar.el
+++ b/lisp/speedbar.el
@@ -2389,8 +2389,8 @@ cell of the form ( 'DIRLIST . 'FILELIST )"
2389 (if (looking-at "[0-9]+:[ ]*<") 2389 (if (looking-at "[0-9]+:[ ]*<")
2390 (progn 2390 (progn
2391 (goto-char (match-end 0)) 2391 (goto-char (match-end 0))
2392 (speedbar-do-function-pointer))) 2392 (speedbar-do-function-pointer)))))
2393 (setq sf (cdr sf))))) 2393 (setq sf (cdr sf)))
2394 ))) 2394 )))
2395 2395
2396(defun speedbar-sort-tag-hierarchy (lst) 2396(defun speedbar-sort-tag-hierarchy (lst)