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

Lines Matching +defs:entry +defs:format

90                    (format reftex-find-label-regexp-format
93 (format reftex-find-label-regexp-format2
151 (let* ((entry (assoc environment reftex-env-or-mac-alist))
152 (typekey (nth 1 entry))
153 (format (nth 3 entry))
157 (when (and (or (nth 5 entry) (nth 5 entry1))
160 (setq naked t format "%s"))
229 ((setq entry (assoc label
233 (format "Label '%s' exists. Use anyway? " label))
265 (if reftex-format-label-function
266 (funcall reftex-format-label-function label format)
267 (format format label)))
405 m , - + Mark entry. `,-+' also assign a separator.
439 (reftex-format-ref-function reftex-format-ref-function)
449 ;; If the first entry is the symbol 'concat, concat all labels.
455 form (or (cdr (assoc type reftex-typekey-to-format-alist))
479 ;; do we have a special format?
480 (setq reftex-format-ref-function
482 ((string= refstyle "\\vref") 'reftex-format-vref)
483 ((string= refstyle "\\fref") 'reftex-format-fref)
484 ((string= refstyle "\\Fref") 'reftex-format-Fref)
485 (t reftex-format-ref-function)))
489 (if reftex-format-ref-function
490 (funcall reftex-format-ref-function label form)
491 (format form label label)))
553 (setq mode-line-format
706 ;; DATA is an entry from the docstruct list.
739 (setq re (format reftex-find-label-regexp-format (regexp-quote label)))
750 (format reftex-find-label-regexp-format2
755 (reftex-show-entry (match-beginning 3) (match-end 3))
763 (defun reftex-show-entry (beg-hlt end-hlt)
764 ;; Show entry if point is hidden
804 (let ((reftex-format-ref-function 'reftex-format-vref))
809 (let ((reftex-format-ref-function 'reftex-format-fref)
816 (let ((reftex-format-ref-function 'reftex-format-Fref)
821 (defun reftex-format-vref (label fmt)
824 (format fmt label label))
825 (defun reftex-format-Fref (label def-fmt)
826 (format "\\Fref{%s}" label))
827 (defun reftex-format-fref (label def-fmt)
828 (format "\\fref{%s}" label))