diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-07-13 18:40:22 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-07-13 18:40:22 +0000 |
commit | be46e8c857fe5d03f355b0f81c64dedfcc04984c (patch) | |
tree | 72345435ec4bbd88406b26c9a8f83575a7e29776 /lisp/allout.el | |
parent | 7171b90f5cb1db86b3abd3ee446c0d6d3ab490f8 (diff) | |
download | emacs-be46e8c857fe5d03f355b0f81c64dedfcc04984c.tar.gz |
(outline-resolve-xref): Do not mistake a blank line
following an xref (@) bullet as part of the rerefenced file name.
Diffstat (limited to 'lisp/allout.el')
-rw-r--r-- | lisp/allout.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/allout.el b/lisp/allout.el index db41d4af169..9d3bfc6830e 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -3120,8 +3120,7 @@ by pops to non-distinctive yanks. Bug..." (let (file-name) (save-excursion (let* ((text-start outline-recent-prefix-end) - (heading-end (progn (outline-pre-next-preface) - (point)))) + (heading-end (progn (end-of-line) (point)))) (goto-char text-start) (setq file-name (if (re-search-forward "\\s-\\(\\S-*\\)" heading-end t) |