aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck2004-04-15 02:32:32 +0000
committerLuc Teirlinck2004-04-15 02:32:32 +0000
commitd01ca4a8d2a5fc59742dd643e2351b956423ee73 (patch)
tree4cbbd3dc54ee9519ec1e63a4ca54dacb494f2a21 /src
parent9e860631e74a527248a75f16c036da26feec8dfd (diff)
downloademacs-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')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/fileio.c7
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6b836e5e48a..c9cf12dc159 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12004-04-14 Luc Teirlinck <teirllm@auburn.edu>
2
3 * fileio.c (Fverify_visited_file_modtime, Fvisited_file_modtime):
4 Add hyperlink to Elisp manual to the docstring.
5
12004-04-14 Stefan Monnier <monnier@iro.umontreal.ca> 62004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * callint.c (fix_command): Use XDCR. 8 * callint.c (fix_command): Use XDCR.
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)
5509DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, 5509DEFUN ("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.
5512This means that the file has not been changed since it was visited or saved. */) 5512This means that the file has not been changed since it was visited or saved.
5513See 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.
5567The value is a list of the form (HIGH . LOW), like the time values 5568The value is a list of the form (HIGH . LOW), like the time values
5568that `file-attributes' returns. */) 5569that `file-attributes' returns. If the current buffer has no recorded
5570file modification time, this function returns 0.
5571See 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);