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

Lines Matching defs:point

57 ;; keep the behavior.  No point in forcing nonincremental search until
135 whenever point is in one of them."
170 If nil, move point to the beginning of the buffer for a forward search,
525 Type \\[isearch-exit] to exit, leaving point at location found.
541 \\[isearch-abort] when search is successful aborts and moves point to\
542 starting point.
648 isearch-barrier (point)
661 isearch-opoint (point)
725 (let ((found-point (point)))
735 (set-window-start (next-window) (point))
740 (goto-char found-point))
747 (if (< isearch-other-end (point)) ; isearch-forward?
748 (isearch-highlight isearch-other-end (point))
749 (isearch-highlight (point) isearch-other-end))
757 ;; We must prevent the point moving to the end of composition when a
759 (setq disable-point-adjustment t))
788 (found-point (point)))
792 (goto-char found-point)
809 (get-text-property (point) 'intangible)))
811 (get-text-property (1- (point)) 'intangible))))
814 (goto-char (next-single-property-change (point) 'intangible))
815 (goto-char (previous-single-property-change (point) 'intangible)))))
826 (if (/= (point) isearch-opoint)
862 (defsubst isearch-point-state (frame)
863 "Return the point in FRAME."
907 (goto-char (isearch-point-state cmd))))
915 (cons (vector isearch-string isearch-message (point)
958 ;; Editing doesn't back up the search point. Should it?
1107 "Terminate the search and go back to the starting point."
1125 ;; If search is successful, move back to starting point
1159 (goto-char (if isearch-forward (point-min) (point-max)))))))
1164 (setq isearch-barrier (point)) ; For subsequent \| if regexp.
1169 (equal (point) isearch-other-end)
1227 (< isearch-other-end (point))
1229 (< (mark) (point)))))
1252 "Discard last input item and move point back.
1316 "Pull the text from point to the point reached by JUMPFORM.
1318 buffer position, possibly having moved point to that position. For
1319 example, it might move point forward by a word and return point, or it
1325 (buffer-substring-no-properties (point) (funcall jumpform)))))
1335 (point) (progn (forward-char arg) (point)))))
1341 (isearch-yank-internal (lambda () (forward-char arg) (point))))
1349 (= (char-syntax (or (char-after (1+ (point))) 0)) ?w))
1351 (forward-char 1)) (point))))
1356 (isearch-yank-internal (lambda () (forward-word 1) (point))))
1376 ;; matched, in the string following point.
1377 ;; Allow all those possibilities without moving point as
1398 ;; Not regexp, not reverse, or no match at point.
1422 "Return point to previous successful match to allow regexp liberalization.
1498 (not (numberp (posn-point
1508 ;; tamper with isearch's state, or move point. It is unacceptable for the
1520 ;; M-0 C-l will scroll point to the top of the window.
1564 (defun isearch-string-out-of-window (isearch-point)
1566 Return nil if it's completely visible, or if point is visible,
1572 (w-L1 (save-excursion (move-to-window-line 1) (point)))
1573 (w-L-1 (save-excursion (move-to-window-line -1) (point)))
1576 (setq end isearch-point start (or isearch-other-end isearch-point))
1577 (setq start isearch-point end (or isearch-other-end isearch-point)))
1580 (and (>= isearch-point w-L-1) (< isearch-point w-end)) ; point on Line -1
1581 (and (>= isearch-point w-start) (< isearch-point w-L1)))) ; point on Line 0
1584 (< isearch-point w-L-1))
1588 (defun isearch-back-into-window (above isearch-point)
1590 Restore point to ISEARCH-POINT in the process. ABOVE is t when the
1595 (setq end isearch-point start (or isearch-other-end isearch-point))
1596 (setq start isearch-point end (or isearch-other-end isearch-point)))
1601 (when (>= isearch-point (window-end nil t))
1602 (goto-char isearch-point)
1606 (when (< isearch-point (window-start))
1607 (goto-char isearch-point)
1609 (goto-char isearch-point))
1652 scroll-command isearch-point)
1713 ;; From this point onwards, KEY, KEYLIST and MAIN-EVENT hold a
1717 (setq isearch-point (point))
1720 (let ((ab-bel (isearch-string-out-of-window isearch-point)))
1722 (isearch-back-into-window (eq ab-bel 'above) isearch-point)
1723 (goto-char isearch-point)))
1945 (progn (re-search-forward isearch-string (point) t)
1955 (> (point) isearch-opoint)
1956 (< (point) isearch-opoint)))
2001 ;; found, move point to the end of the occurance, update
2002 ;; isearch-match-beg and isearch-match-end, and return point.
2036 (let ((inhibit-point-motion-hooks search-invisible)
2084 (goto-char (isearch-point-state (car isearch-cmds)))))
2099 ;; have the point inside an overlay with an `intangible' property?
2109 ;; point returns to the original location which surely is not contain
2112 (let ((inside-overlay (and (> (point) (overlay-start ov))
2113 (< (point) (overlay-end ov))))
2181 (while (and (< (point) end)
2183 (get-char-property (point) 'invisible)))
2188 (if (get-text-property (point) 'invisible)
2190 (goto-char (next-single-property-change (point) 'invisible
2196 (let ((overlays (overlays-at (point)))
2219 (goto-char (next-overlay-change (point)))))
2221 (if (>= (point) end)
2384 isearch-lazy-highlight-start (point)
2385 isearch-lazy-highlight-end (point)
2406 (min (or isearch-lazy-highlight-end-limit (point-max))
2410 (max (or isearch-lazy-highlight-start-limit (point-min))
2463 (setq isearch-lazy-highlight-end (point))
2464 (setq isearch-lazy-highlight-start (point)))))
2475 (goto-char (max (or isearch-lazy-highlight-start-limit (point-min))
2478 (goto-char (min (or isearch-lazy-highlight-end-limit (point-max))