Searched refs:opoint (Results 1 - 25 of 67) sorted by relevance

123

/macosx-10.10.1/emacs-93/emacs/lisp/textmodes/
H A Dpage.el95 (opoint (point)))
101 (eq (match-end 0) opoint))
134 (let ((opoint (point)) beg end
144 before (count-lines beg opoint)
145 after (count-lines opoint end))
156 (opoint (point)))
158 (while (re-search-forward page-delimiter opoint t)
162 (1+ (count-lines (point) opoint)))))))
H A Dparagraphs.el222 (let* ((opoint (point))
348 (constrain-to-field nil opoint t)
418 (let ((opoint (point)) npoint)
426 (if (and (>= (point) opoint) (< npoint opoint))
433 (let ((opoint (point)))
436 (if (<= (point) opoint)
450 (let ((opoint (point))
467 (constrain-to-field nil opoint t)))
/macosx-10.10.1/emacs-93/emacs/lisp/play/
H A Ddissociate.el79 (let ((opoint (point)))
82 (goto-char opoint)
97 (let ((opoint (point)))
99 (funcall search-function overlap opoint t))))))
/macosx-10.10.1/emacs-93/emacs/lisp/mail/
H A Dmail-utils.el298 (let ((opoint (point)))
303 (skip-chars-backward " \t" opoint)
306 opoint (point))
311 opoint (point)))))))
318 (let ((opoint (point)))
323 (skip-chars-backward " \t" opoint)
324 (buffer-substring-no-properties opoint (point)))))))))
/macosx-10.10.1/emacs-93/emacs/src/
H A Dinsdel.c761 int len = chars_in_text (string, nbytes), opoint;
763 opoint = PT - len;
764 signal_after_change (opoint, 0, len);
765 update_compositions (opoint, PT, CHECK_BORDER);
778 int len = chars_in_text (string, nbytes), opoint;
780 opoint = PT - len;
781 signal_after_change (opoint, 0, len);
782 update_compositions (opoint, PT, CHECK_BORDER);
827 int len = chars_in_text (string, nbytes), opoint;
829 opoint
752 int len = chars_in_text (string, nbytes), opoint; local
769 int len = chars_in_text (string, nbytes), opoint; local
818 int len = chars_in_text (string, nbytes), opoint; local
835 int len = chars_in_text (string, nbytes), opoint; local
1062 int opoint = PT; local
1083 int opoint = PT; local
1198 int opoint = PT; local
[all...]
H A Dcasefiddle.c223 int opoint = PT;
262 if (opoint > start)
270 TEMP_SET_PT_BOTH (opoint, opoint_byte);
221 int opoint = PT; local
H A Dindent.c525 int opoint = PT, opoint_byte = PT_BYTE;
530 SET_PT_BOTH (opoint, opoint_byte);
536 while (scan < opoint)
546 scan = skip_invisible (scan, &next_boundary, opoint, Qnil);
547 if (scan >= opoint)
557 if (check_composition (scan, scan_byte, opoint,
562 if (scan <= opoint)
804 int opoint = PT, opoint_byte = PT_BYTE;
809 SET_PT_BOTH (opoint, opoint_byte);
909 int opoint
520 int opoint = PT, opoint_byte = PT_BYTE; local
796 int opoint = PT, opoint_byte = PT_BYTE; variable
901 int opoint = PT, opoint_byte = PT_BYTE; local
[all...]
H A Dcmds.c121 int opoint = PT, opoint_byte = PT_BYTE;
143 TEMP_SET_PT_BOTH (opoint, opoint_byte);
149 && PT != opoint
120 int opoint = PT, opoint_byte = PT_BYTE; variable
H A Dabbrev.c444 int opoint = PT;
470 SET_PT (last_abbrev_point < opoint ? opoint + adjust : opoint);
442 int opoint = PT; variable
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dvcursor.el682 (let (text opoint)
685 (setq opoint (point))
687 (and (eq opoint (point-max)) (eq opoint (point))
690 (if vcursor-copy-flag (setq text (buffer-substring opoint (point)))))
973 (let (temporary-goal-column opoint text)
986 opoint (point))
988 (and (eq opoint (point-max)) (eq opoint (point))
990 (if vcursor-copy-flag (setq text (buffer-substring opoint (poin
[all...]
H A Dcompare-w.el277 (opoint (point)))
286 (= (point) opoint)))
292 (or (/= beg opoint)
293 (/= end opoint))))
H A Debuff-menu.el104 (let ((opoint (point-marker)))
108 (goto-char opoint) (set-marker opoint nil))
H A Dindent.el432 (let ((opoint (point-marker)))
434 (if (> opoint (point))
435 (goto-char opoint))
436 (move-marker opoint nil))
514 (let ((opoint (point)))
H A Dediff-ptch.el182 (let ((count 0) opoint)
186 (progn (setq opoint (point))
188 (if (= opoint (point))
217 patch-map opoint)
220 (setq opoint (point))
223 (if (= opoint (point))
258 (setq opoint (point)
H A Dskeleton.el326 opoint)
332 (while (setq skeleton-modified (eq opoint (point))
333 opoint (point)
H A Ddired.el960 (let ((opoint (point))
979 (goto-char opoint)
985 (goto-char opoint)
992 (dired-insert-set-properties opoint (point))
996 (goto-char opoint)
999 (indent-rigidly opoint (point) 2)))
1002 (goto-char opoint)
1039 (opoint (point))
1061 (goto-char opoint)) ; was before
1682 (defun dired-next-dirline (arg &optional opoint)
[all...]
H A Ddired-aux.el976 (let ((char (following-char)) (opoint (point))
984 (subst-char-in-region opoint (1+ opoint) ?\040 char))))
1003 (let* ((opoint (point))
1035 (let (buffer-read-only opoint)
1037 (setq opoint (point))
1043 (goto-char opoint)
1053 (goto-char opoint)
1078 (goto-char opoint))
1835 (let ((opoint (poin
[all...]
H A Dimage.el250 (opoint (point)))
270 (goto-char opoint)
H A Dinformat.el50 (opoint (point)))
146 (goto-char opoint)
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dlisp.el146 (let ((opoint (point)))
148 (kill-region opoint (point))))
376 (let ((opoint (point))
378 (push-mark opoint)
388 (if (> (point) opoint)
396 (goto-char opoint)
409 (let ((opoint (point))
420 (unless (> (point) opoint)
423 (goto-char opoint)
/macosx-10.10.1/emacs-93/emacs/lisp/progmodes/
H A Dicon.el435 (let (opoint stop)
438 (setq opoint (point))
440 (if (and (nth 5 (parse-partial-sexp (point) opoint))
514 (opoint (point))
575 (icon-backward-to-noncomment opoint)
588 (progn (icon-backward-to-start-of-if opoint)
H A Dpascal.el1567 (opoint (point-min)))
1572 (pascal-outline-change opoint (1- (match-beginning 0)) ?\^M)
1573 (setq opoint (point))
1576 (goto-char opoint)))
1577 (if (> beg opoint)
1578 (pascal-outline-change opoint (1- beg) ?\^M))
1585 (setq opoint (point))
1587 (pascal-outline-change opoint (point) ?\^M))
1590 (setq opoint end)
1594 (pascal-outline-change opoint (
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/emulation/
H A Dvi.el660 (opoint (point)))
662 (if (= opoint (point))
670 (opoint (point)))
672 (if (= opoint (point))
1047 (let ((begin (point)) end opoint
1050 (setq opoint (point))
1055 (if (and (= (point) opoint) (not (eq moving-unit 'line)))
1056 (cons opoint opoint) ; no effective motion
1322 (let ((opoint (poin
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dtext.c973 int opoint; local
982 opoint = rl_point;
994 rl_kill_text (opoint, rl_point);
996 rl_delete_text (opoint, rl_point);
1001 opoint = rl_point;
1003 rl_point = opoint;
/macosx-10.10.1/emacs-93/emacs/lisp/eshell/
H A Desh-mode.el778 opoint obeg oend)
780 (setq opoint (point))
789 (if (<= (point) opoint)
790 (setq opoint (+ opoint nchars)))
806 (goto-char opoint)

Completed in 417 milliseconds

123