]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fencode_coding_region, Fdecode_coding_region)
authorEli Zaretskii <eliz@gnu.org>
Tue, 21 Oct 2008 15:57:30 +0000 (15:57 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 21 Oct 2008 15:57:30 +0000 (15:57 +0000)
(Fdecode_coding_string, Fencode_coding_string): Doc fix.

src/ChangeLog
src/coding.c

index ed825a8e95418f0bb2944f6ff12645a8a2b5c1a2..0a11f86292c2070e71690895b1224d844cf8a86a 100644 (file)
@@ -1,3 +1,8 @@
+2008-10-21  Eli Zaretskii  <eliz@gnu.org>
+
+       * coding.c (Fencode_coding_region, Fdecode_coding_region)
+       (Fdecode_coding_string, Fencode_coding_string): Doc fix.
+
 2008-10-21  Martin Rudalics  <rudalics@gmx.at>
 
        * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
index fb0bfa0b15c1ce21c79ac92cf90f3e4aa52c0b9a..ea0a066eb71b37112fdbe52af8c236c4597cc34e 100644 (file)
@@ -8442,7 +8442,8 @@ START and END are buffer positions.
 
 Optional 4th arguments DESTINATION specifies where the decoded text goes.
 If nil, the region between START and END is replaced by the decoded text.
-If buffer, the decoded text is inserted in the buffer.
+If buffer, the decoded text is inserted in that buffer after point (point
+does not move).
 In those cases, the length of the decoded text is returned.
 If DESTINATION is t, the decoded text is returned.
 
@@ -8464,7 +8465,8 @@ START and END are buffer positions.
 
 Optional 4th arguments DESTINATION specifies where the encoded text goes.
 If nil, the region between START and END is replace by the encoded text.
-If buffer, the encoded text is inserted in the buffer.
+If buffer, the encoded text is inserted in that buffer after point (point
+does not move).
 In those cases, the length of the encoded text is returned.
 If DESTINATION is t, the encoded text is returned.
 
@@ -8544,8 +8546,8 @@ Optional third arg NOCOPY non-nil means it is OK to return STRING itself
 if the decoding operation is trivial.
 
 Optional fourth arg BUFFER non-nil means that the decoded text is
-inserted in BUFFER instead of returned as a string.  In this case,
-the return value is the length of the decoded text.
+inserted in that buffer after point (point does not move).  In this
+case, the return value is the length of the decoded text.
 
 This function sets `last-coding-system-used' to the precise coding system
 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is
@@ -8565,8 +8567,8 @@ Optional third arg NOCOPY non-nil means it is OK to return STRING
 itself if the encoding operation is trivial.
 
 Optional fourth arg BUFFER non-nil means that the encoded text is
-inserted in BUFFER instead of returned as a string.  In this case,
-the return value is the length of the encoded text.
+inserted in that buffer after point (point does not move).  In this
+case, the return value is the length of the encoded text.
 
 This function sets `last-coding-system-used' to the precise coding system
 used (which may be different from CODING-SYSTEM if CODING-SYSTEM is