;ELC   
;;; Compiled by buildd@akateko.buildd on Fri Oct 25 13:53:03 2013
;;; from file /build/buildd/emacs23-23.4+1/debian/build-x/lisp/time.el
;;; in Emacs version 23.4.1
;;; with all optimizations.

;;; This file contains utf-8 non-ASCII characters,
;;; and so cannot be loaded into Emacs 22 or earlier.
(and (boundp 'emacs-version)
     (< (aref emacs-version (1- (length emacs-version))) ?A)
     (string-lessp emacs-version "23")
     (error "`time.el' was compiled for Emacs 23 or later"))

;;;;;;;;;;;;;;;;;;;;;;;;;;;


(custom-declare-group 'display-time nil "Display time and load in mode line of Emacs." :group 'mode-line :group 'mail)
#@206 File name of mail inbox file, for indicating existence of new mail.
Non-nil and not a string means don't check for mail; nil means use
default, which is system-dependent, and is the same as used by Rmail.
(custom-declare-variable 'display-time-mail-file 'nil '(#$ . 654) :type '(choice (const :tag "None" none) (const :tag "Default" nil) (file :format "%v")) :group 'display-time)
#@199 Name of mail inbox directory, for indicating existence of new mail.
Any nonempty regular file in the directory is regarded as newly arrived mail.
If nil, do not check a directory for arriving mail.
(custom-declare-variable 'display-time-mail-directory 'nil '(#$ . 1042) :type '(choice (const :tag "None" nil) (directory :format "%v")) :group 'display-time)
#@247 Function to call, for indicating existence of new mail.
If nil, that means use the default method: check that the file
specified by `display-time-mail-file' is nonempty or that the
directory `display-time-mail-directory' contains nonempty files.
(custom-declare-variable 'display-time-mail-function 'nil '(#$ . 1406) :type '(choice (const :tag "Default" nil) (function)) :group 'display-time)
#@299 Which load average value will be shown in the mode line.
Almost every system can provide values of load for past 1 minute, past 5 or
past 15 minutes.  The default is to display 1 minute load average.
The value can be one of:

  0   => 1 minute load
  1   => 5 minutes load
  2   => 15 minutes load
(custom-declare-variable 'display-time-default-load-average '0 '(#$ . 1806) :type '(choice (const :tag "1 minute load" 0) (const :tag "5 minutes load" 1) (const :tag "15 minutes load" 2) (const :tag "None" nil)) :group 'display-time)
#@50 Load average currently being shown in mode line.
(defvar display-time-load-average nil (#$ . 2344))
#@71 Load-average values below this value won't be shown in the mode line.
(custom-declare-variable 'display-time-load-average-threshold '0.1 '(#$ . 2450) :type 'number :group 'display-time)
#@76 Non-nil means \[display-time] should display day and date as well as time.
(custom-declare-variable 'display-time-day-and-date 'nil '(#$ . 2642) :type 'boolean :group 'display-time)
(byte-code "\301B\302\301!\204 \303\301\304\"\210\304\207" [current-load-list display-time-timer default-boundp set-default nil] 3)
#@51 Seconds between updates of time in the mode line.
(custom-declare-variable 'display-time-interval '60 '(#$ . 2965) :type 'integer :group 'display-time)
#@134 Non-nil indicates time should be displayed as hh:mm, 0 <= hh <= 23.
A value of nil means 1 <= hh <= 12, and an AM/PM suffix is used.
(custom-declare-variable 'display-time-24hr-format 'nil '(#$ . 3124) :type 'boolean :group 'display-time)
(byte-code "\301B\302\301!\204 \303\301\304\"\210\304\207" [current-load-list display-time-string default-boundp set-default nil] 3)
#@75 List of functions to be called when the time is updated on the mode line.
(custom-declare-variable 'display-time-hook 'nil '(#$ . 3505) :type 'hook :group 'display-time)
#@114 Time when mail file's file system was recorded to be down.
If that file system seems to be up, the value is nil.
(defvar display-time-server-down-time nil (#$ . 3682))
#@382 Alist of zoneinfo-style time zones and places for `display-time-world'.
Each element has the form (TIMEZONE LABEL).
TIMEZONE should be a string of the form AREA/LOCATION, where AREA is
the name of a region -- a continent or ocean, and LOCATION is the name
of a specific location, e.g., a city, within that region.
LABEL is a string to display as the label of that TIMEZONE's time.
(custom-declare-variable 'zoneinfo-style-world-list ''(("America/Los_Angeles" "Seattle") ("America/New_York" "New York") ("Europe/London" "London") ("Europe/Paris" "Paris") ("Asia/Calcutta" "Bangalore") ("Asia/Tokyo" "Tokyo")) '(#$ . 3857) :group 'display-time :type '(repeat (list string string)) :version "23.1")
#@405 Alist of traditional-style time zones and places for `display-time-world'.
Each element has the form (TIMEZONE LABEL).
TIMEZONE should be a string of the form:

     std[+|-]offset[dst[offset][,date[/time],date[/time]]]

See the documentation of the TZ environment variable on your system,
for more details about the format of TIMEZONE.
LABEL is a string to display as the label of that TIMEZONE's time.
(custom-declare-variable 'legacy-style-world-list ''(("PST8PDT" "Seattle") ("EST5EDT" "New York") ("GMT0BST" "London") ("CET-1CDT" "Paris") ("IST-5:30" "Bangalore") ("JST-9" "Tokyo")) '(#$ . 4560) :group 'display-time :type '(repeat (list string string)) :version "23.1")
#@376 Alist of time zones and places for `display-time-world' to display.
Each element has the form (TIMEZONE LABEL).
TIMEZONE should be in the format supported by `set-time-zone-rule' on
your system.  See the documentation of `zoneinfo-style-world-list' and
`legacy-style-world-list' for two widely used formats.
LABEL is a string to display as the label of that TIMEZONE's time.
(custom-declare-variable 'display-time-world-list '(let (gmt nyt) (set-time-zone-rule "America/New York") (setq nyt (format-time-string "%z")) (set-time-zone-rule "Europe/London") (setq gmt (format-time-string "%z")) (set-time-zone-rule nil) (if (string-equal nyt gmt) legacy-style-world-list zoneinfo-style-world-list)) '(#$ . 5243) :group 'display-time :type '(repeat (list string string)) :version "23.1")
#@57 Format of the time displayed, see `format-time-string'.
(custom-declare-variable 'display-time-world-time-format '"%A %d %B %R %Z" '(#$ . 6033) :group 'display-time :type 'string :version "23.1")
#@33 Name of the world clock buffer.
(custom-declare-variable 'display-time-world-buffer-name '"*wclock*" '(#$ . 6235) :group 'display-time :type 'string :version "23.1")
#@50 If non-nil, a timer will update the world clock.
(custom-declare-variable 'display-time-world-timer-enable 't '(#$ . 6407) :group 'display-time :type 'boolean :version "23.1")
#@51 Interval in seconds for updating the world clock.
(custom-declare-variable 'display-time-world-timer-second '60 '(#$ . 6589) :group 'display-time :type 'integer :version "23.1")
#@36 Keymap of Display Time World mode.
(defvar display-time-world-mode-map (byte-code "\301 \302\303\304#\210)\207" [map make-sparse-keymap define-key "q" kill-this-buffer] 4) (#$ . 6773))
#@271 Enable display of time, load level, and mail flag in mode lines.
This display updates automatically every minute.
If `display-time-day-and-date' is non-nil, the current day and date
are displayed as well.
This runs the normal hook `display-time-hook' after each update.
(defalias 'display-time #[nil "\300\301!\207" [display-time-mode 1] 2 (#$ . 6968) nil])
#@217 Face to use for `display-time-mail-string'.
If `display-time-use-mail-icon' is non-nil, the image's
background color is the background of this face.  Set this to
make the mail indicator stand out on a color display.
(custom-declare-variable 'display-time-mail-face 'nil '(#$ . 7333) :group 'mode-line-faces :group 'display-time :version "22.1" :type '(choice (const :tag "None" nil) face))
#@137 Image specification to offer as the mail indicator on a graphic display.
See `display-time-use-mail-icon' and `display-time-mail-face'.
(defvar display-time-mail-icon (find-image '((:type xpm :file "letter.xpm" :ascent center) (:type pbm :file "letter.pbm" :ascent center))) (#$ . 7730))
#@200 Non-nil means use an icon as mail indicator on a graphic display.
Otherwise use `display-time-mail-string'.  The icon may consume less
of the mode line.  It is specified by `display-time-mail-icon'.
(custom-declare-variable 'display-time-use-mail-icon 'nil '(#$ . 8025) :group 'display-time :type 'boolean)
#@134 String to use as the mail indicator in `display-time-string-forms'.
This can use the Unicode letter character if you can display it.
(custom-declare-variable 'display-time-mail-string '"Mail" '(#$ . 8339) :group 'display-time :version "22.1" :type '(choice (const "Mail") (const :tag "Unicode letter character" "✉") string))
#@254 String specifying format for displaying the time in the mode line.
See the function `format-time-string' for an explanation of
how to write this string.  If this is nil, the defaults
depend on `display-time-day-and-date' and `display-time-24hr-format'.
(custom-declare-variable 'display-time-format 'nil '(#$ . 8673) :type '(choice (const :tag "Default" nil) string) :group 'display-time)
#@718 List of expressions governing display of the time in the mode line.
For most purposes, you can control the time format using `display-time-format'
which is a more standard interface.

This expression is a list of expressions that can involve the keywords
`load', `day', `month', and `year', `12-hours', `24-hours', `minutes',
`seconds', all numbers in string form, and `monthname', `dayname', `am-pm',
and `time-zone' all alphabetic strings, and `mail' a true/nil value.

For example, the form

  '((substring year -2) "/" month "/" day
    " " 24-hours ":" minutes ":" seconds
    (if time-zone " (") time-zone (if time-zone ")")
    (if mail " Mail" ""))

would give mode line times like `94/12/30 21:07:48 (UTC)'.
(custom-declare-variable 'display-time-string-forms ''((if (and (not display-time-format) display-time-day-and-date) (format-time-string "%a %b %e " now) #1="") (propertize (format-time-string (or display-time-format (if display-time-24hr-format "%H:%M" "%-I:%M%p")) now) 'help-echo (format-time-string "%a %b %e, %Y" now)) load (if mail (concat " " (propertize display-time-mail-string 'display `(when (and display-time-use-mail-icon (display-graphic-p)) ,@display-time-mail-icon ,@(if (and display-time-mail-face (memq (plist-get (cdr display-time-mail-icon) :type) '(pbm xbm))) (let ((bg (face-attribute display-time-mail-face :background))) (if (stringp bg) (list :background bg))))) 'face display-time-mail-face 'help-echo "You have new mail; mouse-2: Read mail" 'mouse-face 'mode-line-highlight 'local-map (make-mode-line-mouse-map 'mouse-2 read-mail-command))) #1#)) '(#$ . 9069) :type 'sexp :group 'display-time)
(defalias 'display-time-event-handler #[nil "\305 \210\306\307!\210\310 	\311\n\312H\n\313H\n\314HE\n\315H\316_\307#\211@@V\206a @@U\2039 A@A@V\206a @@U\203U A@A@U\203U \3138\3138V\206a \317\n\320\f\"\f#\210\321\n!+\207" [current display-time-timer timer next-time display-time-interval display-time-update sit-for 0 current-time timer-relative-time 1 2 3 4 5 timer-set-time timer-next-integral-multiple-of-time timer-activate] 6])
(defalias 'display-time-next-load-average #[nil "T\211\301U\203 \302\303 \210\304\302!\207" [display-time-load-average 3 0 display-time-update sit-for] 2 nil nil])
(defalias 'display-time-mail-check-directory #[nil "\303\304\"\305\211\203, 	\305U\203, 	\306\n@!\203\" \307\310\n@!8\206# \305\\\nA\211\204 	\305V\2053 	*\207" [display-time-mail-directory size mail-files directory-files t 0 file-regular-p 7 file-attributes] 5])
#@193 Update the display-time info for the mode line.
However, don't redisplay right now.

This is used for things like Rmail `g' that want to force an
update which can wait for the next redisplay.
(defalias 'display-time-update #[nil "\306 \307!\n\204 \310\202 \311\312\313\217\f\206\" \314\315!\206\" \316 P./\203/ / \206\206 0\2039 \317 \206\206 .;\205\206 1\203c A@1Z\320V\204c A@1W\205\206 A@1Z\321V\205\206 \306 2\322.!\306 A@2A@Z\323V\203\202 \306 A@1\202\205 \3111)3	\324\325O4\3264!5\3275\324\\\330\246T!65\330Y\203\252 \331\202\253 \3327	\333\334O8	\335\336O9\337!A@:	\340\341O;	\323\342O<	\343\344O=\345=\346\"A>	\347\350O?\351\352@\310#A\353\354!\210.\355 \207" [now time display-time-load-average load display-time-mail-file rmail-spool-directory current-time current-time-string #1="" nil (byte-code "\303_	\304 8V\203 \305\207\306\307	\304 8\"\310\n\311\312O\313\n\312\314OQ\315\316\317\320\"\321\322\323\324	\311U\2033 \325\202> 	\326U\203= \327\202> \330\331Q&)\207" [display-time-load-average-threshold display-time-load-average str 100 load-average #1# format " %03d" propertize 0 -2 "." nil local-map make-mode-line-mouse-map mouse-2 display-time-next-load-average mouse-face mode-line-highlight help-echo "System load average for past " "1 minute" 1 "5 minutes" "15 minutes" "; mouse-2: next"] 10) ((error #1#)) getenv "MAIL" user-login-name display-time-mail-check-directory 1200 -64336 display-time-file-nonempty-p 20 11 13 string-to-number int-to-string 12 "pm" "am" 14 16 17 19 current-time-zone 8 10 24 4 7 assoc (("Jan" . "1") ("Feb" . "2") ("Mar" . "3") ("Apr" . "4") ("May" . "5") ("Jun" . "6") ("Jul" . "7") ("Aug" . "8") ("Sep" . "9") ("Oct" . "10") ("Nov" . "11") ("Dec" . "12")) 0 3 mapconcat eval run-hooks display-time-hook force-mode-line-update mail-spool-file display-time-mail-function display-time-mail-directory display-time-server-down-time start-time mail 24-hours hour 12-hours am-pm minutes seconds time-zone day year monthname month dayname display-time-string-forms display-time-string] 4 (#$ . 11599)])
(defalias 'display-time-file-nonempty-p #[(file) "\301!\205 \302\303\304\305!!8W\207" [file file-exists-p 0 7 file-attributes file-chase-links] 5])
#@272 Non-nil if Display-Time mode is enabled.
See the command `display-time-mode' for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `display-time-mode'.
(custom-declare-variable 'display-time-mode 'nil '(#$ . 13851) :set 'custom-set-minor-mode :initialize 'custom-initialize-default :group 'display-time :type 'boolean)
#@447 Toggle display of time, load level, and mail flag in mode lines.
With a numeric arg, enable this display if arg is positive.

When this display is enabled, it updates automatically every minute
(you can control the number of seconds between updates by
customizing `display-time-interval').
If `display-time-day-and-date' is non-nil, the current day and date
are displayed as well.
This runs the normal hook `display-time-hook' after each update.
(defalias 'display-time-mode #[(&optional arg) "\306 	\307=\203 \n?\202( 	\203 \310	!\311V\202( \n\204\" \312\202( \313\314\302\"\210\315\2031 \316!\210\315\317\204; \320$%\n\203` \304>\204N \321\322\"\323\312&\324#\325 \210\326\327\324\"\210\202e \330\327\324\"\210\331\332\n\203o \333\202p \334\"\210\335\336!\203\225 \337\302!\210\306 \203\210 \306 \232\203\225 \313\340\n\203\222 \341\202\223 \342\"\210)\343 \210\n\207" [#1=#:last-message arg display-time-mode display-time-timer display-time-string global-mode-string current-message toggle prefix-numeric-value 0 t message "Toggling %s off; better pass an explicit argument." nil cancel-timer #2="" (#2#) append (display-time-string) run-at-time display-time-event-handler display-time-update add-hook rmail-after-get-new-mail-hook remove-hook run-hooks display-time-mode-hook display-time-mode-on-hook display-time-mode-off-hook called-interactively-p any customize-mark-as-set "Display-Time mode %sabled" "en" "dis" force-mode-line-update display-time-default-load-average display-time-load-average display-time-interval] 4 (#$ . 14296) (list (or current-prefix-arg 'toggle))])
(byte-code "\301\302\303\304\300!\205\n #\207" [display-time-mode-map add-minor-mode display-time-mode nil boundp] 5)
#@92 Major mode for buffer that displays times in various time zones.
See `display-time-world'.
(defalias 'display-time-world-mode #[nil "\303 \210\304\305\306\n!\207" [major-mode mode-name display-time-world-mode-map kill-all-local-variables display-time-world-mode "World clock" use-local-map] 2 (#$ . 16022) nil])
#@74 Replace current buffer text with times in various zones, based on ALIST.
(defalias 'display-time-world-display #[(alist) "\306\211\307 \210\310\311\312\216\f\311\211\203O @\211\211A@)\313!\314@!\210\315\n\316!E\"V\203E *A\211\204 +\n\203p \n\211A@\317\n\211A@ZT\320\"\n\211A@\321\261\210\202P *\322\323!*\207" [buffer-undo-list inhibit-read-only result max-width alist zone t erase-buffer 0 nil ((set-time-zone-rule nil)) string-width set-time-zone-rule append format-time-string make-string 32 "\n" delete-backward-char 1 --dolist-tail-- x label width display-time-world-time-format] 7 (#$ . 16342)])
#@172 Enable updating display of times in various time zones.
`display-time-world-list' specifies the zones.
To turn off the world time display, go to that window and type `q'.
(defalias 'display-time-world #[nil "\203 \304	!\204 \305\306\n\307#\210r\310	!q\210\311!\210)\312	!\210\313 \210\314 \207" [display-time-world-timer-enable display-time-world-buffer-name display-time-world-timer-second display-time-world-list get-buffer run-at-time t display-time-world-timer get-buffer-create display-time-world-display pop-to-buffer fit-window-to-buffer display-time-world-mode] 4 (#$ . 16993) nil])
(defalias 'display-time-world-timer #[nil "\305!\203 r\305!q\210\306	!)\207\n\205/ \211A@\307\f\310H!\311\232\203+ \312\f!\210)\202 )\207" [display-time-world-buffer-name display-time-world-list timer-list list elt get-buffer display-time-world-display symbol-name 5 "display-time-world-timer" cancel-timer] 3])
#@192 Return a string giving the uptime of this instance of Emacs.
FORMAT is a string to format the result, using `format-seconds'.
For example, the Unix uptime command format is "%D, %z%2h:%.2m".
(defalias 'emacs-uptime #[(&optional format) "\303\206 \304\305\306\307 	\"!\"\310\311!\203 \312\313\n\"\202 \n)\207" [format before-init-time str format-seconds "%Y, %D, %H, %M, %z%S" float-time time-subtract current-time called-interactively-p interactive message "%s"] 6 (#$ . 17916) nil])
#@66 Return a string giving the duration of the Emacs initialization.
(defalias 'emacs-init-time #[nil "\303\304\305\306	\"!\"\307\310!\203 \311\312\n\"\202 \n)\207" [after-init-time before-init-time str format "%.1f seconds" float-time time-subtract called-interactively-p interactive message "%s"] 6 (#$ . 18411) nil])
(provide 'time)
