• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/textmodes/

Lines Matching +defs:env +defs:remove

410     (easy-menu-remove reftex-mode-menu)))
629 ;; When it is a symbol, remove all other symbols
632 (setq list (reftex-remove-symbols-from-list list)))
660 (defvar reftex-env-or-mac-alist nil)
663 (defvar reftex-special-env-parsers nil)
669 (defvar reftex-label-env-list nil)
750 reftex-env-or-mac-alist
751 reftex-special-env-parsers
754 reftex-label-env-list
813 This will re-compile the configuration information and remove all
908 entry env-or-mac typekeychar typekey prefix context word
919 reftex-env-or-mac-alist nil
920 reftex-label-env-list nil
925 env-or-mac (car entry)
928 (if (null env-or-mac)
929 (setq env-or-mac ""))
967 ((symbolp env-or-mac)
969 (unless (fboundp env-or-mac)
971 env-or-mac))
973 (add-to-list 'reftex-special-env-parsers env-or-mac)
974 (setq env-or-mac (symbol-name env-or-mac)))
975 ((string-match "\\`\\\\" env-or-mac)
977 (let ((result (reftex-parse-args env-or-mac)))
978 (setq env-or-mac (or (first result) env-or-mac)
982 (if nlabel (add-to-list 'macros-with-labels env-or-mac)))
983 (if typekey (add-to-list 'reftex-label-mac-list env-or-mac)))
987 (cond ((string= env-or-mac "any"))
988 ((string= env-or-mac ""))
989 ((string= env-or-mac "section"))
991 (add-to-list 'reftex-label-env-list env-or-mac)
993 (let ((string (format "begin{%s}" env-or-mac)))
1001 (regexp-quote env-or-mac))))
1006 ;; See if this is the first definition for this env-or-mac
1007 (and (not (string= env-or-mac "any"))
1008 (not (string= env-or-mac ""))
1009 (not (assoc env-or-mac reftex-env-or-mac-alist))
1010 (push (list env-or-mac typekey context labelfmt
1012 reftex-env-or-mac-alist))
1022 ((string= "" env-or-mac) nil)
1024 (push env-or-mac (cdr cell)))
1026 (push (list typekey env-or-mac) qh-list)))))
1050 (mapconcat (lambda(env)
1051 (setq sum (+ sum (length env)))
1053 env
1055 (concat "\n " env)))
1631 (autoload 'reftex-what-special-env "reftex-parse")
2132 (defun reftex-remove-symbols-from-list (list)
2243 ;; 1. remove line breaks and extra white space
2252 ;; 4. remove leading garbage
2375 ;; Function used in pre-command-hook to remove highlights.
2376 (remove-hook 'pre-command-hook 'reftex-highlight-shall-die)