# HG changeset patch # User Karl Heuer # Date 797893562 0 # Node ID 2278f5ceb043dda0a0f5c02a160ca413e47c696a # Parent aee30032f324f1c784436a9664a616511041d3f8 (Fencode_time): Fix missing \n\'s. diff -r aee30032f324 -r 2278f5ceb043 src/editfns.c --- a/src/editfns.c Fri Apr 14 20:46:11 1995 +0000 +++ b/src/editfns.c Fri Apr 14 21:06:02 1995 +0000 @@ -737,12 +737,12 @@ DEFUN ("encode-time", Fencode_time, Sencode_time, 6, 7, 0, "Convert SEC, MIN, HOUR, DAY, MONTH, YEAR and ZONE to internal time.\n\ -This is the reverse operation of `decode-time', which see. ZONE defaults -to the current time zone and daylight savings time if not specified; if -specified, it can be either a list (as from `current-time-zone') or an -integer (as from `decode-time'), and is applied without consideration for -daylight savings time. If YEAR is less than 100, values in the range 0 to -37 are interpreted as in the 21st century, all other values arein the 20th +This is the reverse operation of `decode-time', which see. ZONE defaults\n\ +to the current time zone and daylight savings time if not specified; if\n\ +specified, it can be either a list (as from `current-time-zone') or an\n\ +integer (as from `decode-time'), and is applied without consideration for\n\ +daylight savings time. If YEAR is less than 100, values in the range 0 to\n\ +37 are interpreted as in the 21st century, all other values are in the 20th\n\ century.") (sec, min, hour, day, month, year, zone) Lisp_Object sec, min, hour, day, month, year, zone;