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

Lines Matching defs:eval

90   (define-key inferior-lisp-mode-map "\C-x\C-e" 'lisp-eval-last-sexp)
102 (define-key lisp-mode-map "\M-\C-x" 'lisp-eval-defun) ; Gnu convention
103 (define-key lisp-mode-map "\C-x\C-e" 'lisp-eval-last-sexp) ; Gnu convention
104 (define-key lisp-mode-map "\C-c\C-e" 'lisp-eval-defun)
105 (define-key lisp-mode-map "\C-c\C-r" 'lisp-eval-region)
127 (define-key lisp-mode-map "\C-ce" 'lisp-eval-defun-and-go)
128 (define-key lisp-mode-map "\C-cr" 'lisp-eval-region-and-go)
195 like `lisp-eval-defun' or `lisp-show-arglist' -- have to choose a process
203 If you do a \\[lisp-eval-defun] command on some Lisp source code,
243 `lisp-eval-defun' sends the current defun to the Lisp process.
245 `lisp-eval-region' sends the current region to the Lisp process.
248 Prefixing the lisp-eval/compile-defun/region commands with
319 (defun lisp-eval-region (start end &optional and-go)
327 (defun lisp-eval-defun (&optional and-go)
336 (lisp-eval-region (point) end)))
339 (defun lisp-eval-last-sexp (&optional and-go)
343 (lisp-eval-region (save-excursion (backward-sexp) (point)) (point) and-go))
385 ;;; Now that lisp-compile/eval-defun/region takes an optional prefix arg,
390 (defun lisp-eval-region-and-go (start end)
393 (lisp-eval-region start end t))
395 (defun lisp-eval-defun-and-go ()
398 (lisp-eval-defun t))
427 ;;; (t (lisp-eval-region start end)))))
623 ;;; - Added lisp-eval-last-sexp, bound to C-x C-e.
637 ;;; mainly the compile/eval-defun/region[-and-go] commands.
644 ;;; - The lisp-compile/eval-defun/region commands now take a prefix arg,