diff options
| author | Paul Eggert | 2015-09-01 06:21:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-01 06:23:21 -0700 |
| commit | a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce (patch) | |
| tree | 03058460c897b868eaf281bcf984a3a687667ae3 /src/fileio.c | |
| parent | 447e5890a81f098881aecc099852ace466ef5925 (diff) | |
| download | emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.tar.gz emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.zip | |
Docstring fixes re quotes in C code
Fix some docstring quoting problems, mostly by escaping apostrophe.
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index a36dfbcfa36..d4341f8fa59 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -5878,7 +5878,7 @@ the arguments that were passed to that primitive. For example, if you | |||
| 5878 | do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then | 5878 | do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then |
| 5879 | HANDLER is called like this: | 5879 | HANDLER is called like this: |
| 5880 | 5880 | ||
| 5881 | (funcall HANDLER 'file-exists-p FILENAME) | 5881 | (funcall HANDLER \\='file-exists-p FILENAME) |
| 5882 | 5882 | ||
| 5883 | Note that HANDLER must be able to handle all I/O primitives; if it has | 5883 | Note that HANDLER must be able to handle all I/O primitives; if it has |
| 5884 | nothing special to do for a primitive, it should reinvoke the | 5884 | nothing special to do for a primitive, it should reinvoke the |