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

Lines Matching defs:thing

160 (defun mouse-mark-thing (window x y)
194 (defun mouse-kill-thing (window x y)
195 "Kill thing at mouse, and put point there."
196 (mouse-mark-thing window x y)
200 (defun mouse-kill-thing-there (window x y)
201 "Kill thing at mouse, leave point where it was.
202 See mouse-mark-thing for a description of the objects recognized."
205 (mouse-mark-thing window x y)
209 (defun mouse-save-thing (window x y &optional quiet)
210 "Put thing at mouse in kill ring.
211 See mouse-mark-thing for a description of the objects recognized."
212 (mouse-mark-thing window x y)
217 (defun mouse-save-thing-there (window x y &optional quiet)
218 "Put thing at mouse in kill ring, leave point as is.
219 See mouse-mark-thing for a description of the objects recognized."
222 (mouse-save-thing window x y quiet))))
228 (defun mouse-copy-thing (window x y)
229 "Put thing at mouse in kill ring, yank to point.
230 See mouse-mark-thing for a description of the objects recognized."
232 (mouse-save-thing-there window x y t)
236 (defun mouse-move-thing (window x y)
237 "Kill thing at mouse, yank it to point.
238 See mouse-mark-thing for a description of the objects recognized."
240 (mouse-kill-thing-there window x y)
545 (global-set-mouse '(text control middle ) 'mouse-save-thing-there)
546 (global-set-mouse '(text control right ) 'mouse-kill-thing-there)
548 (global-set-mouse '(text control middle left) 'mouse-copy-thing)
549 (global-set-mouse '(text control right left) 'mouse-move-thing)
550 (global-set-mouse '(text control right middle) 'mouse-mark-thing)