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

Lines Matching +defs:last +defs:message

69 only rings the bell and gives a message on how to leave."
97 (defcustom view-inhibit-help-message nil
98 "*Non-nil inhibits the help message shown upon entering View mode."
136 (defvar view-last-regexp nil)
137 (make-variable-buffer-local 'view-last-regexp) ; Global is better???
188 ; (define-key map "N" 'View-search-last-regexp-backward)
189 (define-key map "p" 'View-search-last-regexp-backward)
190 (define-key map "n" 'View-search-last-regexp-forward)
202 ; (define-key map "G" 'View-goto-line-last)
264 (message "Not using View mode because the major mode is special"))
396 H, h, ? This message.
401 \\[View-scroll-to-buffer-end] scroll so that buffer end is at last line of window.
433 \\[View-search-last-regexp-forward] searches forward for last regular expression.
434 p searches backward for last regular expression.
533 (unless view-inhibit-help-message
534 (message "%s"
670 ;(defun view-last-command (&optional who what)
671 ; (setq view-last-command-entry this-command)
672 ; (setq view-last-command who)
673 ; (setq view-last-command-argument what))
675 ;(defun View-repeat-last-command ()
676 ; "Repeat last command issued in View mode."
678 ; (if (and view-last-command
679 ; (eq view-last-command-entry last-command))
680 ; (funcall view-last-command view-last-command-argument))
681 ; (setq this-command view-last-command-entry))
720 ;(defun View-goto-line-last (&optional line)
721 ;"Move to last (or prefix LINE) line in View mode.
741 "Return to last mark set in View mode, else beginning of file.
768 (view-end-message)))
774 (if (view-really-at-end) (view-end-message))
800 (defun view-end-message ()
804 (message "End of buffer. Type %s to quit viewing."
808 (message "End of buffer")))
812 "Scroll backward or forward so that buffer end is at last line of window."
825 If LINES is more than a window-full, only the last window-full is shown."
893 If LINES is more than a window-full, only the last window-full is shown."
938 (defun View-search-last-regexp-forward (n) "\
939 Search forward for first (or prefix Nth) instance of last regexp in View mode.
948 (defun View-search-last-regexp-backward (n) "\
949 Search backward for first (or prefix Nth) instance of last regexp in View mode.
961 ;; search backwards. If REGEXP is nil use `view-last-regexp'.
976 (setq view-last-regexp (if no (list regexp) regexp)))
977 ((consp view-last-regexp)
978 (setq regexp (car view-last-regexp))
979 (unless (setq no (not no)) (setq view-last-regexp regexp)))
980 (view-last-regexp (setq regexp view-last-regexp)
981 (if no (setq view-last-regexp (list regexp))))
1000 (message "Can't find occurrence %d of %s%s"