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

Lines Matching refs:point

86   "Position point at the beginning of the line.
95 "Position point after last non-blank character on current line.
101 (skip-chars-backward " \t" (prog1 (point) (end-of-line)))
214 "Move point in direction of current picture motion in Picture mode.
223 "Move point in direction opposite of current picture motion in Picture mode.
230 (defun picture-mouse-set-point (event)
231 "Move point to the position clicked on, making whitespace if necessary."
262 (let ((pos (point)))
264 (delete-region pos (point)))))
279 "Clear out ARG columns after point without moving."
285 (setq pos (point))
287 (delete-region pos (point))
293 "Clear out ARG columns before point, moving back over them."
309 (kill-ring-save (point) (progn (forward-line 1) (point)))
310 (kill-region (point) (progn (end-of-line) (point))))))
338 (progn (beginning-of-line) (point))
339 (progn (picture-newline 1) (point)))))
358 (delete-region (point)
361 (point))))
411 (let ((bol (point)))
440 (point-min))
445 (save-excursion (end-of-line) (point))
454 "Tab transparently (just move point) to next tab stop.
459 (let* ((opoint (point)))
464 (delete-region opoint (point))
475 "Clear and save rectangle delineated by point and mark.
483 "Clear rectangle delineated by point and mark into REGISTER.
501 The rectangle is positioned with upper left corner at point, overwriting
504 point at the other (diagonally opposed) corner."
512 Also move point to one end of the text thus inserted (normally the end).
514 If `mouse-yank-at-point' is non-nil, insert at point
517 (or mouse-yank-at-point (mouse-set-point click))
522 The rectangle is positioned with upper left corner at point, overwriting
525 of rectangle and point at the other (diagonally opposed) corner."
533 "Overlay RECTANGLE with upper left corner at point.
539 (delete-rectangle (point)
543 (point)))))
548 "Return the vertical position of point. Top line is 1."
549 (+ (count-lines (point-min) (point))
622 (picture-substitute 'mouse-set-point 'picture-mouse-set-point)
712 Clear ARG columns after point without moving: \\[picture-clear-column]
713 Delete char at point: \\[delete-char]
722 Insert currently saved rectangle at point: \\[picture-yank-rectangle]
724 Draw a rectangular box around mark and point: \\[picture-draw-rectangle]