# HG changeset patch # User Luc Teirlinck # Date 1081996175 0 # Node ID 0ea7bf2995a92faeb27dbf9e96a6ae17f743b1c6 # Parent 727ae6da06b474714ca20520637c7c4d5907753b (Fverify_visited_file_modtime, Fvisited_file_modtime): Add hyperlink to Elisp manual to the docstring. diff -r 727ae6da06b4 -r 0ea7bf2995a9 src/fileio.c --- a/src/fileio.c Thu Apr 15 00:26:17 2004 +0000 +++ b/src/fileio.c Thu Apr 15 02:29:35 2004 +0000 @@ -5509,7 +5509,8 @@ 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 @@ 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);