Mercurial > emacs
changeset 21115:fea2f6a2818d
1998-03-08 Carsten Dominik <cd@gnu.org>
* (reftex-offer-label-menu, reftex-select-item): removed
match-everywhere interpretation.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Sun, 08 Mar 1998 16:29:08 +0000 |
parents | 3e8ab19bdccb |
children | ccf251830c66 |
files | lisp/textmodes/reftex.el |
diffstat | 1 files changed, 5 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/reftex.el Sun Mar 08 11:40:12 1998 +0000 +++ b/lisp/textmodes/reftex.el Sun Mar 08 16:29:08 1998 +0000 @@ -755,7 +755,7 @@ NO-CONTEXT Non-nil means do NOT show the short context. FOLLOW Follow full context in other window. SHOW-COMMENTED Show labels from regions which are commented out. -MATCH-IN-TOC Searches in label menu will also match in toc lines. +MATCH-IN-TOC Obsolete flag. SHOW FILES Show begin and end of included files. Each of these flags can be set to t or nil, or to a string of type letters @@ -778,7 +778,7 @@ (choice :tag "Hide short context " ,@reftex-tmp) (choice :tag "Follow context in other window " ,@reftex-tmp) (choice :tag "Show commented labels " ,@reftex-tmp) - (choice :tag "Searches match in toc lines " ,@reftex-tmp) + (choice :tag "Obsolete flag, Don't use. " ,@reftex-tmp) (choice :tag "Show begin/end of included files" ,@reftex-tmp))) (defcustom reftex-vref-is-default nil @@ -1234,7 +1234,7 @@ ;;; Define the formal stuff for a minor mode named RefTeX. ;;; -;; This file corresponds to RefTeX version 3.21 +;; This file corresponds to RefTeX version 3.22 (defvar reftex-mode nil "Determines if RefTeX minor mode is active.") @@ -2513,8 +2513,6 @@ (follow (reftex-typekey-check typekey reftex-label-menu-flags 4)) (commented (nth 5 reftex-label-menu-flags)) - (match-everywhere (reftex-typekey-check - typekey reftex-label-menu-flags 6)) (prefix "") selection-buffers offset rtn key data last-data entry) @@ -2565,8 +2563,7 @@ reftex-select-label-help reftex-select-label-map offset - 'reftex-select-label-callback follow - match-everywhere)) + 'reftex-select-label-callback follow)) (setq key (car rtn) data (nth 1 rtn) last-data (nth 2 rtn) @@ -4689,7 +4686,7 @@ (defun reftex-select-item (prompt help-string keymap &optional offset - call-back cb-flag match-everywhere) + call-back cb-flag) ;; Select an item, using PROMPT. The function returns a key indicating ;; an exit status, along with a data structure indicating which item was ;; selected. @@ -4701,8 +4698,6 @@ ;; When CALL-BACK is given, it is a function which is called with the index ;; of the element. ;; CB-FLAG is the initial value of that flag. -;; When MATCH-EVERYWHERE is t, searches will also match in non-selectable -;; places. (let* (ev data last-data callback-fwd (selection-buffer (current-buffer))) @@ -4767,7 +4762,6 @@ (defvar last-data) (defvar call-back) (defvar help-string) -(defvar match-everywhere) (defvar callback-fwd) (defvar varioref)