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

Lines Matching +defs:write +defs:region

25 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
449 ;; o pre-write-conversion
666 (if (setq tmp (plist-get props 'pre-write-conversion))
667 (setq properties (plist-put properties 'pre-write-conversion tmp)))
807 o pre-write-conversion
810 `write-region-annotate-functions' and `buffer-file-format' are
813 in `write-region-annotate-functions', i.e. FROM and TO, specifying
814 a region of text.
1444 (narrow-to-region (point) (+ (point) len)))
1466 (delete-region pos (point))
1468 (decode-coding-region (- (point) bytes) (point) coding)))
1471 (delete-region pos (+ pos 3))
1472 (decode-coding-region pos (point) 'utf-8))))
1504 (defun ctext-pre-write-conversion (from to)
1552 (encode-coding-region last-pos (point) coding-system)
1566 (encode-coding-region last-pos (point) 'mule-utf-8)
1624 The value is a coding system is specified for the region FROM and TO,
2011 (defun decode-coding-inserted-region (from to filename
2013 "Decode the region between FROM and TO as if it is read from file FILENAME.
2033 (narrow-to-region from to)
2049 (decode-coding-region (point-min) (point-max) coding)
2061 (defun recode-region (start end new-coding coding)
2062 "Re-decode the region (previously decoded by CODING) by NEW-CODING."
2064 (list (region-beginning) (region-end)
2073 ;; Check it before we encode the region.
2076 (narrow-to-region start end)
2077 (encode-coding-region (point-min) (point-max) coding)
2078 (decode-coding-region (point-min) (point-max) new-coding)))
2202 (defun translate-region (start end table)
2211 (list (region-beginning)
2212 (region-end)
2228 (translate-region-internal start end table))