summaryrefslogtreecommitdiff
path: root/lisp/format.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-09 08:01:07 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-09 08:01:07 +0000
commit37c074e5daad8f9b31d67df173facd421e75d814 (patch)
treeb6fb7ec5f8cea477f1bdfc062d9a0c768cfdfda4 /lisp/format.el
parent397a8217c26ffba6c3a67495186e4c46c8b838c7 (diff)
downloademacs-37c074e5daad8f9b31d67df173facd421e75d814.tar.gz
(format-alist): Doc fix.
Diffstat (limited to 'lisp/format.el')
-rw-r--r--lisp/format.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/format.el b/lisp/format.el
index 8c45456b7e7..9a74869be86 100644
--- a/lisp/format.el
+++ b/lisp/format.el
@@ -120,8 +120,8 @@ FROM-FN is called to decode files in that format; it gets two args, BEGIN
and END, and can make any modifications it likes, returning the new
end. It must make sure that the beginning of the file no longer
matches REGEXP, or else it will get called again.
- Alternatively, FROM-FN can be a shell command (including options)
- which can be used as a filter to perform the conversion.
+ Alternatively, FROM-FN can be a string, which specifies a shell command
+ (including options) to be used as a filter to perform the conversion.
TO-FN is called to encode a region into that format; it is passed three
arguments: BEGIN, END, and BUFFER. BUFFER is the original buffer that
@@ -129,8 +129,8 @@ TO-FN is called to encode a region into that format; it is passed three
example, to find the values of local variables. TO-FN should either
return a list of annotations like `write-region-annotate-functions',
or modify the region and return the new end.
- Alternatively, TO-FN can be a shell command (including options)
- which can be used as a filter to perform the conversion.
+ Alternatively, TO-FN can be a string, which specifies a shell command
+ (including options) to be used as a filter to perform the conversion.
MODIFY, if non-nil, means the TO-FN wants to modify the region. If nil,
TO-FN will not make any changes but will instead return a list of