Show
Ignore:
Timestamp:
08/18/06 08:35:31 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lispref/os.texi

    r4140 r4148  
    12571257This stands for the year with century. 
    12581258@item %Z 
    1259 This stands for the time zone abbreviation. 
     1259This stands for the time zone abbreviation (e.g., @samp{EST}). 
     1260@item %z 
     1261This stands for the time zone numerical offset (e.g., @samp{-0500}). 
    12601262@end table 
    12611263 
     
    12871289is the local time zone (see @code{current-time-zone}). 
    12881290 
    1289 This function uses the C library function @code{strftime} to do most of 
    1290 the work.  In order to communicate with that function, it first encodes 
    1291 its argument using the coding system specified by 
    1292 @code{locale-coding-system} (@pxref{Locales}); after @code{strftime} 
    1293 returns the resulting string, @code{format-time-string} decodes the 
    1294 string using that same coding system. 
     1291This function uses the C library function @code{strftime} 
     1292(@pxref{Formatting Calendar Time,,, libc, The GNU C Library Reference 
     1293Manual}) to do most of the work.  In order to communicate with that 
     1294function, it first encodes its argument using the coding system 
     1295specified by @code{locale-coding-system} (@pxref{Locales}); after 
     1296@code{strftime} returns the resulting string, 
     1297@code{format-time-string} decodes the string using that same coding 
     1298system. 
    12951299@end defun 
    12961300