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

Lines Matching +refs:point +refs:max

59 The next four arguments are functions to be called to move point
62 NEXTRECFUN is called with point at the end of the previous record.
63 It moves point to the start of the next record.
64 It should move point to the end of the buffer if there are no more records.
65 The first record is assumed to start at the position of point when sort-subr
68 ENDRECFUN is called with point within the record.
69 It should move point to the end of the record.
73 else the key is the substring between the values of point after
84 (let ((messages (> (- (point-max) (point-min)) 50000)))
126 ;(goto-char (point-min)) -- it is the caller's responsibility to
129 (setq start-rec (point)) ;save record start
136 (let ((start (point)))
139 (cons start (point))))))
148 (equal (cdr key) (point)))
150 (cons key (cons start-rec (point))))
156 (let ((last (point-min))
157 (min (point-min)) (max (point-max))
166 (goto-char (point-max))
170 (goto-char (point-max))
177 (goto-char (point-max))
178 (insert-buffer-substring old-buffer last max)
187 (delete-region min (1- max))
189 (goto-char (point-min))
191 (delete-region max (1+ max))))))
204 (goto-char (point-min))
220 (goto-char (point-min))
239 (goto-char (point-min))
289 (string-to-number (buffer-substring (point)
292 (point)))
300 ;;must contain a floating point number in each line of the region. With a
310 ;; (point)
314 ;; (point))))))
342 (goto-char (point-min))
350 ;; assuming point is initially at the beginning of the line.
363 (save-excursion (beginning-of-line) (point))
364 (save-excursion (end-of-line) (point))))))
376 (save-excursion (beginning-of-line) (point))
377 (save-excursion (end-of-line) (point)))))
388 ;; If the next match is empty and does not advance point,
391 (let ((oldpos (point)))
435 (goto-char (point-min))
439 (setq sort-regexp-record-end (point))
467 the entire line that point is in and the entire line the mark is in.
468 The column positions of point and mark bound the range of columns to sort on.
486 (setq beg1 (point))
487 (goto-char (max beg end))
490 (setq end1 (point))
492 (setq col-end (max col-beg1 col-end1))
532 From a program takes two point or marker arguments, BEG and END."
541 (setq beg (point))
547 (setq end (point-marker))
552 (setq ll (cons (buffer-substring (point) (progn (end-of-line) (point)))
554 (setq do (/= (point) end))
555 (delete-region beg (if do (1+ (point)) (point))))