aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-04-14 21:06:02 +0000
committerKarl Heuer1995-04-14 21:06:02 +0000
commit167d976be457011a0dc60a3ba4be667475cbb6e3 (patch)
tree6117b71ed354f932cf7dc0a9c6d662101be60d42 /src
parent67501c0181b7ffa881fd41c6b5c1cfce21f19383 (diff)
downloademacs-167d976be457011a0dc60a3ba4be667475cbb6e3.tar.gz
emacs-167d976be457011a0dc60a3ba4be667475cbb6e3.zip
(Fencode_time): Fix missing \n\'s.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/editfns.c b/src/editfns.c
index c0dabc71fb7..3685b26e366 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -737,12 +737,12 @@ ZONE is an integer indicating the number of seconds east of Greenwich.\n\
737 737
738DEFUN ("encode-time", Fencode_time, Sencode_time, 6, 7, 0, 738DEFUN ("encode-time", Fencode_time, Sencode_time, 6, 7, 0,
739 "Convert SEC, MIN, HOUR, DAY, MONTH, YEAR and ZONE to internal time.\n\ 739 "Convert SEC, MIN, HOUR, DAY, MONTH, YEAR and ZONE to internal time.\n\
740This is the reverse operation of `decode-time', which see. ZONE defaults 740This is the reverse operation of `decode-time', which see. ZONE defaults\n\
741to the current time zone and daylight savings time if not specified; if 741to the current time zone and daylight savings time if not specified; if\n\
742specified, it can be either a list (as from `current-time-zone') or an 742specified, it can be either a list (as from `current-time-zone') or an\n\
743integer (as from `decode-time'), and is applied without consideration for 743integer (as from `decode-time'), and is applied without consideration for\n\
744daylight savings time. If YEAR is less than 100, values in the range 0 to 744daylight savings time. If YEAR is less than 100, values in the range 0 to\n\
74537 are interpreted as in the 21st century, all other values arein the 20th 74537 are interpreted as in the 21st century, all other values are in the 20th\n\
746century.") 746century.")
747 (sec, min, hour, day, month, year, zone) 747 (sec, min, hour, day, month, year, zone)
748 Lisp_Object sec, min, hour, day, month, year, zone; 748 Lisp_Object sec, min, hour, day, month, year, zone;