diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-03-29 12:46:02 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-03-29 12:46:02 +0000 |
commit | 6b52944ef5d348053cb148de14e8211839347dbf (patch) | |
tree | 8f139bf2fb52680d8e88e79deeacea134819ceb1 /lisp/speedbar.el | |
parent | ad6ccf2919d561a65558bf377915aa35099d1262 (diff) | |
download | emacs-6b52944ef5d348053cb148de14e8211839347dbf.tar.gz |
(speedbar-default-directory-list): Made robust against deleted directories.
Diffstat (limited to 'lisp/speedbar.el')
-rw-r--r-- | lisp/speedbar.el | 4 |
1 files changed, 2 insertions, 2 deletions
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 )" (if (looking-at "[0-9]+:[ ]*<") (progn (goto-char (match-end 0)) - (speedbar-do-function-pointer))) - (setq sf (cdr sf))))) + (speedbar-do-function-pointer))))) + (setq sf (cdr sf))) ))) (defun speedbar-sort-tag-hierarchy (lst) |