diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/ebrowse.el | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d234a689138..52cf1be133a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2003-02-20 Juanma Barranquero <lektu@terra.es> | ||
| 2 | |||
| 3 | * progmodes/ebrowse.el (ebrowse-show-file-name-at-point): Remove | ||
| 4 | useless check. | ||
| 5 | |||
| 1 | 2003-02-20 Andreas Schwab <schwab@suse.de> | 6 | 2003-02-20 Andreas Schwab <schwab@suse.de> |
| 2 | 7 | ||
| 3 | * info.el (Info-extract-menu-node-name): Stop if colon is | 8 | * info.el (Info-extract-menu-node-name): Stop if colon is |
diff --git a/lisp/progmodes/ebrowse.el b/lisp/progmodes/ebrowse.el index 44f5a8f0126..e75022993c3 100644 --- a/lisp/progmodes/ebrowse.el +++ b/lisp/progmodes/ebrowse.el | |||
| @@ -1295,7 +1295,6 @@ With PREFIX, insert that many filenames." | |||
| 1295 | (let ((tree (ebrowse-tree-at-point)) | 1295 | (let ((tree (ebrowse-tree-at-point)) |
| 1296 | start | 1296 | start |
| 1297 | file-name-existing) | 1297 | file-name-existing) |
| 1298 | (unless tree return) | ||
| 1299 | (beginning-of-line) | 1298 | (beginning-of-line) |
| 1300 | (skip-chars-forward " \t*a-zA-Z0-9_") | 1299 | (skip-chars-forward " \t*a-zA-Z0-9_") |
| 1301 | (setq start (point) | 1300 | (setq start (point) |