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

Lines Matching defs:definition

115     (define-key m "\M-\C-x" 'scheme-send-definition) ;gnu convention
123 (define-key scheme-mode-map "\M-\C-x" 'scheme-send-definition);gnu convention
125 (define-key scheme-mode-map "\C-c\C-e" 'scheme-send-definition)
126 (define-key scheme-mode-map "\C-c\M-e" 'scheme-send-definition-and-go)
129 (define-key scheme-mode-map "\C-c\M-c" 'scheme-compile-definition)
130 (define-key scheme-mode-map "\C-c\C-c" 'scheme-compile-definition-and-go)
146 '("Compile Definition & Go" . scheme-compile-definition-and-go))
148 '("Compile Definition" . scheme-compile-definition))
154 '("Evaluate Last Definition & Go" . scheme-send-definition-and-go))
156 '("Evaluate Last Definition" . scheme-send-definition))
181 scheme-send-definition sends the current definition to the Scheme process.
182 scheme-compile-definition compiles the current definition.
186 scheme-send-definition-and-go, scheme-compile-definition-and-go,
285 (defun scheme-send-definition ()
286 "Send the current definition to the inferior Scheme process."
313 (defun scheme-compile-definition ()
314 "Compile the current definition in the inferior Scheme process."
404 (defun scheme-send-definition-and-go ()
405 "Send the current definition to the inferior Scheme.
408 (scheme-send-definition)
411 (defun scheme-compile-definition-and-go ()
412 "Compile the current definition in the inferior Scheme.
415 (scheme-compile-definition)
479 like `scheme-send-definition' or `scheme-compile-region' -- have to choose a
487 If you do a \\[scheme-send-definition-and-go] command on some Scheme source