diff options
author | Carsten Dominik <dominik@science.uva.nl> | 1998-03-09 16:01:20 +0000 |
---|---|---|
committer | Carsten Dominik <dominik@science.uva.nl> | 1998-03-09 16:01:20 +0000 |
commit | 576827ffbeada6e58e0104a99ccb7edef58d81e3 (patch) | |
tree | 07aa5ae4316e2e1bfe26346c0bdd34f156382ee3 /lisp/textmodes/reftex.el | |
parent | a0d8840a5a9348196336e45419bb4c4ebfd4b905 (diff) | |
download | emacs-576827ffbeada6e58e0104a99ccb7edef58d81e3.tar.gz emacs-576827ffbeada6e58e0104a99ccb7edef58d81e3.tar.bz2 emacs-576827ffbeada6e58e0104a99ccb7edef58d81e3.zip |
(reftex-nicify-text): make a new " " string each time.
(reftex-what-macro): Make sure, `reftex-section-regexp' is available.
Diffstat (limited to 'lisp/textmodes/reftex.el')
-rw-r--r-- | lisp/textmodes/reftex.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index ece02f514a6..02fa410a42f 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el @@ -1234,7 +1234,7 @@ When nil, follow-mode will be suspended for stuff in unvisited files." ;;; Define the formal stuff for a minor mode named RefTeX. ;;; -;; This file corresponds to RefTeX version 3.22 +;; This file corresponds to RefTeX version 3.21.0.3 (defvar reftex-mode nil "Determines if RefTeX minor mode is active.") @@ -3450,7 +3450,7 @@ When called with 2 C-u prefix args, disable magic word recognition." ;; limit length (cond ((> (length text) 100) (substring text 0 100)) - ((= (length text) 0) " ") + ((= (length text) 0) (make-string 1 ?\ )) (t text))) (defun reftex-typekey-check (typekey conf-variable &optional n) @@ -5039,6 +5039,7 @@ With argument, actually select the window showing the cross reference." ;; argument. As RefTeX cannot know this, the string "bb" would still be ;; considered an argument of macro \macro. + (unless reftex-section-regexp (reftex-compute-ref-cite-tables)) (catch 'exit (if (null which) (throw 'exit nil)) (let ((bound (or bound (save-excursion (re-search-backward |