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

Lines Matching +defs:history +defs:symbol

481   "Return the type of WIDGET, a symbol."
495 If the value is a symbol, return its binding.
499 (symbol-value value)
613 (symbol :tag "Image Format" unknown)
1137 :options '(ispell-complete-word complete-tag lisp-complete-symbol)
1864 :prompt-history 'widget-field-history
1875 (defvar widget-field-history nil
1878 (defun widget-field-prompt-internal (widget prompt initial history)
1880 INITIAL is the initial input and HISTORY is a symbol containing
1882 (read-string prompt initial history))
1894 (widget-get widget :prompt-history))))
2843 :help-echo "Describe this symbol"
2849 (symbol (intern string)))
2850 (if (and (fboundp symbol) (boundp symbol))
2853 (if (fboundp symbol)
2854 (describe-function symbol)
2855 (describe-variable symbol)))))
2879 :type 'symbol
2973 :documentation-property (lambda (symbol)
2975 (documentation symbol t)
2994 (defvar widget-string-prompt-value-history nil
3002 :prompt-history 'widget-string-prompt-value-history)
3095 (defvar widget-symbol-prompt-value-history nil
3096 "History of input to `widget-symbol-prompt-value'.")
3098 (define-widget 'symbol 'editable-field
3099 "A Lisp symbol."
3104 :complete-function 'lisp-complete-symbol
3105 :prompt-internal 'widget-symbol-prompt-internal
3107 :prompt-history 'widget-symbol-prompt-value-history
3110 (symbol-name value)
3117 (defun widget-symbol-prompt-internal (widget prompt initial history)
3121 nil initial history)))
3127 (defvar widget-function-prompt-value-history nil
3134 (lisp-complete-symbol 'fboundp))
3136 :prompt-internal 'widget-symbol-prompt-internal
3138 :prompt-history 'widget-function-prompt-value-history
3149 (defvar widget-variable-prompt-value-history nil
3152 (define-widget 'variable 'symbol
3155 :prompt-history 'widget-variable-prompt-value-history
3158 (lisp-complete-symbol 'boundp))
3162 (defvar widget-coding-system-prompt-value-history nil
3165 (define-widget 'coding-system 'symbol
3170 :prompt-history 'widget-coding-system-prompt-value-history
3175 (lisp-complete-symbol 'coding-system-p))
3190 coding-system-history))
3206 (defvar widget-key-sequence-prompt-value-history nil
3221 :prompt-internal 'widget-symbol-prompt-internal
3223 :prompt-history 'widget-key-sequence-prompt-value-history
3293 :prompt-history 'widget-sexp-prompt-value-history
3337 (defvar widget-sexp-prompt-value-history nil
3344 (widget-get widget :prompt-history))))
3512 :key-type '(symbol :tag "Key")