From: Karl Heuer Date: Fri, 14 Apr 1995 21:06:02 +0000 (+0000) Subject: (Fencode_time): Fix missing \n\'s. X-Git-Tag: emacs-19.34~4407 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=167d976be457011a0dc60a3ba4be667475cbb6e3;p=emacs.git (Fencode_time): Fix missing \n\'s. --- 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\ 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;