]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fverify_visited_file_modtime, Fvisited_file_modtime):
authorLuc Teirlinck <teirllm@auburn.edu>
Thu, 15 Apr 2004 02:32:32 +0000 (02:32 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Thu, 15 Apr 2004 02:32:32 +0000 (02:32 +0000)
Add hyperlink to Elisp manual to the docstring.

src/ChangeLog
src/fileio.c

index 6b836e5e48a4fe9126f32dd4afa57a399b11623d..c9cf12dc159ec361c4e50e9b1abfde6ec8973027 100644 (file)
@@ -1,3 +1,8 @@
+2004-04-14  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * fileio.c (Fverify_visited_file_modtime, Fvisited_file_modtime):
+       Add hyperlink to Elisp manual to the docstring.
+
 2004-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * callint.c (fix_command): Use XDCR.
index 3f17da7033d00def7301b7927c35459375de9b61..c0195558a3c4e562cf1c47b7290321f457fe0ce1 100644 (file)
@@ -5509,7 +5509,8 @@ e_write (desc, string, start, end, coding)
 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
        Sverify_visited_file_modtime, 1, 1, 0,
        doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
-This means that the file has not been changed since it was visited or saved.  */)
+This means that the file has not been changed since it was visited or saved.
+See Info node `(elisp)Modification Time' for more details.  */)
      (buf)
      Lisp_Object buf;
 {
@@ -5565,7 +5566,9 @@ DEFUN ("visited-file-modtime", Fvisited_file_modtime,
        Svisited_file_modtime, 0, 0, 0,
        doc: /* Return the current buffer's recorded visited file modification time.
 The value is a list of the form (HIGH . LOW), like the time values
-that `file-attributes' returns.  */)
+that `file-attributes' returns.  If the current buffer has no recorded
+file modification time, this function returns 0.
+See Info node `(elisp)Modification Time' for more details.  */)
      ()
 {
   return long_to_cons ((unsigned long) current_buffer->modtime);