aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik1998-03-08 16:29:08 +0000
committerCarsten Dominik1998-03-08 16:29:08 +0000
commitbe456a1d880859543f0cd731eeb362c5d4f797f3 (patch)
tree119edd3a9ba4540ba50a09d0b25594788a0eeb17
parent6b94c6ad099e02cf467ac6c610597c5d6a36fcb7 (diff)
downloademacs-be456a1d880859543f0cd731eeb362c5d4f797f3.tar.gz
emacs-be456a1d880859543f0cd731eeb362c5d4f797f3.zip
1998-03-08 Carsten Dominik <cd@gnu.org>
* (reftex-offer-label-menu, reftex-select-item): removed match-everywhere interpretation.
-rw-r--r--lisp/textmodes/reftex.el16
1 files changed, 5 insertions, 11 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el
index a259a21a93f..ece02f514a6 100644
--- a/lisp/textmodes/reftex.el
+++ b/lisp/textmodes/reftex.el
@@ -755,7 +755,7 @@ COUNTERS Show counters. This just numbers the labels in the menu.
755NO-CONTEXT Non-nil means do NOT show the short context. 755NO-CONTEXT Non-nil means do NOT show the short context.
756FOLLOW Follow full context in other window. 756FOLLOW Follow full context in other window.
757SHOW-COMMENTED Show labels from regions which are commented out. 757SHOW-COMMENTED Show labels from regions which are commented out.
758MATCH-IN-TOC Searches in label menu will also match in toc lines. 758MATCH-IN-TOC Obsolete flag.
759SHOW FILES Show begin and end of included files. 759SHOW FILES Show begin and end of included files.
760 760
761Each of these flags can be set to t or nil, or to a string of type letters 761Each of these flags can be set to t or nil, or to a string of type letters
@@ -778,7 +778,7 @@ get one interactively during selection from the label menu."
778 (choice :tag "Hide short context " ,@reftex-tmp) 778 (choice :tag "Hide short context " ,@reftex-tmp)
779 (choice :tag "Follow context in other window " ,@reftex-tmp) 779 (choice :tag "Follow context in other window " ,@reftex-tmp)
780 (choice :tag "Show commented labels " ,@reftex-tmp) 780 (choice :tag "Show commented labels " ,@reftex-tmp)
781 (choice :tag "Searches match in toc lines " ,@reftex-tmp) 781 (choice :tag "Obsolete flag, Don't use. " ,@reftex-tmp)
782 (choice :tag "Show begin/end of included files" ,@reftex-tmp))) 782 (choice :tag "Show begin/end of included files" ,@reftex-tmp)))
783 783
784(defcustom reftex-vref-is-default nil 784(defcustom reftex-vref-is-default nil
@@ -1234,7 +1234,7 @@ When nil, follow-mode will be suspended for stuff in unvisited files."
1234;;; Define the formal stuff for a minor mode named RefTeX. 1234;;; Define the formal stuff for a minor mode named RefTeX.
1235;;; 1235;;;
1236 1236
1237;; This file corresponds to RefTeX version 3.21 1237;; This file corresponds to RefTeX version 3.22
1238 1238
1239(defvar reftex-mode nil 1239(defvar reftex-mode nil
1240 "Determines if RefTeX minor mode is active.") 1240 "Determines if RefTeX minor mode is active.")
@@ -2513,8 +2513,6 @@ When called with 2 C-u prefix args, disable magic word recognition."
2513 (follow (reftex-typekey-check 2513 (follow (reftex-typekey-check
2514 typekey reftex-label-menu-flags 4)) 2514 typekey reftex-label-menu-flags 4))
2515 (commented (nth 5 reftex-label-menu-flags)) 2515 (commented (nth 5 reftex-label-menu-flags))
2516 (match-everywhere (reftex-typekey-check
2517 typekey reftex-label-menu-flags 6))
2518 (prefix "") 2516 (prefix "")
2519 selection-buffers 2517 selection-buffers
2520 offset rtn key data last-data entry) 2518 offset rtn key data last-data entry)
@@ -2565,8 +2563,7 @@ When called with 2 C-u prefix args, disable magic word recognition."
2565 reftex-select-label-help 2563 reftex-select-label-help
2566 reftex-select-label-map 2564 reftex-select-label-map
2567 offset 2565 offset
2568 'reftex-select-label-callback follow 2566 'reftex-select-label-callback follow))
2569 match-everywhere))
2570 (setq key (car rtn) 2567 (setq key (car rtn)
2571 data (nth 1 rtn) 2568 data (nth 1 rtn)
2572 last-data (nth 2 rtn) 2569 last-data (nth 2 rtn)
@@ -4689,7 +4686,7 @@ bibliography statement (e.g. if it was changed)."
4689 4686
4690(defun reftex-select-item (prompt help-string keymap 4687(defun reftex-select-item (prompt help-string keymap
4691 &optional offset 4688 &optional offset
4692 call-back cb-flag match-everywhere) 4689 call-back cb-flag)
4693;; Select an item, using PROMPT. The function returns a key indicating 4690;; Select an item, using PROMPT. The function returns a key indicating
4694;; an exit status, along with a data structure indicating which item was 4691;; an exit status, along with a data structure indicating which item was
4695;; selected. 4692;; selected.
@@ -4701,8 +4698,6 @@ bibliography statement (e.g. if it was changed)."
4701;; When CALL-BACK is given, it is a function which is called with the index 4698;; When CALL-BACK is given, it is a function which is called with the index
4702;; of the element. 4699;; of the element.
4703;; CB-FLAG is the initial value of that flag. 4700;; CB-FLAG is the initial value of that flag.
4704;; When MATCH-EVERYWHERE is t, searches will also match in non-selectable
4705;; places.
4706 4701
4707 (let* (ev data last-data callback-fwd (selection-buffer (current-buffer))) 4702 (let* (ev data last-data callback-fwd (selection-buffer (current-buffer)))
4708 4703
@@ -4767,7 +4762,6 @@ bibliography statement (e.g. if it was changed)."
4767(defvar last-data) 4762(defvar last-data)
4768(defvar call-back) 4763(defvar call-back)
4769(defvar help-string) 4764(defvar help-string)
4770(defvar match-everywhere)
4771(defvar callback-fwd) 4765(defvar callback-fwd)
4772(defvar varioref) 4766(defvar varioref)
4773 4767