• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching +defs:fontify +defs:visited

47   "Stack of Info nodes user has visited.
51 "Stack of Info nodes user has visited with `Info-history-back' command.
55 "List of all Info nodes user has visited.
136 (defface info-xref-visited
137 '((t :inherit (link-visited info-xref)))
138 "Face for visited Info cross-references."
142 (defcustom Info-fontify-visited-nodes t
143 "*Non-nil to fontify references to visited nodes in `info-xref-visited' face."
148 (defcustom Info-fontify-maximum-menu-size 100000
149 "*Maximum size of menu to fontify if `font-lock-mode' is non-nil.
269 ;; Try to obey obsolete Info-fontify settings.
270 (unless (and (boundp 'Info-fontify) (null Info-fontify))
1398 (if (not (eq Info-fontify-maximum-menu-size nil))
1399 (Info-fontify-node))
1598 "If this node has been visited, restore the point value when we left."
1947 "Go back in the history to the last node visited."
1967 "Go forward in the history of visited nodes."
1988 "Go to a node with a menu of visited nodes."
2037 (Info-fontify-visited-nodes nil))
2044 (Info-fontify-node)
2721 "Alist of cached index node names of visited Info files.
2744 Info-history Info-history-list Info-fontify-maximum-menu-size
2775 Info-history Info-history-list Info-fontify-maximum-menu-size
2957 (let ((Info-fontify-maximum-menu-size nil))
3257 :help "Go to menu of visited nodes"]
3416 \\[Info-history] Go to menu of visited nodes.
3669 ;; visited by Info-find-emacs-command-nodes from being
3740 (defun Info-fontify-node ()
3749 (fontify-visited-p ; visited nodes need to be re-fontified
3750 (and Info-fontify-visited-nodes
3751 ;; Don't take time to refontify visited nodes in huge nodes
3752 Info-fontify-maximum-menu-size
3753 (< (- (point-max) (point-min)) Info-fontify-maximum-menu-size)))
3843 (when (or not-fontified-p fontify-visited-p)
3891 (when (or not-fontified-p fontify-visited-p)
3897 ;; Display visited nodes in a different face
3898 (if (and Info-fontify-visited-nodes
3930 res))) 'info-xref-visited 'info-xref))
3985 (when (and (or not-fontified-p fontify-visited-p)
3988 Info-fontify-maximum-menu-size
3989 (< (- (point-max) (point)) Info-fontify-maximum-menu-size))
4012 (when (or not-fontified-p fontify-visited-p)
4016 ;; Display visited menu items in a different face
4017 (if (and Info-fontify-visited-nodes
4044 res))) 'info-xref-visited 'info-xref)))