diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2021-12-05 23:13:06 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2021-12-05 23:24:10 -0800 |
commit | c1145c31adf143460911dd87b408d35ea88a1a92 (patch) | |
tree | c08262764f44fb1a82959f0f9d1f5dd9377fb6b5 /lisp/org/org-compat.el | |
parent | a21b8c5d7dfb3808cf18a5ac118e25940c9b5518 (diff) | |
download | emacs-c1145c31adf143460911dd87b408d35ea88a1a92.tar.gz emacs-c1145c31adf143460911dd87b408d35ea88a1a92.tar.bz2 emacs-c1145c31adf143460911dd87b408d35ea88a1a92.zip |
Update org-compat doc string
* lisp/org/org-compat.el (file-attribute-modification-time):
Update doc string to match that of builtin Emacs.
Diffstat (limited to 'lisp/org/org-compat.el')
-rw-r--r-- | lisp/org/org-compat.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/org/org-compat.el b/lisp/org/org-compat.el index d230ee2b11f..b140df76223 100644 --- a/lisp/org/org-compat.el +++ b/lisp/org/org-compat.el @@ -170,8 +170,7 @@ extension beyond end of line was not controllable." (defsubst file-attribute-modification-time (attributes) "The modification time in ATTRIBUTES returned by `file-attributes'. This is the time of the last change to the file's contents, and -is a list of integers (HIGH LOW USEC PSEC) in the same style -as (current-time)." +is a Lisp timestamp in the same style as `current-time'." (nth 5 attributes))) (unless (fboundp 'file-attribute-size) |