comparison lispref/files.texi @ 8118:56b5ed321f8d

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Sat, 02 Jul 1994 04:09:37 +0000
parents 7db892210924
children f40f688148d1
comparison
equal deleted inserted replaced
8117:20100d7e5b0f 8118:56b5ed321f8d
1864 @code{insert-file-contents}, @code{load}, @code{make-directory}, 1864 @code{insert-file-contents}, @code{load}, @code{make-directory},
1865 @code{make-symbolic-link}, @code{rename-file}, @code{set-file-modes}, 1865 @code{make-symbolic-link}, @code{rename-file}, @code{set-file-modes},
1866 @code{set-visited-file-modtime}, @code{unhandled-file-name-directory}, 1866 @code{set-visited-file-modtime}, @code{unhandled-file-name-directory},
1867 @code{verify-visited-file-modtime}, @code{write-region}. 1867 @code{verify-visited-file-modtime}, @code{write-region}.
1868 1868
1869 Handlers for @code{insert-file-contents} typically need to clear the
1870 buffer's modified flag, with @code{(set-buffer-modified-p nil)}, if the
1871 @var{visit} argument is non-@code{nil}. This also has the effect of
1872 unlocking the buffer if it is locked.
1873
1869 The handler function must handle all of the above operations, and 1874 The handler function must handle all of the above operations, and
1870 possibly others to be added in the future. It need not implement all 1875 possibly others to be added in the future. It need not implement all
1871 these operations itself---when it has nothing special to do for a 1876 these operations itself---when it has nothing special to do for a
1872 certain operation, it can reinvoke the primitive, to handle the 1877 certain operation, it can reinvoke the primitive, to handle the
1873 operation ``in the usual way''. It should always reinvoke the primitive 1878 operation ``in the usual way''. It should always reinvoke the primitive