diff options
| author | Luc Teirlinck | 2004-04-15 02:32:32 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-04-15 02:32:32 +0000 |
| commit | d01ca4a8d2a5fc59742dd643e2351b956423ee73 (patch) | |
| tree | 4cbbd3dc54ee9519ec1e63a4ca54dacb494f2a21 /src/fileio.c | |
| parent | 9e860631e74a527248a75f16c036da26feec8dfd (diff) | |
| download | emacs-d01ca4a8d2a5fc59742dd643e2351b956423ee73.tar.gz emacs-d01ca4a8d2a5fc59742dd643e2351b956423ee73.zip | |
(Fverify_visited_file_modtime, Fvisited_file_modtime):
Add hyperlink to Elisp manual to the docstring.
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 3f17da7033d..c0195558a3c 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -5509,7 +5509,8 @@ e_write (desc, string, start, end, coding) | |||
| 5509 | DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, | 5509 | DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, |
| 5510 | Sverify_visited_file_modtime, 1, 1, 0, | 5510 | Sverify_visited_file_modtime, 1, 1, 0, |
| 5511 | doc: /* Return t if last mod time of BUF's visited file matches what BUF records. | 5511 | doc: /* Return t if last mod time of BUF's visited file matches what BUF records. |
| 5512 | This means that the file has not been changed since it was visited or saved. */) | 5512 | This means that the file has not been changed since it was visited or saved. |
| 5513 | See Info node `(elisp)Modification Time' for more details. */) | ||
| 5513 | (buf) | 5514 | (buf) |
| 5514 | Lisp_Object buf; | 5515 | Lisp_Object buf; |
| 5515 | { | 5516 | { |
| @@ -5565,7 +5566,9 @@ DEFUN ("visited-file-modtime", Fvisited_file_modtime, | |||
| 5565 | Svisited_file_modtime, 0, 0, 0, | 5566 | Svisited_file_modtime, 0, 0, 0, |
| 5566 | doc: /* Return the current buffer's recorded visited file modification time. | 5567 | doc: /* Return the current buffer's recorded visited file modification time. |
| 5567 | The value is a list of the form (HIGH . LOW), like the time values | 5568 | The value is a list of the form (HIGH . LOW), like the time values |
| 5568 | that `file-attributes' returns. */) | 5569 | that `file-attributes' returns. If the current buffer has no recorded |
| 5570 | file modification time, this function returns 0. | ||
| 5571 | See Info node `(elisp)Modification Time' for more details. */) | ||
| 5569 | () | 5572 | () |
| 5570 | { | 5573 | { |
| 5571 | return long_to_cons ((unsigned long) current_buffer->modtime); | 5574 | return long_to_cons ((unsigned long) current_buffer->modtime); |