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

Lines Matching +defs:end +defs:of

10 ;; This file is part of GNU Emacs.
13 ;; it under the terms of the GNU General Public License as published by
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; You should have received a copy of the GNU General Public License
41 ;; ASCII region of the screen (if your Emacs supports this) instead of
90 "Face used in address area of hexl-mode buffer."
95 "Face used in ascii area of hexl-mode buffer."
143 of the current mode's behavior, but not all; also, you can exit
154 If any of the characters (displayed as ASCII characters) are
183 Advanced cursor movement commands (ala \\[hexl-beginning-of-line], \\[hexl-end-of-line], \\[hexl-beginning-of-buffer], and \\[hexl-end-of-buffer]) are
194 of another key to insert the octal number's ASCII representation.
207 Note: saving the file with any of the usual Emacs commands
243 ;; override most of it. That way, we can restore it perfectly.
338 (end (point-max))
341 (insert-buffer-substring name start end)
349 (insert-buffer-substring buf start end)
366 ;; Ignore the user's setting of default-major-mode.
461 Signal error if ADDRESS is out of range."
464 (error "Out of hexl region"))
469 Signal error if HEX-ADDRESS is out of range."
517 (message "End of buffer.")
522 (message "End of buffer.")
528 (message "End of buffer.")
536 (message "Beginning of buffer.")))
556 (message "End of buffer.")
561 (message "End of buffer.")
567 (message "End of buffer.")
575 (message "Beginning of buffer.")))
596 (progn (message "Out of hexl region.")
603 (progn (message "Out of hexl region.")
610 (defun hexl-beginning-of-buffer (arg)
611 "Move to the beginning of the hexl buffer.
613 With prefix arg N, puts point N bytes of the way from the true beginning."
618 (defun hexl-end-of-buffer (arg)
624 (defun hexl-beginning-of-line ()
625 "Goto beginning of line in hexl mode."
629 (defun hexl-end-of-line ()
630 "Goto end of line in hexl mode."
657 ;; of the 16-byte group, even if we move to the first or last
667 (message "Out of hexl region."))
671 (defun hexl-beginning-of-1k-page ()
672 "Go to beginning of 1KB boundary."
676 (defun hexl-end-of-1k-page ()
677 "Go to end of 1KB boundary."
684 (defun hexl-beginning-of-512b-page ()
685 "Go to beginning of 512 byte boundary."
689 (defun hexl-end-of-512b-page ()
690 "Go to end of 512 byte boundary."
716 ;; Don't decode text in the ASCII part of `hexl' program output.
807 ;; of that character, byte by byte.
863 (beginning-of-line)
875 (error "Hex number out of range")
908 (error "Decimal number out of range")
916 (error "Decimal number out of range")
973 "Return the range of address region for the point.
995 ;; regardless of the header-line face.
997 (setq pos (match-end 0))
1032 (define-key hexl-mode-map [home] 'hexl-beginning-of-line)
1033 (define-key hexl-mode-map [end] 'hexl-end-of-line)
1034 (define-key hexl-mode-map [C-home] 'hexl-beginning-of-buffer)
1035 (define-key hexl-mode-map [C-end] 'hexl-end-of-buffer)
1042 (define-key hexl-mode-map "\C-a" 'hexl-beginning-of-line)
1045 (define-key hexl-mode-map "\C-e" 'hexl-end-of-line)
1064 (define-key hexl-mode-map "\e\C-a" 'hexl-beginning-of-512b-page)
1067 (define-key hexl-mode-map "\e\C-e" 'hexl-end-of-512b-page)
1092 (define-key hexl-mode-map "\e<" 'hexl-beginning-of-buffer)
1093 (define-key hexl-mode-map "\e>" 'hexl-end-of-buffer)
1101 (define-key hexl-mode-map "\C-x[" 'hexl-beginning-of-1k-page)
1102 (define-key hexl-mode-map "\C-x]" 'hexl-end-of-1k-page)