]> git.eshelyaron.com Git - emacs.git/commitdiff
(reftex-pop-to-bibtex-entry): Preserve point when displaying a bibtex
authorCarsten Dominik <dominik@science.uva.nl>
Tue, 7 Nov 2006 08:27:16 +0000 (08:27 +0000)
committerCarsten Dominik <dominik@science.uva.nl>
Tue, 7 Nov 2006 08:27:16 +0000 (08:27 +0000)
cross reference in the echo area.

lisp/textmodes/reftex-cite.el

index ced44757ffd1b5af4d481ef56018656d6a0b61bc..a83c790f07688851a041d22ce650e7c7e5399494 100644 (file)
   ;; If MARK-TO-KILL is non-nil, mark new buffer to kill.
   ;; If HIGHLIGHT is non-nil, highlight the match.
   ;; If ITEM in non-nil, search for bibitem instead of database entry.
-  ;; If RETURN is non-nil, just return the entry.
+  ;; If RETURN is non-nil, just return the entry and restore point.
 
   (let* ((re
           (if item 
             (concat "@[a-zA-Z]+[ \t\n\r]*[{(][ \t\n\r]*" (regexp-quote key)
                     "[, \t\r\n}]")))
          (buffer-conf (current-buffer))
-         file buf pos)
+         file buf pos oldpos)
 
     (catch 'exit
       (while file-list
         (unless (setq buf (reftex-get-file-buffer-force file mark-to-kill))
           (error "No such file %s" file))
         (set-buffer buf)
+       (setq oldpos (point))
         (widen)
         (goto-char (point-min))
-        (when (re-search-forward re nil t)
+        (if (not (re-search-forward re nil t))
+           (goto-char oldpos) ;; restore previous position of point
           (goto-char (match-beginning 0))
           (setq pos (point))
           (when return
             (if item (goto-char (match-end 0)))
             (setq return (buffer-substring 
                           (point) (reftex-end-of-bib-entry item)))
+           (goto-char oldpos) ;; restore point.
             (set-buffer buffer-conf)
             (throw 'exit return))
           (switch-to-buffer-other-window buf)