Merge from trunk
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 11 Dec 2010 00:13:08 +0000 (19:13 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 11 Dec 2010 00:13:08 +0000 (19:13 -0500)
19 files changed:
1  2 
doc/lispref/functions.texi
doc/lispref/objects.texi
lisp/ChangeLog.trunk
lisp/emacs-lisp/byte-opt.el
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/lisp-mode.el
lisp/help-fns.el
lisp/ldefs-boot.el
lisp/subr.el
src/ChangeLog.trunk
src/alloc.c
src/buffer.c
src/data.c
src/eval.c
src/image.c
src/keyboard.c
src/lisp.h
src/lread.c
src/print.c

Simple merge
Simple merge
Simple merge
    "Don't call this!"
    ;; fetch and return the offset for the current opcode.
    ;; return nil if this opcode has no offset
-   ;; OP, PTR and BYTES are used and set dynamically
-   (defvar op)
-   (defvar ptr)
-   (defvar bytes)
-   (cond ((< op byte-nth)
-        (let ((tem (logand op 7)))
-          (setq op (logand op 248))
+   ;; Used and set dynamically in byte-decompile-bytecode-1.
+   (defvar bytedecomp-op)
+   (defvar bytedecomp-ptr)
+   (defvar bytedecomp-bytes)
+   (cond ((< bytedecomp-op byte-nth)
+        (let ((tem (logand bytedecomp-op 7)))
+          (setq bytedecomp-op (logand bytedecomp-op 248))
           (cond ((eq tem 6)
-                 (setq ptr (1+ ptr))   ;offset in next byte
-                 (aref bytes ptr))
+                 ;; Offset in next byte.
+                 (setq bytedecomp-ptr (1+ bytedecomp-ptr))
+                 (aref bytedecomp-bytes bytedecomp-ptr))
                 ((eq tem 7)
-                 (setq ptr (1+ ptr))   ;offset in next 2 bytes
-                 (+ (aref bytes ptr)
-                    (progn (setq ptr (1+ ptr))
-                           (lsh (aref bytes ptr) 8))))
+                 ;; Offset in next 2 bytes.
+                 (setq bytedecomp-ptr (1+ bytedecomp-ptr))
+                 (+ (aref bytedecomp-bytes bytedecomp-ptr)
+                    (progn (setq bytedecomp-ptr (1+ bytedecomp-ptr))
+                           (lsh (aref bytedecomp-bytes bytedecomp-ptr) 8))))
                 (t tem))))             ;offset was in opcode
-       ((>= op byte-constant)
-        (prog1 (- op byte-constant)    ;offset in opcode
-          (setq op byte-constant)))
-       ((or (and (>= op byte-constant2)
-                 (<= op byte-goto-if-not-nil-else-pop))
-            (= op byte-stack-set2))
-        (setq ptr (1+ ptr))            ;offset in next 2 bytes
-        (+ (aref bytes ptr)
-           (progn (setq ptr (1+ ptr))
-                  (lsh (aref bytes ptr) 8))))
-       ((and (>= op byte-listN)
-             (<= op byte-discardN))
-        (setq ptr (1+ ptr))            ;offset in next byte
-        (aref bytes ptr))))
+       ((>= bytedecomp-op byte-constant)
+        (prog1 (- bytedecomp-op byte-constant) ;offset in opcode
+          (setq bytedecomp-op byte-constant)))
 -      ((and (>= bytedecomp-op byte-constant2)
 -            (<= bytedecomp-op byte-goto-if-not-nil-else-pop))
++      ((or (and (>= bytedecomp-op byte-constant2)
++                  (<= bytedecomp-op byte-goto-if-not-nil-else-pop))
++             (= bytedecomp-op byte-stack-set2))
+        ;; Offset in next 2 bytes.
+        (setq bytedecomp-ptr (1+ bytedecomp-ptr))
+        (+ (aref bytedecomp-bytes bytedecomp-ptr)
+           (progn (setq bytedecomp-ptr (1+ bytedecomp-ptr))
+                  (lsh (aref bytedecomp-bytes bytedecomp-ptr) 8))))
+       ((and (>= bytedecomp-op byte-listN)
 -            (<= bytedecomp-op byte-insertN))
++            (<= bytedecomp-op byte-discardN))
+        (setq bytedecomp-ptr (1+ bytedecomp-ptr)) ;offset in next byte
+        (aref bytedecomp-bytes bytedecomp-ptr))))
  
  
  ;; This de-compiler is used for inline expansion of compiled functions,
                                           (cons (list tmp)
                                                 byte-compile-variables)))))))
            ((and make-spliceable
-                 (eq op 'byte-return))
-            (if (= ptr (1- length))
-                (setq op nil)
+                 (eq bytedecomp-op 'byte-return))
+            (if (= bytedecomp-ptr (1- length))
+                (setq bytedecomp-op nil)
               (setq offset (or endtag (setq endtag (byte-compile-make-tag)))
-                    op 'byte-goto)))
-           ((eq op 'byte-stack-set2)
-            (setq op 'byte-stack-set))
-           ((and (eq op 'byte-discardN) (>= offset #x80))
 -                   bytedecomp-op 'byte-goto))))
++                   bytedecomp-op 'byte-goto)))
++          ((eq bytedecomp-op 'byte-stack-set2)
++           (setq bytedecomp-op 'byte-stack-set))
++          ((and (eq bytedecomp-op 'byte-discardN) (>= offset #x80))
 +           ;; The top bit of the operand for byte-discardN is a flag,
 +           ;; saying whether the top-of-stack is preserved.  In
 +           ;; lapcode, we represent this by using a different opcode
 +           ;; (with the flag removed from the operand).
-            (setq op 'byte-discardN-preserve-tos)
++           (setq bytedecomp-op 'byte-discardN-preserve-tos)
 +           (setq offset (- offset #x80))))
        ;; lap = ( [ (pc . (op . arg)) ]* )
-       (setq lap (cons (cons optr (cons op (or offset 0)))
+       (setq lap (cons (cons optr (cons bytedecomp-op (or offset 0)))
                      lap))
-       (setq ptr (1+ ptr)))
+       (setq bytedecomp-ptr (1+ bytedecomp-ptr)))
      ;; take off the dummy nil op that we replaced a trailing "return" with.
      (let ((rest lap))
        (while rest
Simple merge
Simple merge
Simple merge
@@@ -76,7 -76,7 +76,7 @@@ Display alphabetical listing of ABBREV-
  ;;;***
  \f
  ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19672 56753))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/ada-mode.el
  
  (autoload 'ada-add-extensions "ada-mode" "\
@@@ -90,7 -90,7 +90,6 @@@ the file name
  
  (autoload 'ada-mode "ada-mode" "\
  Ada mode is the major mode for editing Ada code.
--\\{ada-mode-map}
  
  \(fn)" t nil)
  
@@@ -108,7 -108,7 +107,7 @@@ Insert a descriptive header at the top 
  ;;;***
  \f
  ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19672 41738))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/ada-xref.el
  
  (autoload 'ada-find-file "ada-xref" "\
@@@ -123,7 -123,7 +122,7 @@@ Completion is available
  ;;;;;;  add-change-log-entry-other-window add-change-log-entry find-change-log
  ;;;;;;  prompt-for-change-log-name add-log-mailing-address add-log-full-name
  ;;;;;;  add-log-current-defun-function) "add-log" "vc/add-log.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19661 46305))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from vc/add-log.el
  
  (put 'change-log-default-name 'safe-local-variable 'string-or-null-p)
@@@ -497,7 -497,7 +496,7 @@@ A replacement function for `newline-and
  ;;;***
  \f
  ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19696 28661))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from allout.el
  
  (put 'allout-use-hanging-indents 'safe-local-variable (if (fboundp 'booleanp) 'booleanp '(lambda (x) (member x '(t nil)))))
@@@ -804,7 -804,7 +803,7 @@@ setup for auto-startup
  ;;;***
  \f
  ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp"
- ;;;;;;  "net/ange-ftp.el" (19619 52030))
 -;;;;;;  "net/ange-ftp.el" (19668 18649))
++;;;;;;  "net/ange-ftp.el" (19714 43298))
  ;;; Generated autoloads from net/ange-ftp.el
  
  (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir)
@@@ -854,7 -854,7 +853,7 @@@ You can specify the one's name by NAME
  ;;;***
  \f
  ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on)
- ;;;;;;  "ansi-color" "ansi-color.el" (19598 13691))
 -;;;;;;  "ansi-color" "ansi-color.el" (19594 48841))
++;;;;;;  "ansi-color" "ansi-color.el" (19714 43298))
  ;;; Generated autoloads from ansi-color.el
  
  (autoload 'ansi-color-for-comint-mode-on "ansi-color" "\
@@@ -880,7 -880,7 +879,7 @@@ This is a good function to put in `comi
  ;;;***
  \f
  ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules)
- ;;;;;;  "antlr-mode" "progmodes/antlr-mode.el" (19619 52030))
 -;;;;;;  "antlr-mode" "progmodes/antlr-mode.el" (19599 45674))
++;;;;;;  "antlr-mode" "progmodes/antlr-mode.el" (19714 43298))
  ;;; Generated autoloads from progmodes/antlr-mode.el
  
  (autoload 'antlr-show-makefile-rules "antlr-mode" "\
@@@ -904,7 -904,7 +903,6 @@@ commentary with value `antlr-help-unkno
  
  (autoload 'antlr-mode "antlr-mode" "\
  Major mode for editing ANTLR grammar files.
--\\{antlr-mode-map}
  
  \(fn)" t nil)
  
@@@ -1043,8 -1043,8 +1041,8 @@@ Returns list of symbols and documentati
  
  ;;;***
  \f
- ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (19668
 -;;;;;;  19473))
++;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from arc-mode.el
  
  (autoload 'archive-mode "arc-mode" "\
@@@ -1064,7 -1064,7 +1062,7 @@@ archive
  
  ;;;***
  \f
- ;;;### (autoloads (array-mode) "array" "array.el" (19640 47194))
 -;;;### (autoloads (array-mode) "array" "array.el" (19672 56753))
++;;;### (autoloads (array-mode) "array" "array.el" (19714 43298))
  ;;; Generated autoloads from array.el
  
  (autoload 'array-mode "array" "\
@@@ -1342,8 -1342,8 +1340,8 @@@ Keymap summar
  
  ;;;***
  \f
- ;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (19439
 -;;;;;;  4022))
++;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/asm-mode.el
  
  (autoload 'asm-mode "asm-mode" "\
@@@ -1425,7 -1425,7 +1423,7 @@@ etc. to supply digit arguments
  ;;;***
  \f
  ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19594 48841))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/autoconf.el
  
  (autoload 'autoconf-mode "autoconf" "\
@@@ -1475,7 -1475,7 +1473,7 @@@ insert a template for the file dependin
  \f
  ;;;### (autoloads (batch-update-autoloads update-directory-autoloads
  ;;;;;;  update-file-autoloads) "autoload" "emacs-lisp/autoload.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19687 6902))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from emacs-lisp/autoload.el
  
  (put 'generated-autoload-file 'safe-local-variable 'stringp)
@@@ -1595,7 -1595,7 +1593,7 @@@ specifies in the mode line
  ;;;***
  \f
  ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid"
- ;;;;;;  "avoid.el" (19562 42953))
 -;;;;;;  "avoid.el" (19645 60484))
++;;;;;;  "avoid.el" (19714 43298))
  ;;; Generated autoloads from avoid.el
  
  (defvar mouse-avoidance-mode nil "\
@@@ -1701,7 -1701,7 +1699,7 @@@ For non-interactive use see also `bench
  ;;;***
  \f
  ;;;### (autoloads (bibtex-search-entry bibtex-mode bibtex-initialize)
- ;;;;;;  "bibtex" "textmodes/bibtex.el" (19598 13691))
 -;;;;;;  "bibtex" "textmodes/bibtex.el" (19661 46305))
++;;;;;;  "bibtex" "textmodes/bibtex.el" (19714 43298))
  ;;; Generated autoloads from textmodes/bibtex.el
  
  (autoload 'bibtex-initialize "bibtex" "\
@@@ -1947,7 -1947,7 +1945,7 @@@ a reflection
  ;;;;;;  bookmark-save bookmark-write bookmark-delete bookmark-insert
  ;;;;;;  bookmark-rename bookmark-insert-location bookmark-relocate
  ;;;;;;  bookmark-jump-other-window bookmark-jump bookmark-set) "bookmark"
- ;;;;;;  "bookmark.el" (19562 42953))
 -;;;;;;  "bookmark.el" (19668 18952))
++;;;;;;  "bookmark.el" (19714 43298))
  ;;; Generated autoloads from bookmark.el
   (define-key ctl-x-r-map "b" 'bookmark-jump)
   (define-key ctl-x-r-map "m" 'bookmark-set)
@@@ -2000,8 -2000,8 +1998,8 @@@ if you wish to give the bookmark a new 
  will then jump to the new location, as well as recording it in place
  of the old one in the permanent bookmark record.
  
--BOOKMARK may be a bookmark name (a string) or a bookmark record, but
--the latter is usually only used by programmatic callers.
++BOOKMARK is usually a bookmark name (a string).  It can also be a
++bookmark record, but this is usually only done by programmatic callers.
  
  If DISPLAY-FUNC is non-nil, it is a function to invoke to display the
  bookmark.  It defaults to `switch-to-buffer'.  A typical value for
@@@ -2015,57 -2015,57 +2013,52 @@@ Jump to BOOKMARK in another window.  Se
  \(fn BOOKMARK)" t nil)
  
  (autoload 'bookmark-relocate "bookmark" "\
--Relocate BOOKMARK to another file (reading file name with minibuffer).
--BOOKMARK is a bookmark name (a string), not a bookmark record.
++Relocate BOOKMARK-NAME to another file, reading file name with minibuffer.
  
  This makes an already existing bookmark point to that file, instead of
  the one it used to point at.  Useful when a file has been renamed
  after a bookmark was set in it.
  
--\(fn BOOKMARK)" t nil)
++\(fn BOOKMARK-NAME)" t nil)
  
  (autoload 'bookmark-insert-location "bookmark" "\
--Insert the name of the file associated with BOOKMARK.
--BOOKMARK is a bookmark name (a string), not a bookmark record.
++Insert the name of the file associated with BOOKMARK-NAME.
  
  Optional second arg NO-HISTORY means don't record this in the
  minibuffer history list `bookmark-history'.
  
--\(fn BOOKMARK &optional NO-HISTORY)" t nil)
++\(fn BOOKMARK-NAME &optional NO-HISTORY)" t nil)
  
  (defalias 'bookmark-locate 'bookmark-insert-location)
  
  (autoload 'bookmark-rename "bookmark" "\
--Change the name of OLD bookmark to NEW name.
--If called from keyboard, prompt for OLD and NEW.  If called from
--menubar, select OLD from a menu and prompt for NEW.
 -
 -Both OLD and NEW are bookmark names (strings), never bookmark records.
++Change the name of OLD-NAME bookmark to NEW-NAME name.
++If called from keyboard, prompt for OLD-NAME and NEW-NAME.
++If called from menubar, select OLD-NAME from a menu and prompt for NEW-NAME.
  
- Both OLD and NEW are bookmark names (strings), never bookmark records.
--If called from Lisp, prompt for NEW if only OLD was passed as an
--argument.  If called with two strings, then no prompting is done.  You
--must pass at least OLD when calling from Lisp.
++If called from Lisp, prompt for NEW-NAME if only OLD-NAME was passed
++as an argument.  If called with two strings, then no prompting is done.
++You must pass at least OLD-NAME when calling from Lisp.
  
  While you are entering the new name, consecutive C-w's insert
  consecutive words from the text of the buffer into the new bookmark
  name.
  
--\(fn OLD &optional NEW)" t nil)
++\(fn OLD-NAME &optional NEW-NAME)" t nil)
  
  (autoload 'bookmark-insert "bookmark" "\
--Insert the text of the file pointed to by bookmark BOOKMARK.
--BOOKMARK is a bookmark name (a string), not a bookmark record.
++Insert the text of the file pointed to by bookmark BOOKMARK-NAME.
++BOOKMARK-NAME is a bookmark name (a string), not a bookmark record.
  
  You may have a problem using this function if the value of variable
  `bookmark-alist' is nil.  If that happens, you need to load in some
  bookmarks.  See help on function `bookmark-load' for more about
  this.
  
--\(fn BOOKMARK)" t nil)
++\(fn BOOKMARK-NAME)" t nil)
  
  (autoload 'bookmark-delete "bookmark" "\
--Delete BOOKMARK from the bookmark list.
--BOOKMARK is a bookmark name (a string), not a bookmark record.
++Delete BOOKMARK-NAME from the bookmark list.
  
  Removes only the first instance of a bookmark with that name.  If
  there are one or more other bookmarks with the same name, they will
@@@ -2074,7 -2074,7 +2067,7 @@@ one most recently used in this file, i
  Optional second arg BATCH means don't update the bookmark list buffer,
  probably because we were called from there.
  
--\(fn BOOKMARK &optional BATCH)" t nil)
++\(fn BOOKMARK-NAME &optional BATCH)" t nil)
  
  (autoload 'bookmark-write "bookmark" "\
  Write bookmarks to a file (reading the file name with the minibuffer).
@@@ -2150,11 -2150,11 +2143,10 @@@ Incremental search of bookmarks, hidin
  ;;;;;;  browse-url-w3-gnudoit browse-url-w3 browse-url-cci browse-url-mosaic
  ;;;;;;  browse-url-gnome-moz browse-url-emacs browse-url-galeon browse-url-firefox
  ;;;;;;  browse-url-mozilla browse-url-netscape browse-url-xdg-open
--;;;;;;  browse-url-default-browser browse-url-at-mouse browse-url-at-point
--;;;;;;  browse-url browse-url-of-region browse-url-of-dired-file
--;;;;;;  browse-url-of-buffer browse-url-of-file browse-url-url-at-point
++;;;;;;  browse-url-at-mouse browse-url-at-point browse-url browse-url-of-region
++;;;;;;  browse-url-of-dired-file browse-url-of-buffer browse-url-of-file
  ;;;;;;  browse-url-browser-function) "browse-url" "net/browse-url.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19696 28661))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from net/browse-url.el
  
  (defvar browse-url-browser-function (cond ((memq system-type '(windows-nt ms-dos cygwin)) 'browse-url-default-windows-browser) ((memq system-type '(darwin)) 'browse-url-default-macosx-browser) (t 'browse-url-default-browser)) "\
@@@ -2170,11 -2170,11 +2162,6 @@@ regexp should probably be \".\" to spec
  
  (custom-autoload 'browse-url-browser-function "browse-url" t)
  
--(autoload 'browse-url-url-at-point "browse-url" "\
--Not documented
--
--\(fn)" nil nil)
--
  (autoload 'browse-url-of-file "browse-url" "\
  Ask a WWW browser to display FILE.
  Display the current buffer's file if FILE is nil or if called
@@@ -2225,23 -2227,23 +2214,6 @@@ to use
  
  \(fn EVENT)" t nil)
  
--(autoload 'browse-url-default-browser "browse-url" "\
--Find a suitable browser and ask it to load URL.
--Default to the URL around or before point.
--
--When called interactively, if variable `browse-url-new-window-flag' is
--non-nil, load the document in a new window, if possible, otherwise use
--a random existing one.  A non-nil interactive prefix argument reverses
--the effect of `browse-url-new-window-flag'.
--
--When called non-interactively, optional second argument NEW-WINDOW is
--used instead of `browse-url-new-window-flag'.
--
--The order attempted is gnome-moz-remote, Mozilla, Firefox,
--Galeon, Konqueror, Netscape, Mosaic, Lynx in an xterm, and then W3.
--
--\(fn URL &rest ARGS)" nil nil)
--
  (autoload 'browse-url-xdg-open "browse-url" "\
  Not documented
  
@@@ -2557,26 -2559,8 +2529,26 @@@ columns on its right towards the left
  
  ;;;***
  \f
- ;;;### (autoloads (list-buffers) "buff-menu" "buff-menu.el" (19598
- ;;;;;;  13691))
++;;;### (autoloads (list-buffers) "buff-menu" "buff-menu.el" (19714
++;;;;;;  43298))
 +;;; Generated autoloads from buff-menu.el
 +
 +(define-key ctl-x-map "\ 2" 'list-buffers)
 +
 +(autoload 'list-buffers "buff-menu" "\
 +Display a list of names of existing buffers.
 +The list is displayed in a buffer named `*Buffer List*'.
 +Note that buffers with names starting with spaces are omitted.
 +Non-null optional arg FILES-ONLY means mention only file buffers.
 +
 +For more information, see the function `buffer-menu'.
 +
 +\(fn &optional FILES-ONLY)" t nil)
 +
 +;;;***
 +\f
  ;;;### (autoloads (bug-reference-prog-mode bug-reference-mode) "bug-reference"
 -;;;;;;  "progmodes/bug-reference.el" (19418 12890))
 +;;;;;;  "progmodes/bug-reference.el" (19562 42953))
  ;;; Generated autoloads from progmodes/bug-reference.el
  
  (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format)))))
@@@ -2596,9 -2580,8 +2568,8 @@@ Like `bug-reference-mode', but only but
  ;;;### (autoloads (batch-byte-recompile-directory batch-byte-compile
  ;;;;;;  batch-byte-compile-if-not-done display-call-tree byte-compile
  ;;;;;;  compile-defun byte-compile-file byte-recompile-directory
- ;;;;;;  byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning
- ;;;;;;  byte-compile-warnings-safe-p) "bytecomp" "emacs-lisp/bytecomp.el"
- ;;;;;;  (19640 50171))
+ ;;;;;;  byte-force-recompile byte-compile-enable-warning byte-compile-disable-warning)
 -;;;;;;  "bytecomp" "emacs-lisp/bytecomp.el" (19687 6902))
++;;;;;;  "bytecomp" "emacs-lisp/bytecomp.el" (19714 43298))
  ;;; Generated autoloads from emacs-lisp/bytecomp.el
  (put 'byte-compile-dynamic 'safe-local-variable 'booleanp)
  (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp)
@@@ -2857,8 -2836,8 +2824,8 @@@ See the documentation for `calculator-m
  
  ;;;***
  \f
- ;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (19687
 -;;;;;;  6902))
++;;;### (autoloads (calendar) "calendar" "calendar/calendar.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from calendar/calendar.el
  
  (autoload 'calendar "calendar" "\
@@@ -2975,7 -2954,7 +2942,7 @@@ Return the syntactic context of the cur
  \f
  ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode
  ;;;;;;  c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19646 27154))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/cc-mode.el
  
  (autoload 'c-initialize-cc-mode "cc-mode" "\
@@@ -3135,7 -3114,7 +3102,7 @@@ Key bindings
  ;;;***
  \f
  ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles"
- ;;;;;;  "progmodes/cc-styles.el" (19640 47194))
 -;;;;;;  "progmodes/cc-styles.el" (19623 58121))
++;;;;;;  "progmodes/cc-styles.el" (19714 43298))
  ;;; Generated autoloads from progmodes/cc-styles.el
  
  (autoload 'c-set-style "cc-styles" "\
@@@ -3457,7 -3436,7 +3424,7 @@@ See the documentation of `define-ccl-pr
  ;;;***
  \f
  ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19594 48841))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/cfengine.el
  
  (autoload 'cfengine-mode "cfengine" "\
@@@ -3497,7 -3476,7 +3464,7 @@@ Returns non-nil if any false statement
  ;;;;;;  checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer
  ;;;;;;  checkdoc-eval-current-buffer checkdoc-message-interactive
  ;;;;;;  checkdoc-interactive checkdoc checkdoc-list-of-strings-p)
- ;;;;;;  "checkdoc" "emacs-lisp/checkdoc.el" (19640 47194))
 -;;;;;;  "checkdoc" "emacs-lisp/checkdoc.el" (19687 6902))
++;;;;;;  "checkdoc" "emacs-lisp/checkdoc.el" (19714 43298))
  ;;; Generated autoloads from emacs-lisp/checkdoc.el
  (put 'checkdoc-force-docstrings-flag 'safe-local-variable 'booleanp)
  (put 'checkdoc-force-history-flag 'safe-local-variable 'booleanp)
@@@ -3909,7 -3888,7 +3876,7 @@@ is run)
  ;;;### (autoloads (comint-redirect-results-list-from-process comint-redirect-results-list
  ;;;;;;  comint-redirect-send-command-to-process comint-redirect-send-command
  ;;;;;;  comint-run make-comint make-comint-in-buffer) "comint" "comint.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19687 6902))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from comint.el
  
  (defvar comint-output-filter-functions '(comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\
@@@ -4041,8 -4020,8 +4008,8 @@@ on third call it again advances points 
  ;;;;;;  compilation-shell-minor-mode compilation-mode compilation-start
  ;;;;;;  compile compilation-disable-input compile-command compilation-search-path
  ;;;;;;  compilation-ask-about-save compilation-window-height compilation-start-hook
- ;;;;;;  compilation-mode-hook) "compile" "progmodes/compile.el" (19619
- ;;;;;;  52030))
 -;;;;;;  compilation-mode-hook) "compile" "progmodes/compile.el" (19656
 -;;;;;;  61992))
++;;;;;;  compilation-mode-hook) "compile" "progmodes/compile.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/compile.el
  
  (defvar compilation-mode-hook nil "\
@@@ -4237,42 -4216,6 +4204,42 @@@ Enable dynamic word-completion
  
  ;;;***
  \f
- ;;;;;;  encode-composition-rule) "composite" "composite.el" (19640
- ;;;;;;  47194))
 +;;;### (autoloads (global-auto-composition-mode auto-composition-mode
++;;;;;;  encode-composition-rule) "composite" "composite.el" (19714
++;;;;;;  43298))
 +;;; Generated autoloads from composite.el
 +
 +(autoload 'encode-composition-rule "composite" "\
 +Encode composition rule RULE into an integer value.
 +RULE is a cons of global and new reference point symbols
 +\(see `reference-point-alist').
 +
 +\(fn RULE)" nil nil)
 +
 +(autoload 'auto-composition-mode "composite" "\
 +Toggle Auto Composition mode.
 +With ARG, turn Auto Composition mode off if and only if ARG is a non-positive
 +number; if ARG is nil, toggle Auto Composition mode; anything else turns Auto
 +Composition on.
 +
 +When Auto Composition is enabled, text characters are automatically composed
 +by functions registered in `composition-function-table' (which see).
 +
 +You can use `global-auto-composition-mode' to turn on
 +Auto Composition mode in all buffers (this is the default).
 +
 +\(fn &optional ARG)" t nil)
 +
 +(autoload 'global-auto-composition-mode "composite" "\
 +Toggle Auto-Composition mode in every possible buffer.
 +With prefix arg, turn Global-Auto-Composition mode on if and only if arg
 +is positive.
 +See `auto-composition-mode' for more information on Auto-Composition mode.
 +
 +\(fn &optional ARG)" t nil)
 +
 +;;;***
 +\f
  ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode
  ;;;;;;  conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode
  ;;;;;;  conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el"
@@@ -4498,7 -4441,7 +4465,7 @@@ Update copyright notice for all files i
  ;;;***
  \f
  ;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode)
- ;;;;;;  "cperl-mode" "progmodes/cperl-mode.el" (19640 47194))
 -;;;;;;  "cperl-mode" "progmodes/cperl-mode.el" (19672 56753))
++;;;;;;  "cperl-mode" "progmodes/cperl-mode.el" (19714 43298))
  ;;; Generated autoloads from progmodes/cperl-mode.el
  (put 'cperl-indent-level 'safe-local-variable 'integerp)
  (put 'cperl-brace-offset 'safe-local-variable 'integerp)
@@@ -4697,7 -4640,7 +4664,7 @@@ Run a `perldoc' on the word around poin
  ;;;***
  \f
  ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19277 34922))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/cpp.el
  
  (autoload 'cpp-highlight-buffer "cpp" "\
@@@ -4787,7 -4730,7 +4754,7 @@@ Major mode to edit Cascading Style Shee
  ;;;***
  \f
  ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19648 63621))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from emulation/cua-base.el
  
  (defvar cua-mode nil "\
@@@ -4846,7 -4789,7 +4813,7 @@@ Enable CUA selection mode without the C
  ;;;;;;  customize-mode customize customize-save-variable customize-set-variable
  ;;;;;;  customize-set-value custom-menu-sort-alphabetically custom-buffer-sort-alphabetically
  ;;;;;;  custom-browse-sort-alphabetically) "cus-edit" "cus-edit.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19645 60484))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from cus-edit.el
  
  (defvar custom-browse-sort-alphabetically nil "\
@@@ -5149,7 -5092,7 +5116,7 @@@ The format is suitable for use with `ea
  ;;;***
  \f
  ;;;### (autoloads (customize-themes describe-theme customize-create-theme)
- ;;;;;;  "cus-theme" "cus-theme.el" (19640 47194))
 -;;;;;;  "cus-theme" "cus-theme.el" (19645 60484))
++;;;;;;  "cus-theme" "cus-theme.el" (19714 43298))
  ;;; Generated autoloads from cus-theme.el
  
  (autoload 'customize-create-theme "cus-theme" "\
@@@ -5318,8 -5263,8 +5287,8 @@@ Create a new data-debug buffer with NAM
  
  ;;;***
  \f
- ;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (19598
- ;;;;;;  13691))
 -;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (19664
 -;;;;;;  56235))
++;;;### (autoloads (dbus-handle-event) "dbus" "net/dbus.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from net/dbus.el
  
  (autoload 'dbus-handle-event "dbus" "\
@@@ -5332,8 -5277,8 +5301,8 @@@ If the HANDLER returns a `dbus-error', 
  
  ;;;***
  \f
- ;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (19668
 -;;;;;;  19168))
++;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/dcl-mode.el
  
  (autoload 'dcl-mode "dcl-mode" "\
@@@ -5504,7 -5449,7 +5473,7 @@@ To specify a nil argument interactively
  ;;;***
  \f
  ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19670 666))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from play/decipher.el
  
  (autoload 'decipher "decipher" "\
@@@ -5558,8 -5503,8 +5527,8 @@@ START and END delimits the corners of t
  
  ;;;***
  \f
- ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (19591
- ;;;;;;  62571))
 -;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (19519
 -;;;;;;  16431))
++;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/delphi.el
  
  (autoload 'delphi-mode "delphi" "\
@@@ -5952,7 -5897,7 +5921,7 @@@ Deuglify broken Outlook (Express) artic
  ;;;***
  \f
  ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib"
- ;;;;;;  "calendar/diary-lib.el" (19640 47194))
 -;;;;;;  "calendar/diary-lib.el" (19696 27153))
++;;;;;;  "calendar/diary-lib.el" (19714 43298))
  ;;; Generated autoloads from calendar/diary-lib.el
  
  (autoload 'diary "diary-lib" "\
@@@ -5994,8 -5939,8 +5963,8 @@@ Major mode for editing the diary file
  
  ;;;***
  \f
- ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff"
- ;;;;;;  "vc/diff.el" (19562 42953))
+ ;;;### (autoloads (diff-buffer-with-file diff-backup diff diff-command
 -;;;;;;  diff-switches) "diff" "vc/diff.el" (19695 9667))
++;;;;;;  diff-switches) "diff" "vc/diff.el" (19714 43298))
  ;;; Generated autoloads from vc/diff.el
  
  (defvar diff-switches (purecopy "-c") "\
@@@ -6074,7 -6025,7 +6049,7 @@@ Optional arguments are passed to `dig-i
  \f
  ;;;### (autoloads (dired-mode dired-auto-revert-buffer dired-noselect
  ;;;;;;  dired-other-frame dired-other-window dired dired-trivial-filenames
- ;;;;;;  dired-listing-switches) "dired" "dired.el" (19640 47194))
 -;;;;;;  dired-listing-switches) "dired" "dired.el" (19673 45510))
++;;;;;;  dired-listing-switches) "dired" "dired.el" (19714 43298))
  ;;; Generated autoloads from dired.el
  
  (defvar dired-listing-switches (purecopy "-al") "\
@@@ -6219,7 -6170,7 +6194,7 @@@ Keybindings
  ;;;***
  \f
  ;;;### (autoloads (dirtrack dirtrack-mode) "dirtrack" "dirtrack.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19674 7816))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from dirtrack.el
  
  (autoload 'dirtrack-mode "dirtrack" "\
@@@ -6448,7 -6399,7 +6423,7 @@@ Locate SOA record and increment the ser
  ;;;***
  \f
  ;;;### (autoloads (doc-view-bookmark-jump doc-view-minor-mode doc-view-mode
- ;;;;;;  doc-view-mode-p) "doc-view" "doc-view.el" (19591 62571))
 -;;;;;;  doc-view-mode-p) "doc-view" "doc-view.el" (19519 16431))
++;;;;;;  doc-view-mode-p) "doc-view" "doc-view.el" (19714 43269))
  ;;; Generated autoloads from doc-view.el
  
  (autoload 'doc-view-mode-p "doc-view" "\
@@@ -6483,7 -6434,7 +6458,7 @@@ Not documente
  
  ;;;***
  \f
- ;;;### (autoloads (doctor) "doctor" "play/doctor.el" (19562 42953))
 -;;;### (autoloads (doctor) "doctor" "play/doctor.el" (19696 28661))
++;;;### (autoloads (doctor) "doctor" "play/doctor.el" (19714 43298))
  ;;; Generated autoloads from play/doctor.el
  
  (autoload 'doctor "doctor" "\
@@@ -6520,7 -6471,7 +6495,7 @@@ Switch to *dungeon* buffer and start ga
  \f
  ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap
  ;;;;;;  define-globalized-minor-mode define-minor-mode) "easy-mmode"
- ;;;;;;  "emacs-lisp/easy-mmode.el" (19598 13691))
 -;;;;;;  "emacs-lisp/easy-mmode.el" (19658 807))
++;;;;;;  "emacs-lisp/easy-mmode.el" (19714 43298))
  ;;; Generated autoloads from emacs-lisp/easy-mmode.el
  
  (defalias 'easy-mmode-define-minor-mode 'define-minor-mode)
@@@ -6783,7 -6735,7 +6759,7 @@@ To implement dynamic menus, either cal
  ;;;;;;  ebnf-eps-file ebnf-eps-directory ebnf-spool-region ebnf-spool-buffer
  ;;;;;;  ebnf-spool-file ebnf-spool-directory ebnf-print-region ebnf-print-buffer
  ;;;;;;  ebnf-print-file ebnf-print-directory ebnf-customize) "ebnf2ps"
- ;;;;;;  "progmodes/ebnf2ps.el" (19562 42953))
 -;;;;;;  "progmodes/ebnf2ps.el" (19668 19251))
++;;;;;;  "progmodes/ebnf2ps.el" (19714 43298))
  ;;; Generated autoloads from progmodes/ebnf2ps.el
  
  (autoload 'ebnf-customize "ebnf2ps" "\
@@@ -7057,8 -7009,8 +7033,8 @@@ See `ebnf-style-database' documentation
  ;;;;;;  ebrowse-tags-find-declaration-other-window ebrowse-tags-find-definition
  ;;;;;;  ebrowse-tags-view-definition ebrowse-tags-find-declaration
  ;;;;;;  ebrowse-tags-view-declaration ebrowse-member-mode ebrowse-electric-choose-tree
- ;;;;;;  ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (19591
- ;;;;;;  62571))
 -;;;;;;  ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (19668
 -;;;;;;  19022))
++;;;;;;  ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/ebrowse.el
  
  (autoload 'ebrowse-tree-mode "ebrowse" "\
@@@ -7081,9 -7033,9 +7057,7 @@@ Return a buffer containing a tree or ni
  (autoload 'ebrowse-member-mode "ebrowse" "\
  Major mode for Ebrowse member buffers.
  
--\\{ebrowse-member-mode-map}
--
--\(fn)" nil nil)
++\(fn)" t nil)
  
  (autoload 'ebrowse-tags-view-declaration "ebrowse" "\
  View declaration of member at point.
@@@ -7209,7 -7161,7 +7183,7 @@@ Display statistics for a class tree
  ;;;***
  \f
  ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19668 18204))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from ebuff-menu.el
  
  (autoload 'electric-buffer-list "ebuff-menu" "\
@@@ -7246,7 -7198,7 +7220,7 @@@ With prefix arg NOCONFIRM, execute curr
  ;;;***
  \f
  ;;;### (autoloads (ecomplete-setup) "ecomplete" "gnus/ecomplete.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19672 47597))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/ecomplete.el
  
  (autoload 'ecomplete-setup "ecomplete" "\
@@@ -7256,7 -7208,7 +7230,7 @@@ Not documente
  
  ;;;***
  \f
- ;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (19619 52030))
 -;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (19662 23507))
++;;;### (autoloads (global-ede-mode) "ede" "cedet/ede.el" (19714 43298))
  ;;; Generated autoloads from cedet/ede.el
  
  (defvar global-ede-mode nil "\
@@@ -7282,7 -7234,7 +7256,7 @@@ an EDE controlled project
  \f
  ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form
  ;;;;;;  edebug-basic-spec edebug-all-forms edebug-all-defs) "edebug"
- ;;;;;;  "emacs-lisp/edebug.el" (19640 47194))
 -;;;;;;  "emacs-lisp/edebug.el" (19668 19725))
++;;;;;;  "emacs-lisp/edebug.el" (19714 43298))
  ;;; Generated autoloads from emacs-lisp/edebug.el
  
  (defvar edebug-all-defs nil "\
@@@ -7618,7 -7563,7 +7592,7 @@@ Display Ediff's registry
  ;;;***
  \f
  ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe)
- ;;;;;;  "ediff-util" "vc/ediff-util.el" (19640 47194))
 -;;;;;;  "ediff-util" "vc/ediff-util.el" (19664 56235))
++;;;;;;  "ediff-util" "vc/ediff-util.el" (19714 43298))
  ;;; Generated autoloads from vc/ediff-util.el
  
  (autoload 'ediff-toggle-multiframe "ediff-util" "\
@@@ -7692,7 -7637,7 +7666,7 @@@ or nil, use a compact 80-column format
  ;;;***
  \f
  ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt"
- ;;;;;;  "emulation/edt.el" (19619 52030))
 -;;;;;;  "emulation/edt.el" (19674 11425))
++;;;;;;  "emulation/edt.el" (19714 43298))
  ;;; Generated autoloads from emulation/edt.el
  
  (autoload 'edt-set-scroll-margins "edt" "\
@@@ -7790,10 -7735,13 +7764,13 @@@ Emacs Lisp mode) that support ElDoc."
  
  ;;;***
  \f
- ;;;### (autoloads (electric-pair-mode electric-indent-mode) "electric"
- ;;;;;;  "electric.el" (19598 13691))
+ ;;;### (autoloads (electric-layout-mode electric-pair-mode electric-indent-mode)
 -;;;;;;  "electric" "electric.el" (19687 6902))
++;;;;;;  "electric" "electric.el" (19714 43298))
  ;;; Generated autoloads from electric.el
  
+ (defvar electric-indent-chars '(10) "\
+ Characters that should cause automatic reindentation.")
  (defvar electric-indent-mode nil "\
  Non-nil if Electric-Indent mode is enabled.
  See the command `electric-indent-mode' for a description of this minor mode.
@@@ -7823,10 -7771,24 +7800,24 @@@ Automatically pair-up parens when inser
  
  \(fn &optional ARG)" t nil)
  
+ (defvar electric-layout-mode nil "\
+ Non-nil if Electric-Layout mode is enabled.
+ See the command `electric-layout-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 `electric-layout-mode'.")
+ (custom-autoload 'electric-layout-mode "electric" nil)
+ (autoload 'electric-layout-mode "electric" "\
+ Automatically insert newlines around some chars.
+ \(fn &optional ARG)" t nil)
  ;;;***
  \f
 -;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (19277
 -;;;;;;  34916))
 +;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (19562
 +;;;;;;  42953))
  ;;; Generated autoloads from elide-head.el
  
  (autoload 'elide-head "elide-head" "\
@@@ -7843,7 -7805,7 +7834,7 @@@ This is suitable as an entry on `find-f
  \f
  ;;;### (autoloads (elint-initialize elint-defun elint-current-buffer
  ;;;;;;  elint-directory elint-file) "elint" "emacs-lisp/elint.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19668 31925))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from emacs-lisp/elint.el
  
  (autoload 'elint-file "elint" "\
@@@ -7915,7 -7877,7 +7906,7 @@@ displayed
  ;;;***
  \f
  ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19696 28661))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from mail/emacsbug.el
  
  (autoload 'report-emacs-bug "emacsbug" "\
@@@ -7930,7 -7892,7 +7921,7 @@@ Prompts for bug subject.  Leaves you i
  ;;;;;;  emerge-revisions emerge-files-with-ancestor-remote emerge-files-remote
  ;;;;;;  emerge-files-with-ancestor-command emerge-files-command emerge-buffers-with-ancestor
  ;;;;;;  emerge-buffers emerge-files-with-ancestor emerge-files) "emerge"
- ;;;;;;  "vc/emerge.el" (19562 42953))
 -;;;;;;  "vc/emerge.el" (19672 56753))
++;;;;;;  "vc/emerge.el" (19714 43298))
  ;;; Generated autoloads from vc/emerge.el
  
  (autoload 'emerge-files "emerge" "\
@@@ -8026,8 -7988,8 +8017,8 @@@ Not documente
  ;;;;;;  epa-sign-region epa-verify-cleartext-in-region epa-verify-region
  ;;;;;;  epa-decrypt-armor-in-region epa-decrypt-region epa-encrypt-file
  ;;;;;;  epa-sign-file epa-verify-file epa-decrypt-file epa-select-keys
- ;;;;;;  epa-list-secret-keys epa-list-keys) "epa" "epa.el" (19640
- ;;;;;;  47194))
 -;;;;;;  epa-list-secret-keys epa-list-keys) "epa" "epa.el" (19672
 -;;;;;;  56753))
++;;;;;;  epa-list-secret-keys epa-list-keys) "epa" "epa.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from epa.el
  
  (autoload 'epa-list-keys "epa" "\
@@@ -8248,7 -8210,7 +8239,7 @@@ Not documente
  \f
  ;;;### (autoloads (epa-global-mail-mode epa-mail-import-keys epa-mail-encrypt
  ;;;;;;  epa-mail-sign epa-mail-verify epa-mail-decrypt epa-mail-mode)
- ;;;;;;  "epa-mail" "epa-mail.el" (19598 13691))
 -;;;;;;  "epa-mail" "epa-mail.el" (19654 15628))
++;;;;;;  "epa-mail" "epa-mail.el" (19714 43298))
  ;;; Generated autoloads from epa-mail.el
  
  (autoload 'epa-mail-mode "epa-mail" "\
@@@ -8312,7 -8274,7 +8303,7 @@@ Minor mode to hook EasyPG into Mail mod
  
  ;;;***
  \f
- ;;;### (autoloads (epg-make-context) "epg" "epg.el" (19598 13691))
 -;;;### (autoloads (epg-make-context) "epg" "epg.el" (19580 19536))
++;;;### (autoloads (epg-make-context) "epg" "epg.el" (19714 43298))
  ;;; Generated autoloads from epg.el
  
  (autoload 'epg-make-context "epg" "\
@@@ -8323,7 -8285,7 +8314,7 @@@ Return a context object
  ;;;***
  \f
  ;;;### (autoloads (epg-expand-group epg-check-configuration epg-configuration)
- ;;;;;;  "epg-config" "epg-config.el" (19598 13691))
 -;;;;;;  "epg-config" "epg-config.el" (19652 41479))
++;;;;;;  "epg-config" "epg-config.el" (19714 43298))
  ;;; Generated autoloads from epg-config.el
  
  (autoload 'epg-configuration "epg-config" "\
@@@ -8848,8 -8810,8 +8839,8 @@@ Emacs shell interactive mode
  
  ;;;***
  \f
- ;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (19619
- ;;;;;;  52030))
 -;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (19672
 -;;;;;;  39436))
++;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from eshell/esh-test.el
  
  (autoload 'eshell-test "esh-test" "\
@@@ -8901,7 -8863,7 +8892,7 @@@ corresponding to a successful execution
  ;;;;;;  visit-tags-table tags-table-mode find-tag-default-function
  ;;;;;;  find-tag-hook tags-add-tables tags-compression-info-list
  ;;;;;;  tags-table-list tags-case-fold-search) "etags" "progmodes/etags.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19672 56753))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/etags.el
  
  (defvar tags-file-name nil "\
@@@ -9385,7 -9347,7 +9376,7 @@@ Not documente
  \f
  ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline
  ;;;;;;  eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19672 56753))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from net/eudc.el
  
  (autoload 'eudc-set-server "eudc" "\
@@@ -9626,7 -9588,7 +9617,7 @@@ This is used only in conjunction with `
  
  ;;;***
  \f
- ;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (19591 62571))
 -;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (19651 33965))
++;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (19714 43298))
  ;;; Generated autoloads from progmodes/f90.el
  
  (autoload 'f90-mode "f90" "\
@@@ -9692,8 -9654,8 +9683,8 @@@ with no args, if that value is non-nil
  ;;;### (autoloads (variable-pitch-mode buffer-face-toggle buffer-face-set
  ;;;;;;  buffer-face-mode text-scale-adjust text-scale-decrease text-scale-increase
  ;;;;;;  text-scale-set face-remap-set-base face-remap-reset-base
- ;;;;;;  face-remap-add-relative) "face-remap" "face-remap.el" (19591
- ;;;;;;  62571))
 -;;;;;;  face-remap-add-relative) "face-remap" "face-remap.el" (19652
 -;;;;;;  44405))
++;;;;;;  face-remap-add-relative) "face-remap" "face-remap.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from face-remap.el
  
  (autoload 'face-remap-add-relative "face-remap" "\
@@@ -9951,7 -9913,7 +9942,7 @@@ Evaluate the forms in variable `ffap-bi
  ;;;### (autoloads (file-cache-minibuffer-complete file-cache-add-directory-recursively
  ;;;;;;  file-cache-add-directory-using-locate file-cache-add-directory-using-find
  ;;;;;;  file-cache-add-file file-cache-add-directory-list file-cache-add-directory)
- ;;;;;;  "filecache" "filecache.el" (19591 62571))
 -;;;;;;  "filecache" "filecache.el" (19672 41839))
++;;;;;;  "filecache" "filecache.el" (19714 43298))
  ;;; Generated autoloads from filecache.el
  
  (autoload 'file-cache-add-directory "filecache" "\
@@@ -10264,7 -10226,7 +10255,7 @@@ Visit the file you click on in another 
  ;;;;;;  find-variable find-variable-noselect find-function-other-frame
  ;;;;;;  find-function-other-window find-function find-function-noselect
  ;;;;;;  find-function-search-for-symbol find-library) "find-func"
- ;;;;;;  "emacs-lisp/find-func.el" (19562 42953))
 -;;;;;;  "emacs-lisp/find-func.el" (19649 956))
++;;;;;;  "emacs-lisp/find-func.el" (19714 43298))
  ;;; Generated autoloads from emacs-lisp/find-func.el
  
  (autoload 'find-library "find-func" "\
@@@ -10440,7 -10402,7 +10431,7 @@@ Change the filter on a find-lisp-find-d
  ;;;***
  \f
  ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords)
- ;;;;;;  "finder" "finder.el" (19619 52030))
 -;;;;;;  "finder" "finder.el" (19662 23188))
++;;;;;;  "finder" "finder.el" (19714 43298))
  ;;; Generated autoloads from finder.el
  
  (autoload 'finder-list-keywords "finder" "\
@@@ -10500,7 -10462,7 +10491,7 @@@ Not documente
  ;;;***
  \f
  ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode)
- ;;;;;;  "flymake" "progmodes/flymake.el" (19598 13691))
 -;;;;;;  "flymake" "progmodes/flymake.el" (19670 2258))
++;;;;;;  "flymake" "progmodes/flymake.el" (19714 43298))
  ;;; Generated autoloads from progmodes/flymake.el
  
  (autoload 'flymake-mode "flymake" "\
@@@ -10524,7 -10486,7 +10515,7 @@@ Turn flymake mode off
  \f
  ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off
  ;;;;;;  turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode)
- ;;;;;;  "flyspell" "textmodes/flyspell.el" (19598 13691))
 -;;;;;;  "flyspell" "textmodes/flyspell.el" (19681 34867))
++;;;;;;  "flyspell" "textmodes/flyspell.el" (19714 43298))
  ;;; Generated autoloads from textmodes/flyspell.el
  
  (autoload 'flyspell-prog-mode "flyspell" "\
@@@ -10733,7 -10681,7 +10724,7 @@@ Visit a file in Forms mode in other win
  ;;;***
  \f
  ;;;### (autoloads (fortran-mode) "fortran" "progmodes/fortran.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19672 56753))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/fortran.el
  
  (autoload 'fortran-mode "fortran" "\
@@@ -10811,7 -10759,7 +10802,7 @@@ with no args, if that value is non-nil
  ;;;***
  \f
  ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region
- ;;;;;;  fortune-add-fortune) "fortune" "play/fortune.el" (19562 42953))
 -;;;;;;  fortune-add-fortune) "fortune" "play/fortune.el" (19661 46305))
++;;;;;;  fortune-add-fortune) "fortune" "play/fortune.el" (19714 43298))
  ;;; Generated autoloads from play/fortune.el
  
  (autoload 'fortune-add-fortune "fortune" "\
@@@ -10861,7 -10808,7 +10851,7 @@@ and choose the directory as the fortune
  ;;;***
  \f
  ;;;### (autoloads (gdb gdb-enable-debug) "gdb-mi" "progmodes/gdb-mi.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19614 24990))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/gdb-mi.el
  
  (defvar gdb-enable-debug nil "\
@@@ -11069,7 -11016,7 +11059,7 @@@ DEFAULT-MAP specifies the default key m
  ;;;***
  \f
  ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server
- ;;;;;;  gnus-slave-no-server) "gnus" "gnus/gnus.el" (19640 47194))
 -;;;;;;  gnus-slave-no-server) "gnus" "gnus/gnus.el" (19687 6902))
++;;;;;;  gnus-slave-no-server) "gnus" "gnus/gnus.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus.el
  (when (fboundp 'custom-autoload)
   (custom-autoload 'gnus-select-method "gnus"))
@@@ -11122,7 -11069,7 +11112,7 @@@ prompt the user for the name of an NNT
  ;;;;;;  gnus-agent-get-undownloaded-list gnus-agent-delete-group
  ;;;;;;  gnus-agent-rename-group gnus-agent-possibly-save-gcc gnus-agentize
  ;;;;;;  gnus-slave-unplugged gnus-plugged gnus-unplugged) "gnus-agent"
- ;;;;;;  "gnus/gnus-agent.el" (19640 47194))
 -;;;;;;  "gnus/gnus-agent.el" (19687 6902))
++;;;;;;  "gnus/gnus-agent.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-agent.el
  
  (autoload 'gnus-unplugged "gnus-agent" "\
@@@ -11213,7 -11160,7 +11203,7 @@@ If CLEAN, obsolete (ignore)
  ;;;***
  \f
  ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19695 9549))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/gnus-art.el
  
  (autoload 'gnus-article-prepare-display "gnus-art" "\
@@@ -11224,7 -11171,7 +11214,7 @@@ Make the current buffer look like a nic
  ;;;***
  \f
  ;;;### (autoloads (gnus-bookmark-bmenu-list gnus-bookmark-jump gnus-bookmark-set)
- ;;;;;;  "gnus-bookmark" "gnus/gnus-bookmark.el" (19640 47194))
 -;;;;;;  "gnus-bookmark" "gnus/gnus-bookmark.el" (19670 666))
++;;;;;;  "gnus-bookmark" "gnus/gnus-bookmark.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-bookmark.el
  
  (autoload 'gnus-bookmark-set "gnus-bookmark" "\
@@@ -11249,8 -11196,8 +11239,8 @@@ deletion, or > if it is flagged for dis
  \f
  ;;;### (autoloads (gnus-cache-delete-group gnus-cache-rename-group
  ;;;;;;  gnus-cache-generate-nov-databases gnus-cache-generate-active
- ;;;;;;  gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (19640
- ;;;;;;  47194))
 -;;;;;;  gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (19693
 -;;;;;;  40409))
++;;;;;;  gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from gnus/gnus-cache.el
  
  (autoload 'gnus-jog-cache "gnus-cache" "\
@@@ -11292,7 -11239,7 +11282,7 @@@ supported
  ;;;***
  \f
  ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article)
- ;;;;;;  "gnus-delay" "gnus/gnus-delay.el" (19598 13691))
 -;;;;;;  "gnus-delay" "gnus/gnus-delay.el" (19645 60484))
++;;;;;;  "gnus-delay" "gnus/gnus-delay.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-delay.el
  
  (autoload 'gnus-delay-article "gnus-delay" "\
@@@ -11328,7 -11275,7 +11318,7 @@@ Checking delayed messages is skipped i
  ;;;***
  \f
  ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d)
- ;;;;;;  "gnus-diary" "gnus/gnus-diary.el" (19640 47194))
 -;;;;;;  "gnus-diary" "gnus/gnus-diary.el" (19645 60484))
++;;;;;;  "gnus-diary" "gnus/gnus-diary.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-diary.el
  
  (autoload 'gnus-user-format-function-d "gnus-diary" "\
@@@ -11344,7 -11291,7 +11334,7 @@@ Not documente
  ;;;***
  \f
  ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19662 7391))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/gnus-dired.el
  
  (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\
@@@ -11355,7 -11302,7 +11345,7 @@@ Convenience method to turn on gnus-dire
  ;;;***
  \f
  ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19648 31344))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/gnus-draft.el
  
  (autoload 'gnus-draft-reminder "gnus-draft" "\
@@@ -11413,7 -11360,7 +11403,7 @@@ FILE should be a PNG file that's 48x48 
  ;;;***
  \f
  ;;;### (autoloads (gnus-treat-mail-gravatar gnus-treat-from-gravatar)
- ;;;;;;  "gnus-gravatar" "gnus/gnus-gravatar.el" (19640 47194))
 -;;;;;;  "gnus-gravatar" "gnus/gnus-gravatar.el" (19688 19082))
++;;;;;;  "gnus-gravatar" "gnus/gnus-gravatar.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-gravatar.el
  
  (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\
@@@ -11431,7 -11378,7 +11421,7 @@@ If gravatars are already displayed, rem
  ;;;***
  \f
  ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group)
- ;;;;;;  "gnus-group" "gnus/gnus-group.el" (19640 47194))
 -;;;;;;  "gnus-group" "gnus/gnus-group.el" (19672 21006))
++;;;;;;  "gnus-group" "gnus/gnus-group.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-group.el
  
  (autoload 'gnus-fetch-group "gnus-group" "\
@@@ -11449,7 -11396,7 +11439,7 @@@ Pop up a frame and enter GROUP
  ;;;***
  \f
  ;;;### (autoloads (gnus-html-prefetch-images gnus-article-html) "gnus-html"
- ;;;;;;  "gnus/gnus-html.el" (19640 47194))
 -;;;;;;  "gnus/gnus-html.el" (19687 6902))
++;;;;;;  "gnus/gnus-html.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-html.el
  
  (autoload 'gnus-article-html "gnus-html" "\
@@@ -11606,7 -11553,7 +11596,7 @@@ Calling (gnus-group-split-fancy nil ni
  ;;;***
  \f
  ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail)
- ;;;;;;  "gnus-msg" "gnus/gnus-msg.el" (19640 47194))
 -;;;;;;  "gnus-msg" "gnus/gnus-msg.el" (19662 23188))
++;;;;;;  "gnus-msg" "gnus/gnus-msg.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-msg.el
  
  (autoload 'gnus-msg-mail "gnus-msg" "\
@@@ -11727,7 -11674,7 +11717,7 @@@ Add NUM into sorted LIST by side effect
  ;;;***
  \f
  ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize)
- ;;;;;;  "gnus-registry" "gnus/gnus-registry.el" (19640 47194))
 -;;;;;;  "gnus-registry" "gnus/gnus-registry.el" (19645 60484))
++;;;;;;  "gnus-registry" "gnus/gnus-registry.el" (19714 43298))
  ;;; Generated autoloads from gnus/gnus-registry.el
  
  (autoload 'gnus-registry-initialize "gnus-registry" "\
@@@ -11783,7 -11730,7 +11773,7 @@@ Update the format specification near po
  ;;;***
  \f
  ;;;### (autoloads (gnus-declare-backend) "gnus-start" "gnus/gnus-start.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19672 21006))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/gnus-start.el
  
  (autoload 'gnus-declare-backend "gnus-start" "\
@@@ -11794,7 -11741,7 +11784,7 @@@ Declare back end NAME with ABILITIES a
  ;;;***
  \f
  ;;;### (autoloads (gnus-summary-bookmark-jump) "gnus-sum" "gnus/gnus-sum.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19695 9549))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/gnus-sum.el
  
  (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\
@@@ -11822,7 -11769,7 +11812,7 @@@ Install the sync hooks
  ;;;***
  \f
  ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19626 25721))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/gnus-win.el
  
  (autoload 'gnus-add-configuration "gnus-win" "\
@@@ -11832,7 -11779,7 +11822,7 @@@ Add the window configuration CONF to `g
  
  ;;;***
  \f
- ;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (19562 42953))
 -;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (19675 8283))
++;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (19714 43298))
  ;;; Generated autoloads from play/gomoku.el
  
  (autoload 'gomoku "gomoku" "\
@@@ -11912,7 -11859,7 +11902,7 @@@ You can provide a list of argument to p
  \f
  ;;;### (autoloads (zrgrep rgrep lgrep grep-find grep grep-mode grep-compute-defaults
  ;;;;;;  grep-process-setup grep-setup-hook grep-find-command grep-command
- ;;;;;;  grep-window-height) "grep" "progmodes/grep.el" (19562 42953))
 -;;;;;;  grep-window-height) "grep" "progmodes/grep.el" (19687 6902))
++;;;;;;  grep-window-height) "grep" "progmodes/grep.el" (19714 43298))
  ;;; Generated autoloads from progmodes/grep.el
  
  (defvar grep-window-height nil "\
@@@ -12082,7 -12029,7 +12072,7 @@@ the form \"WINDOW-ID PIXMAP-ID\".  Valu
  ;;;***
  \f
  ;;;### (autoloads (gud-tooltip-mode gdb-script-mode jdb pdb perldb
- ;;;;;;  xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (19619 52030))
 -;;;;;;  xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (19611 36621))
++;;;;;;  xdb dbx sdb gud-gdb) "gud" "progmodes/gud.el" (19714 43298))
  ;;; Generated autoloads from progmodes/gud.el
  
  (autoload 'gud-gdb "gud" "\
@@@ -12388,10 -12335,10 +12378,10 @@@ different regions.  With numeric argume
  
  ;;;***
  \f
- ;;;### (autoloads (describe-categories describe-syntax describe-variable
- ;;;;;;  variable-at-point describe-function-1 find-lisp-object-file-name
- ;;;;;;  help-C-file-name describe-function) "help-fns" "help-fns.el"
- ;;;;;;  (19619 52030))
+ ;;;### (autoloads (doc-file-to-info doc-file-to-man describe-categories
+ ;;;;;;  describe-syntax describe-variable variable-at-point describe-function-1
+ ;;;;;;  find-lisp-object-file-name help-C-file-name describe-function)
 -;;;;;;  "help-fns" "help-fns.el" (19649 15956))
++;;;;;;  "help-fns" "help-fns.el" (19714 43298))
  ;;; Generated autoloads from help-fns.el
  
  (autoload 'describe-function "help-fns" "\
@@@ -12586,7 -12543,7 +12586,7 @@@ Provide help for current mode
  ;;;***
  \f
  ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl"
- ;;;;;;  "hexl.el" (19640 47194))
 -;;;;;;  "hexl.el" (19648 31344))
++;;;;;;  "hexl.el" (19714 43298))
  ;;; Generated autoloads from hexl.el
  
  (autoload 'hexl-mode "hexl" "\
@@@ -12817,7 -12774,7 +12817,7 @@@ be found in variable `hi-lock-interacti
  ;;;***
  \f
  ;;;### (autoloads (hide-ifdef-mode) "hideif" "progmodes/hideif.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19668 19057))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/hideif.el
  
  (autoload 'hide-ifdef-mode "hideif" "\
@@@ -13049,7 -13006,7 +13049,7 @@@ See `highlight-changes-mode' for more i
  ;;;;;;  hippie-expand-ignore-buffers hippie-expand-max-buffers hippie-expand-no-restriction
  ;;;;;;  hippie-expand-dabbrev-as-symbol hippie-expand-dabbrev-skip-space
  ;;;;;;  hippie-expand-verbose hippie-expand-try-functions-list) "hippie-exp"
- ;;;;;;  "hippie-exp.el" (19562 42953))
 -;;;;;;  "hippie-exp.el" (19672 56753))
++;;;;;;  "hippie-exp.el" (19714 43298))
  ;;; Generated autoloads from hippie-exp.el
  
  (defvar hippie-expand-try-functions-list '(try-complete-file-name-partially try-complete-file-name try-expand-all-abbrevs try-expand-list try-expand-line try-expand-dabbrev try-expand-dabbrev-all-buffers try-expand-dabbrev-from-kill try-complete-lisp-symbol-partially try-complete-lisp-symbol) "\
@@@ -13166,9 -13123,11 +13166,11 @@@ Global-Hl-Line mode uses the functions 
  ;;;;;;  holiday-bahai-holidays holiday-islamic-holidays holiday-christian-holidays
  ;;;;;;  holiday-hebrew-holidays holiday-other-holidays holiday-local-holidays
  ;;;;;;  holiday-oriental-holidays holiday-general-holidays) "holidays"
- ;;;;;;  "calendar/holidays.el" (19598 13691))
 -;;;;;;  "calendar/holidays.el" (19662 28391))
++;;;;;;  "calendar/holidays.el" (19714 43298))
  ;;; Generated autoloads from calendar/holidays.el
  
+ (define-obsolete-variable-alias 'general-holidays 'holiday-general-holidays "23.1")
  (defvar holiday-general-holidays (mapcar 'purecopy '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\
  General holidays.  Default value is for the United States.
  See the documentation for `calendar-holidays' for details.")
@@@ -13457,7 -13414,7 +13457,7 @@@ bound to the current value of the filte
  ;;;***
  \f
  ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers)
- ;;;;;;  "ibuffer" "ibuffer.el" (19640 47194))
 -;;;;;;  "ibuffer" "ibuffer.el" (19632 44567))
++;;;;;;  "ibuffer" "ibuffer.el" (19714 43298))
  ;;; Generated autoloads from ibuffer.el
  
  (autoload 'ibuffer-list-buffers "ibuffer" "\
@@@ -13572,7 -13529,7 +13572,7 @@@ otherwise turn it off
  
  ;;;***
  \f
- ;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (19562 42953))
 -;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (19668 19042))
++;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (19714 43298))
  ;;; Generated autoloads from progmodes/icon.el
  
  (autoload 'icon-mode "icon" "\
@@@ -13613,7 -13570,7 +13613,7 @@@ with no args, if that value is non-nil
  ;;;***
  \f
  ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19675 14361))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/idlw-shell.el
  
  (autoload 'idlwave-shell "idlw-shell" "\
@@@ -13639,7 -13596,7 +13639,7 @@@ See also the variable `idlwave-shell-pr
  ;;;***
  \f
  ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19675 14373))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/idlwave.el
  
  (autoload 'idlwave-mode "idlwave" "\
@@@ -14064,7 -14021,7 +14064,7 @@@ Toggle inline image minor mode
  ;;;;;;  put-image create-image image-type-auto-detected-p image-type-available-p
  ;;;;;;  image-type image-type-from-file-name image-type-from-file-header
  ;;;;;;  image-type-from-buffer image-type-from-data) "image" "image.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19652 54251))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from image.el
  
  (autoload 'image-type-from-data "image" "\
@@@ -14660,7 -14617,7 +14660,7 @@@ Convert old Emacs Devanagari character
  \f
  ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command
  ;;;;;;  inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp"
- ;;;;;;  "progmodes/inf-lisp.el" (19640 47194))
 -;;;;;;  "progmodes/inf-lisp.el" (19634 23255))
++;;;;;;  "progmodes/inf-lisp.el" (19714 43298))
  ;;; Generated autoloads from progmodes/inf-lisp.el
  
  (defvar inferior-lisp-filter-regexp (purecopy "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'") "\
@@@ -14728,7 -14685,7 +14728,7 @@@ of `inferior-lisp-program').  Runs the 
  ;;;;;;  Info-goto-emacs-command-node Info-mode info-finder info-apropos
  ;;;;;;  Info-index Info-directory Info-on-current-buffer info-standalone
  ;;;;;;  info-emacs-manual info info-other-window) "info" "info.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19688 19082))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from info.el
  
  (autoload 'info-other-window "info" "\
@@@ -15172,7 -15129,7 +15172,7 @@@ Add submenus to the File menu, to conve
  ;;;;;;  ispell-complete-word ispell-continue ispell-buffer ispell-comments-and-strings
  ;;;;;;  ispell-region ispell-change-dictionary ispell-kill-ispell
  ;;;;;;  ispell-help ispell-pdict-save ispell-word ispell-personal-dictionary)
- ;;;;;;  "ispell" "textmodes/ispell.el" (19619 52030))
 -;;;;;;  "ispell" "textmodes/ispell.el" (19672 56753))
++;;;;;;  "ispell" "textmodes/ispell.el" (19714 43298))
  ;;; Generated autoloads from textmodes/ispell.el
  
  (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive))))
@@@ -15392,8 -15349,8 +15392,8 @@@ You can bind this to the key C-c i in G
  
  ;;;***
  \f
- ;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (19640
- ;;;;;;  47194))
 -;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (19656
 -;;;;;;  61992))
++;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from iswitchb.el
  
  (defvar iswitchb-mode nil "\
@@@ -15519,16 -15476,16 +15519,12 @@@ by `jka-compr-installed'
  
  ;;;***
  \f
- ;;;### (autoloads (js-mode) "js" "progmodes/js.el" (19619 52030))
 -;;;### (autoloads (js-mode) "js" "progmodes/js.el" (19670 666))
++;;;### (autoloads (js-mode) "js" "progmodes/js.el" (19714 43298))
  ;;; Generated autoloads from progmodes/js.el
  
  (autoload 'js-mode "js" "\
  Major mode for editing JavaScript.
  
--Key bindings:
--
--\\{js-mode-map}
--
  \(fn)" t nil)
  
  (defalias 'javascript-mode 'js-mode)
@@@ -15766,7 -15723,7 +15762,7 @@@ Not documente
  ;;;***
  \f
  ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19675 8295))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from play/landmark.el
  
  (defalias 'landmark-repeat 'lm-test-run)
@@@ -15959,7 -15916,7 +15955,7 @@@ Not documente
  
  ;;;***
  \f
- ;;;### (autoloads (life) "life" "play/life.el" (19562 42953))
 -;;;### (autoloads (life) "life" "play/life.el" (19668 18627))
++;;;### (autoloads (life) "life" "play/life.el" (19714 43298))
  ;;; Generated autoloads from play/life.el
  
  (autoload 'life "life" "\
@@@ -16044,7 -16001,7 +16040,7 @@@ something strange, such as redefining a
  ;;;***
  \f
  ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches)
- ;;;;;;  "locate" "locate.el" (19562 42953))
 -;;;;;;  "locate" "locate.el" (19673 45510))
++;;;;;;  "locate" "locate.el" (19714 43298))
  ;;; Generated autoloads from locate.el
  
  (defvar locate-ls-subdir-switches (purecopy "-al") "\
@@@ -16095,7 -16053,7 +16092,7 @@@ except that FILTER is not optional
  
  ;;;***
  \f
- ;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (19562 42953))
 -;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (19657 48297))
++;;;### (autoloads (log-edit) "log-edit" "vc/log-edit.el" (19714 43298))
  ;;; Generated autoloads from vc/log-edit.el
  
  (autoload 'log-edit "log-edit" "\
@@@ -16155,8 -16113,8 +16152,8 @@@ are indicated with a symbol
  ;;;***
  \f
  ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer
- ;;;;;;  lpr-command lpr-switches printer-name) "lpr" "lpr.el" (19562
- ;;;;;;  42953))
 -;;;;;;  lpr-command lpr-switches printer-name) "lpr" "lpr.el" (19451
 -;;;;;;  17238))
++;;;;;;  lpr-command lpr-switches printer-name) "lpr" "lpr.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from lpr.el
  
  (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)))
@@@ -16250,7 -16208,7 +16247,7 @@@ for further customization of the printe
  ;;;***
  \f
  ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19687 6902))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from ls-lisp.el
  
  (defvar ls-lisp-support-shell-wildcards t "\
@@@ -16276,13 -16234,13 +16273,12 @@@ This function is suitable for executio
  
  ;;;***
  \f
- ;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (19277
 -;;;;;;  34922))
++;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/m4-mode.el
  
  (autoload 'm4-mode "m4-mode" "\
  A major mode to edit m4 macro files.
--\\{m4-mode-map}
  
  \(fn)" t nil)
  
@@@ -16392,7 -16350,7 +16388,7 @@@ and then select the region of un-tablif
  ;;;***
  \f
  ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr"
- ;;;;;;  "mail/mail-extr.el" (19598 13691))
 -;;;;;;  "mail/mail-extr.el" (19668 31646))
++;;;;;;  "mail/mail-extr.el" (19714 43298))
  ;;; Generated autoloads from mail/mail-extr.el
  
  (autoload 'mail-extract-address-components "mail-extr" "\
@@@ -16608,7 -16566,7 +16604,7 @@@ current header, calls `mail-complete-fu
  ;;;***
  \f
  ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19693 26133))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from mail/mailclient.el
  
  (autoload 'mailclient-send-it "mailclient" "\
@@@ -16739,8 -16697,8 +16735,8 @@@ An adapted `makefile-mode' that knows a
  
  ;;;***
  \f
- ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (19668
 -;;;;;;  19366))
++;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from makesum.el
  
  (autoload 'make-command-summary "makesum" "\
@@@ -16854,20 -16812,13 +16850,20 @@@ Returns non-nil if the new state is ena
  
  ;;;***
  \f
- ;;;### (autoloads nil "menu-bar" "menu-bar.el" (19619 52030))
++;;;### (autoloads nil "menu-bar" "menu-bar.el" (19714 43298))
 +;;; Generated autoloads from menu-bar.el
 +
 +(put 'menu-bar-mode 'standard-value '(t))
 +
 +;;;***
 +\f
  ;;;### (autoloads (message-unbold-region message-bold-region message-news-other-frame
  ;;;;;;  message-news-other-window message-mail-other-frame message-mail-other-window
  ;;;;;;  message-bounce message-resend message-insinuate-rmail message-forward-rmail-make-body
  ;;;;;;  message-forward-make-body message-forward message-recover
  ;;;;;;  message-supersede message-cancel-news message-followup message-wide-reply
  ;;;;;;  message-reply message-news message-mail message-mode) "message"
- ;;;;;;  "gnus/message.el" (19640 47194))
 -;;;;;;  "gnus/message.el" (19695 9549))
++;;;;;;  "gnus/message.el" (19714 43298))
  ;;; Generated autoloads from gnus/message.el
  
  (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook)
@@@ -17033,26 -16984,26 +17029,16 @@@ which specify the range to operate on
  ;;;***
  \f
  ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19673 1234))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/meta-mode.el
  
  (autoload 'metafont-mode "meta-mode" "\
  Major mode for editing Metafont sources.
--Special commands:
--\\{meta-mode-map}
--
--Turning on Metafont mode calls the value of the variables
--`meta-common-mode-hook' and `metafont-mode-hook'.
  
  \(fn)" t nil)
  
  (autoload 'metapost-mode "meta-mode" "\
  Major mode for editing MetaPost sources.
--Special commands:
--\\{meta-mode-map}
--
--Turning on MetaPost mode calls the value of the variable
--`meta-common-mode-hook' and `metafont-mode-hook'.
  
  \(fn)" t nil)
  
@@@ -17348,7 -17299,7 +17334,7 @@@ Returns non-nil if the new state is ena
  
  ;;;***
  \f
- ;;;### (autoloads (butterfly) "misc" "misc.el" (19598 13691))
 -;;;### (autoloads (butterfly) "misc" "misc.el" (19668 18610))
++;;;### (autoloads (butterfly) "misc" "misc.el" (19714 43298))
  ;;; Generated autoloads from misc.el
  
  (autoload 'butterfly "misc" "\
@@@ -17449,19 -17400,19 +17435,18 @@@ whose file names match the specified wi
  ;;;***
  \f
  ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19611 35755))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/mixal-mode.el
  
  (autoload 'mixal-mode "mixal-mode" "\
  Major mode for the mixal asm language.
--\\{mixal-mode-map}
  
  \(fn)" t nil)
  
  ;;;***
  \f
  ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents)
- ;;;;;;  "mm-extern" "gnus/mm-extern.el" (19640 47194))
 -;;;;;;  "mm-extern" "gnus/mm-extern.el" (19635 50568))
++;;;;;;  "mm-extern" "gnus/mm-extern.el" (19714 43298))
  ;;; Generated autoloads from gnus/mm-extern.el
  
  (autoload 'mm-extern-cache-contents "mm-extern" "\
@@@ -17494,7 -17445,7 +17479,7 @@@ If NO-DISPLAY is nil, display it. Other
  ;;;***
  \f
  ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents)
- ;;;;;;  "mm-url" "gnus/mm-url.el" (19598 13691))
 -;;;;;;  "mm-url" "gnus/mm-url.el" (19582 65302))
++;;;;;;  "mm-url" "gnus/mm-url.el" (19714 43298))
  ;;; Generated autoloads from gnus/mm-url.el
  
  (autoload 'mm-url-insert-file-contents "mm-url" "\
@@@ -17511,7 -17462,7 +17496,7 @@@ Insert file contents of URL using `mm-u
  ;;;***
  \f
  ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu"
- ;;;;;;  "gnus/mm-uu.el" (19598 13691))
 -;;;;;;  "gnus/mm-uu.el" (19691 3508))
++;;;;;;  "gnus/mm-uu.el" (19714 43298))
  ;;; Generated autoloads from gnus/mm-uu.el
  
  (autoload 'mm-uu-dissect "mm-uu" "\
@@@ -17548,7 -17499,7 +17533,7 @@@ Not documente
  \f
  ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt
  ;;;;;;  mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt)
- ;;;;;;  "mml2015" "gnus/mml2015.el" (19640 47194))
 -;;;;;;  "mml2015" "gnus/mml2015.el" (19687 6902))
++;;;;;;  "mml2015" "gnus/mml2015.el" (19714 43298))
  ;;; Generated autoloads from gnus/mml2015.el
  
  (autoload 'mml2015-decrypt "mml2015" "\
@@@ -17588,11 -17539,13 +17573,13 @@@ Not documente
  
  ;;;***
  \f
- ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el"
- ;;;;;;  (19640 47194))
 -;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (19676
 -;;;;;;  36176))
++;;;### (autoloads (m2-mode) "modula2" "progmodes/modula2.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/modula2.el
  
- (autoload 'modula-2-mode "modula2" "\
+ (defalias 'modula-2-mode 'm2-mode)
+ (autoload 'm2-mode "modula2" "\
  This is a mode intended to support program development in Modula-2.
  All control constructs of Modula-2 can be reached by typing C-c
  followed by the first character of the construct.
@@@ -17637,7 -17590,7 +17624,7 @@@ Convert morse coded text in region to o
  ;;;***
  \f
  ;;;### (autoloads (mouse-drag-drag mouse-drag-throw) "mouse-drag"
- ;;;;;;  "mouse-drag.el" (19562 42953))
 -;;;;;;  "mouse-drag.el" (19672 56753))
++;;;;;;  "mouse-drag.el" (19714 43298))
  ;;; Generated autoloads from mouse-drag.el
  
  (autoload 'mouse-drag-throw "mouse-drag" "\
@@@ -17684,8 -17637,8 +17671,8 @@@ To test this function, evaluate
  
  ;;;***
  \f
- ;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (19598
- ;;;;;;  13691))
 -;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (19687
 -;;;;;;  6902))
++;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from mouse-sel.el
  
  (defvar mouse-sel-mode nil "\
@@@ -17737,7 -17690,7 +17724,7 @@@ primary selection and region
  
  ;;;***
  \f
- ;;;### (autoloads (mpc) "mpc" "mpc.el" (19562 42953))
 -;;;### (autoloads (mpc) "mpc" "mpc.el" (19373 24504))
++;;;### (autoloads (mpc) "mpc" "mpc.el" (19714 43269))
  ;;; Generated autoloads from mpc.el
  
  (autoload 'mpc "mpc" "\
@@@ -17779,14 -17732,6 +17766,14 @@@ different buffer menu using the functio
  
  ;;;***
  \f
- ;;;### (autoloads nil "mule-cmds" "international/mule-cmds.el" (19598
- ;;;;;;  13691))
++;;;### (autoloads nil "mule-cmds" "international/mule-cmds.el" (19714
++;;;;;;  43298))
 +;;; Generated autoloads from international/mule-cmds.el
 +
 +(put 'input-method-alist 'risky-local-variable t)
 +
 +;;;***
 +\f
  ;;;### (autoloads (font-show-log mule-diag list-input-methods list-fontsets
  ;;;;;;  describe-fontset describe-font list-coding-categories list-coding-systems
  ;;;;;;  describe-current-coding-system describe-current-coding-system-briefly
@@@ -18069,8 -18014,8 +18056,8 @@@ per-character basis, this may not be ac
  ;;;### (autoloads (network-connection network-connection-to-service
  ;;;;;;  whois-reverse-lookup whois finger ftp run-dig dns-lookup-host
  ;;;;;;  nslookup nslookup-host ping traceroute route arp netstat
- ;;;;;;  iwconfig ifconfig) "net-utils" "net/net-utils.el" (19619
- ;;;;;;  52030))
 -;;;;;;  iwconfig ifconfig) "net-utils" "net/net-utils.el" (19672
 -;;;;;;  41548))
++;;;;;;  iwconfig ifconfig) "net-utils" "net/net-utils.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from net/net-utils.el
  
  (autoload 'ifconfig "net-utils" "\
@@@ -18182,7 -18127,7 +18169,7 @@@ listed in the PORTS list
  ;;;;;;  uncomment-region comment-kill comment-set-column comment-indent
  ;;;;;;  comment-indent-default comment-normalize-vars comment-multi-line
  ;;;;;;  comment-padding comment-style comment-column) "newcomment"
- ;;;;;;  "newcomment.el" (19619 52030))
 -;;;;;;  "newcomment.el" (19648 59284))
++;;;;;;  "newcomment.el" (19714 43298))
  ;;; Generated autoloads from newcomment.el
  
  (defalias 'indent-for-comment 'comment-indent)
@@@ -18458,7 -18403,7 +18445,7 @@@ Start newsticker treeview
  ;;;***
  \f
  ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19664 37038))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/nndiary.el
  
  (autoload 'nndiary-generate-nov-databases "nndiary" "\
@@@ -18468,8 -18413,8 +18455,8 @@@ Generate NOV databases in all nndiary d
  
  ;;;***
  \f
- ;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (19640
- ;;;;;;  47194))
 -;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (19661
 -;;;;;;  61255))
++;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from gnus/nndoc.el
  
  (autoload 'nndoc-add-type "nndoc" "\
@@@ -18484,7 -18429,7 +18471,7 @@@ symbol in the alist
  ;;;***
  \f
  ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19695 9549))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/nnfolder.el
  
  (autoload 'nnfolder-generate-active-file "nnfolder" "\
@@@ -18496,7 -18441,7 +18483,7 @@@ This command does not work if you use s
  ;;;***
  \f
  ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19695 9549))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from gnus/nnml.el
  
  (autoload 'nnml-generate-nov-databases "nnml" "\
@@@ -18507,7 -18452,7 +18494,7 @@@ Generate NOV databases in all nnml dire
  ;;;***
  \f
  ;;;### (autoloads (disable-command enable-command disabled-command-function)
- ;;;;;;  "novice" "novice.el" (19562 42953))
 -;;;;;;  "novice" "novice.el" (19687 6902))
++;;;;;;  "novice" "novice.el" (19714 43298))
  ;;; Generated autoloads from novice.el
  
  (defvar disabled-command-function 'disabled-command-function "\
@@@ -18567,8 -18512,8 +18554,8 @@@ Return nil if the face cannot display 
  
  ;;;***
  \f
- ;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (19696
 -;;;;;;  28661))
++;;;### (autoloads (nxml-mode) "nxml-mode" "nxml/nxml-mode.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from nxml/nxml-mode.el
  
  (autoload 'nxml-mode "nxml-mode" "\
@@@ -18642,21 -18587,25 +18629,25 @@@ the variable `nxml-enabled-unicode-bloc
  
  ;;;***
  \f
- ;;;### (autoloads (org-babel-previous-src-block org-babel-next-src-block
- ;;;;;;  org-babel-goto-named-result org-babel-goto-named-src-block
- ;;;;;;  org-babel-hide-result-toggle-maybe org-babel-sha1-hash org-babel-execute-subtree
- ;;;;;;  org-babel-execute-buffer org-babel-open-src-block-result
- ;;;;;;  org-babel-switch-to-session org-babel-load-in-session org-babel-expand-src-block
- ;;;;;;  org-babel-execute-src-block org-babel-pop-to-session-maybe
+ ;;;### (autoloads (org-babel-mark-block org-babel-previous-src-block
+ ;;;;;;  org-babel-next-src-block org-babel-goto-named-result org-babel-goto-named-src-block
+ ;;;;;;  org-babel-goto-src-block-head org-babel-hide-result-toggle-maybe
+ ;;;;;;  org-babel-sha1-hash org-babel-execute-subtree org-babel-execute-buffer
+ ;;;;;;  org-babel-open-src-block-result org-babel-switch-to-session-with-code
+ ;;;;;;  org-babel-switch-to-session org-babel-initiate-session org-babel-load-in-session
+ ;;;;;;  org-babel-expand-src-block org-babel-execute-src-block org-babel-pop-to-session-maybe
  ;;;;;;  org-babel-load-in-session-maybe org-babel-expand-src-block-maybe
- ;;;;;;  org-babel-execute-src-block-maybe) "ob" "org/ob.el" (19598
- ;;;;;;  13691))
+ ;;;;;;  org-babel-execute-maybe org-babel-execute-safely-maybe) "ob"
 -;;;;;;  "org/ob.el" (19677 59043))
++;;;;;;  "org/ob.el" (19714 43298))
  ;;; Generated autoloads from org/ob.el
  
- (autoload 'org-babel-execute-src-block-maybe "ob" "\
- Conditionally execute a source block.
- Detect if this is context for a Babel src-block and if so
- then run `org-babel-execute-src-block'.
+ (autoload 'org-babel-execute-safely-maybe "ob" "\
+ Not documented
+ \(fn)" nil nil)
+ (autoload 'org-babel-execute-maybe "ob" "\
+ Not documented
  
  \(fn)" t nil)
  
@@@ -18776,7 -18752,7 +18794,7 @@@ Mark current src bloc
  ;;;***
  \f
  ;;;### (autoloads (org-babel-describe-bindings) "ob-keys" "org/ob-keys.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/ob-keys.el
  
  (autoload 'org-babel-describe-bindings "ob-keys" "\
@@@ -18787,7 -18763,7 +18805,7 @@@ Describe all keybindings behind `org-ba
  ;;;***
  \f
  ;;;### (autoloads (org-babel-lob-get-info org-babel-lob-execute-maybe
- ;;;;;;  org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (19562 42953))
 -;;;;;;  org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (19677 59221))
++;;;;;;  org-babel-lob-ingest) "ob-lob" "org/ob-lob.el" (19714 43298))
  ;;; Generated autoloads from org/ob-lob.el
  
  (autoload 'org-babel-lob-ingest "ob-lob" "\
@@@ -18816,10 -18786,20 +18828,20 @@@ Return a Library of Babel function cal
  
  ;;;***
  \f
- ;;;### (autoloads (org-babel-tangle org-babel-tangle-file org-babel-load-file)
- ;;;;;;  "ob-tangle" "org/ob-tangle.el" (19562 42953))
+ ;;;### (autoloads (org-babel-tangle org-babel-tangle-file org-babel-load-file
+ ;;;;;;  org-babel-tangle-lang-exts) "ob-tangle" "org/ob-tangle.el"
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/ob-tangle.el
  
+ (defvar org-babel-tangle-lang-exts '(("emacs-lisp" . "el")) "\
+ Alist mapping languages to their file extensions.
+ The key is the language name, the value is the string that should
+ be inserted as the extension commonly used to identify files
+ written in this language.  If no entry is found in this list,
+ then the name of the language is used.")
+ (custom-autoload 'org-babel-tangle-lang-exts "ob-tangle" t)
  (autoload 'org-babel-load-file "ob-tangle" "\
  Load Emacs Lisp source code blocks in the Org-mode FILE.
  This function exports the source code using
@@@ -18850,7 -18830,7 +18872,7 @@@ exported source code blocks by language
  ;;;***
  \f
  ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19580 19536))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/octave-inf.el
  
  (autoload 'inferior-octave "octave-inf" "\
@@@ -18873,7 -18853,7 +18895,7 @@@ startup file, `~/.emacs-octave'
  ;;;***
  \f
  ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19687 6902))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/octave-mod.el
  
  (autoload 'octave-mode "octave-mod" "\
@@@ -18969,7 -18941,7 +18983,7 @@@ including a reproducible test case and 
  ;;;;;;  org-insert-link-global org-store-link org-run-like-in-org-mode
  ;;;;;;  turn-on-orgstruct++ turn-on-orgstruct orgstruct-mode org-global-cycle
  ;;;;;;  org-mode org-babel-do-load-languages) "org" "org/org.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org.el
  
  (autoload 'org-babel-do-load-languages "org" "\
@@@ -19192,7 -19164,7 +19206,7 @@@ Call the customize function with org a
  ;;;;;;  org-diary org-agenda-list-stuck-projects org-tags-view org-todo-list
  ;;;;;;  org-search-view org-agenda-list org-batch-store-agenda-views
  ;;;;;;  org-store-agenda-views org-batch-agenda-csv org-batch-agenda
- ;;;;;;  org-agenda) "org-agenda" "org/org-agenda.el" (19619 52030))
 -;;;;;;  org-agenda) "org-agenda" "org/org-agenda.el" (19676 49793))
++;;;;;;  org-agenda) "org-agenda" "org/org-agenda.el" (19714 43298))
  ;;; Generated autoloads from org/org-agenda.el
  
  (autoload 'org-agenda "org-agenda" "\
@@@ -19443,7 -19414,7 +19456,7 @@@ belonging to the \"Work\" category
  \f
  ;;;### (autoloads (org-archive-subtree-default-with-confirmation
  ;;;;;;  org-archive-subtree-default) "org-archive" "org/org-archive.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-archive.el
  
  (autoload 'org-archive-subtree-default "org-archive" "\
@@@ -19463,8 -19434,8 +19476,8 @@@ This command is set with the variable `
  ;;;### (autoloads (org-export-as-ascii org-export-region-as-ascii
  ;;;;;;  org-replace-region-by-ascii org-export-as-ascii-to-buffer
  ;;;;;;  org-export-as-utf8-to-buffer org-export-as-utf8 org-export-as-latin1-to-buffer
- ;;;;;;  org-export-as-latin1) "org-ascii" "org/org-ascii.el" (19562
- ;;;;;;  42953))
 -;;;;;;  org-export-as-latin1) "org-ascii" "org/org-ascii.el" (19676
 -;;;;;;  49793))
++;;;;;;  org-export-as-latin1) "org-ascii" "org/org-ascii.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from org/org-ascii.el
  
  (autoload 'org-export-as-latin1 "org-ascii" "\
@@@ -19537,8 -19508,8 +19550,8 @@@ publishing directory
  
  ;;;***
  \f
- ;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (19676
 -;;;;;;  49793))
++;;;### (autoloads (org-attach) "org-attach" "org/org-attach.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from org/org-attach.el
  
  (autoload 'org-attach "org-attach" "\
@@@ -19550,7 -19521,7 +19563,7 @@@ Shows a list of commands and prompts fo
  ;;;***
  \f
  ;;;### (autoloads (org-bbdb-anniversaries) "org-bbdb" "org/org-bbdb.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-bbdb.el
  
  (autoload 'org-bbdb-anniversaries "org-bbdb" "\
@@@ -19561,7 -19532,7 +19574,7 @@@ Extract anniversaries from BBDB for dis
  ;;;***
  \f
  ;;;### (autoloads (org-capture-import-remember-templates org-capture-insert-template-here
- ;;;;;;  org-capture) "org-capture" "org/org-capture.el" (19562 42953))
 -;;;;;;  org-capture) "org-capture" "org/org-capture.el" (19678 1813))
++;;;;;;  org-capture) "org-capture" "org/org-capture.el" (19714 43298))
  ;;; Generated autoloads from org/org-capture.el
  
  (autoload 'org-capture "org-capture" "\
@@@ -19599,7 -19570,7 +19612,7 @@@ Set org-capture-templates to be simila
  ;;;***
  \f
  ;;;### (autoloads (org-clock-persistence-insinuate org-get-clocktable)
- ;;;;;;  "org-clock" "org/org-clock.el" (19562 42953))
 -;;;;;;  "org-clock" "org/org-clock.el" (19676 49793))
++;;;;;;  "org-clock" "org/org-clock.el" (19714 43298))
  ;;; Generated autoloads from org/org-clock.el
  
  (autoload 'org-get-clocktable "org-clock" "\
@@@ -19617,7 -19588,7 +19630,7 @@@ Set up hooks for clock persistence
  ;;;***
  \f
  ;;;### (autoloads (org-datetree-find-date-create) "org-datetree"
- ;;;;;;  "org/org-datetree.el" (19562 42953))
 -;;;;;;  "org/org-datetree.el" (19676 49793))
++;;;;;;  "org/org-datetree.el" (19714 43298))
  ;;; Generated autoloads from org/org-datetree.el
  
  (autoload 'org-datetree-find-date-create "org-datetree" "\
@@@ -19633,7 -19604,7 +19646,7 @@@ tree can be found
  ;;;### (autoloads (org-export-as-docbook org-export-as-docbook-pdf-and-open
  ;;;;;;  org-export-as-docbook-pdf org-export-region-as-docbook org-replace-region-by-docbook
  ;;;;;;  org-export-as-docbook-to-buffer org-export-as-docbook-batch)
- ;;;;;;  "org-docbook" "org/org-docbook.el" (19562 42953))
 -;;;;;;  "org-docbook" "org/org-docbook.el" (19676 49793))
++;;;;;;  "org-docbook" "org/org-docbook.el" (19714 43298))
  ;;; Generated autoloads from org/org-docbook.el
  
  (autoload 'org-export-as-docbook-batch "org-docbook" "\
@@@ -19710,7 -19681,7 +19723,7 @@@ publishing directory
  \f
  ;;;### (autoloads (org-insert-export-options-template org-export-as-org
  ;;;;;;  org-export-visible org-export) "org-exp" "org/org-exp.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-exp.el
  
  (autoload 'org-export "org-exp" "\
@@@ -19767,8 -19738,8 +19780,8 @@@ Insert into the buffer a template with 
  ;;;***
  \f
  ;;;### (autoloads (org-feed-show-raw-feed org-feed-goto-inbox org-feed-update
- ;;;;;;  org-feed-update-all) "org-feed" "org/org-feed.el" (19562
- ;;;;;;  42953))
 -;;;;;;  org-feed-update-all) "org-feed" "org/org-feed.el" (19676
 -;;;;;;  49793))
++;;;;;;  org-feed-update-all) "org-feed" "org/org-feed.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from org/org-feed.el
  
  (autoload 'org-feed-update-all "org-feed" "\
@@@ -19796,7 -19767,7 +19809,7 @@@ Show the raw feed buffer of a feed
  ;;;***
  \f
  ;;;### (autoloads (org-footnote-normalize org-footnote-action) "org-footnote"
- ;;;;;;  "org/org-footnote.el" (19562 42953))
 -;;;;;;  "org/org-footnote.el" (19676 49793))
++;;;;;;  "org/org-footnote.el" (19714 43298))
  ;;; Generated autoloads from org/org-footnote.el
  
  (autoload 'org-footnote-action "org-footnote" "\
@@@ -19823,7 -19794,7 +19836,7 @@@ referenced sequence
  ;;;### (autoloads (org-freemind-to-org-mode org-freemind-from-org-sparse-tree
  ;;;;;;  org-freemind-from-org-mode org-freemind-from-org-mode-node
  ;;;;;;  org-freemind-show org-export-as-freemind) "org-freemind"
- ;;;;;;  "org/org-freemind.el" (19562 42953))
 -;;;;;;  "org/org-freemind.el" (19676 49793))
++;;;;;;  "org/org-freemind.el" (19714 43298))
  ;;; Generated autoloads from org/org-freemind.el
  
  (autoload 'org-export-as-freemind "org-freemind" "\
@@@ -19861,7 -19855,7 +19897,7 @@@ Convert FreeMind file MM-FILE to `org-m
  ;;;### (autoloads (org-export-htmlize-generate-css org-export-as-html
  ;;;;;;  org-export-region-as-html org-replace-region-by-html org-export-as-html-to-buffer
  ;;;;;;  org-export-as-html-batch org-export-as-html-and-open) "org-html"
- ;;;;;;  "org/org-html.el" (19562 42953))
 -;;;;;;  "org/org-html.el" (19676 49793))
++;;;;;;  "org/org-html.el" (19714 43298))
  ;;; Generated autoloads from org/org-html.el
  
  (put 'org-export-html-style-include-default 'safe-local-variable 'booleanp)
@@@ -19955,7 -19949,7 +19991,7 @@@ that uses these same face definitions
  \f
  ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files
  ;;;;;;  org-export-icalendar-this-file) "org-icalendar" "org/org-icalendar.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-icalendar.el
  
  (autoload 'org-export-icalendar-this-file "org-icalendar" "\
@@@ -19980,9 -19974,10 +20016,10 @@@ The file is stored under the name `org-
  
  ;;;***
  \f
- ;;;### (autoloads (org-id-find-id-file org-id-find org-id-goto org-id-get-with-outline-drilling
- ;;;;;;  org-id-get-with-outline-path-completion org-id-get org-id-copy
- ;;;;;;  org-id-get-create) "org-id" "org/org-id.el" (19562 42953))
+ ;;;### (autoloads (org-id-store-link org-id-find-id-file org-id-find
+ ;;;;;;  org-id-goto org-id-get-with-outline-drilling org-id-get-with-outline-path-completion
+ ;;;;;;  org-id-get org-id-copy org-id-get-create) "org-id" "org/org-id.el"
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-id.el
  
  (autoload 'org-id-get-create "org-id" "\
@@@ -20046,7 -20046,7 +20088,7 @@@ Store a link to the current entry, usin
  ;;;***
  \f
  ;;;### (autoloads (org-indent-mode) "org-indent" "org/org-indent.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-indent.el
  
  (autoload 'org-indent-mode "org-indent" "\
@@@ -20061,7 -20061,7 +20103,7 @@@ FIXME:  How to update when broken
  ;;;***
  \f
  ;;;### (autoloads (org-irc-store-link) "org-irc" "org/org-irc.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-irc.el
  
  (autoload 'org-irc-store-link "org-irc" "\
@@@ -20074,7 -20074,7 +20116,7 @@@ Dispatch to the appropriate function t
  ;;;### (autoloads (org-export-as-pdf-and-open org-export-as-pdf org-export-as-latex
  ;;;;;;  org-export-region-as-latex org-replace-region-by-latex org-export-as-latex-to-buffer
  ;;;;;;  org-export-as-latex-batch) "org-latex" "org/org-latex.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-latex.el
  
  (autoload 'org-export-as-latex-batch "org-latex" "\
@@@ -20154,8 -20154,8 +20196,8 @@@ Export as LaTeX, then process through t
  ;;;***
  \f
  ;;;### (autoloads (org-mobile-create-sumo-agenda org-mobile-pull
- ;;;;;;  org-mobile-push) "org-mobile" "org/org-mobile.el" (19562
- ;;;;;;  42953))
 -;;;;;;  org-mobile-push) "org-mobile" "org/org-mobile.el" (19676
 -;;;;;;  49793))
++;;;;;;  org-mobile-push) "org-mobile" "org/org-mobile.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from org/org-mobile.el
  
  (autoload 'org-mobile-push "org-mobile" "\
@@@ -20180,7 -20180,7 +20222,7 @@@ Create a file that contains all custom 
  ;;;***
  \f
  ;;;### (autoloads (org-plot/gnuplot) "org-plot" "org/org-plot.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-plot.el
  
  (autoload 'org-plot/gnuplot "org-plot" "\
@@@ -20194,7 -20194,7 +20236,7 @@@ line directly before or after the table
  \f
  ;;;### (autoloads (org-publish-current-project org-publish-current-file
  ;;;;;;  org-publish-all org-publish) "org-publish" "org/org-publish.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-publish.el
  
  (defalias 'org-publish-project 'org-publish)
@@@ -20228,7 -20228,7 +20270,7 @@@ the project
  \f
  ;;;### (autoloads (org-remember-handler org-remember org-remember-apply-template
  ;;;;;;  org-remember-annotation org-remember-insinuate) "org-remember"
- ;;;;;;  "org/org-remember.el" (19562 42953))
 -;;;;;;  "org/org-remember.el" (19676 49793))
++;;;;;;  "org/org-remember.el" (19714 43298))
  ;;; Generated autoloads from org/org-remember.el
  
  (autoload 'org-remember-insinuate "org-remember" "\
@@@ -20304,7 -20304,7 +20346,7 @@@ See also the variable `org-reverse-note
  ;;;***
  \f
  ;;;### (autoloads (org-table-to-lisp orgtbl-mode turn-on-orgtbl)
- ;;;;;;  "org-table" "org/org-table.el" (19562 42953))
 -;;;;;;  "org-table" "org/org-table.el" (19676 49793))
++;;;;;;  "org-table" "org/org-table.el" (19714 43298))
  ;;; Generated autoloads from org/org-table.el
  
  (autoload 'turn-on-orgtbl "org-table" "\
@@@ -20328,7 -20328,7 +20370,7 @@@ The table is taken from the parameter T
  ;;;***
  \f
  ;;;### (autoloads (org-export-as-taskjuggler-and-open org-export-as-taskjuggler)
- ;;;;;;  "org-taskjuggler" "org/org-taskjuggler.el" (19562 42953))
 -;;;;;;  "org-taskjuggler" "org/org-taskjuggler.el" (19676 49793))
++;;;;;;  "org-taskjuggler" "org/org-taskjuggler.el" (19714 43298))
  ;;; Generated autoloads from org/org-taskjuggler.el
  
  (autoload 'org-export-as-taskjuggler "org-taskjuggler" "\
@@@ -20356,7 -20356,7 +20398,7 @@@ with the TaskJuggler GUI
  \f
  ;;;### (autoloads (org-timer-set-timer org-timer-item org-timer-change-times-in-region
  ;;;;;;  org-timer org-timer-start) "org-timer" "org/org-timer.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-timer.el
  
  (autoload 'org-timer-start "org-timer" "\
@@@ -20414,7 -20417,7 +20459,7 @@@ replace any running timer
  ;;;***
  \f
  ;;;### (autoloads (org-export-as-xoxo) "org-xoxo" "org/org-xoxo.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19676 49793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from org/org-xoxo.el
  
  (autoload 'org-export-as-xoxo "org-xoxo" "\
@@@ -20486,7 -20489,7 +20531,7 @@@ See the command `outline-mode' for mor
  ;;;### (autoloads (list-packages describe-package package-initialize
  ;;;;;;  package-install-file package-install-from-buffer package-install
  ;;;;;;  package-enable-at-startup) "package" "emacs-lisp/package.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19675 5423))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from emacs-lisp/package.el
  
  (defvar package-enable-at-startup t "\
@@@ -20547,7 -20551,7 +20593,7 @@@ The list is displayed in a buffer name
  
  ;;;***
  \f
- ;;;### (autoloads (show-paren-mode) "paren" "paren.el" (19562 42953))
 -;;;### (autoloads (show-paren-mode) "paren" "paren.el" (19648 63605))
++;;;### (autoloads (show-paren-mode) "paren" "paren.el" (19714 43298))
  ;;; Generated autoloads from paren.el
  
  (defvar show-paren-mode nil "\
@@@ -20585,8 -20589,8 +20631,8 @@@ unknown are returned as nil
  
  ;;;***
  \f
- ;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (19619
- ;;;;;;  52030))
 -;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (19670
 -;;;;;;  1520))
++;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/pascal.el
  
  (autoload 'pascal-mode "pascal" "\
@@@ -20741,7 -20745,7 +20787,7 @@@ but before calling PC Selection mode)
  ;;;***
  \f
  ;;;### (autoloads (pcase-let pcase-let* pcase) "pcase" "emacs-lisp/pcase.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19693 26133))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from emacs-lisp/pcase.el
  
  (autoload 'pcase "pcase" "\
@@@ -21064,7 -21074,7 +21116,7 @@@ The exact behavior is determined also b
  ;;;***
  \f
  ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19668 19310))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/perl-mode.el
  (put 'perl-indent-level 'safe-local-variable 'integerp)
  (put 'perl-continued-statement-offset 'safe-local-variable 'integerp)
@@@ -21273,7 -21283,7 +21325,7 @@@ True if decoded armor MESSAGE-KEYS has 
  ;;;***
  \f
  ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19687 6902))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from textmodes/picture.el
  
  (autoload 'picture-mode "picture" "\
@@@ -21381,7 -21391,7 +21433,7 @@@ pong-mode keybindings:\\<pong-mode-map
  
  ;;;***
  \f
- ;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (19640 47194))
 -;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (19624 59837))
++;;;### (autoloads (pop3-movemail) "pop3" "gnus/pop3.el" (19714 43298))
  ;;; Generated autoloads from gnus/pop3.el
  
  (autoload 'pop3-movemail "pop3" "\
@@@ -21462,7 -21472,7 +21514,7 @@@ Ignores leading comment characters
  ;;;;;;  pr-ps-buffer-print pr-ps-buffer-using-ghostscript pr-ps-buffer-preview
  ;;;;;;  pr-ps-directory-ps-print pr-ps-directory-print pr-ps-directory-using-ghostscript
  ;;;;;;  pr-ps-directory-preview pr-interface) "printing" "printing.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19687 6902))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from printing.el
  
  (autoload 'pr-interface "printing" "\
@@@ -22065,7 -22075,7 +22117,7 @@@ See `proced-mode' for a description of 
  ;;;***
  \f
  ;;;### (autoloads (switch-to-prolog prolog-mode) "prolog" "progmodes/prolog.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19672 21006))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/prolog.el
  
  (autoload 'prolog-mode "prolog" "\
@@@ -22088,8 -22098,8 +22140,47 @@@ With prefix argument \\[universal-prefi
  
  ;;;***
  \f
 -;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (19580
 -;;;;;;  19536))
++;;;### (autoloads (open-protocol-stream) "proto-stream" "gnus/proto-stream.el"
++;;;;;;  (19714 43298))
++;;; Generated autoloads from gnus/proto-stream.el
++
++(autoload 'open-protocol-stream "proto-stream" "\
++Open a network stream to HOST, upgrading to STARTTLS if possible.
++The first four parameters have the same meaning as in
++`open-network-stream'.  The function returns a list where the
++first element is the stream, the second element is the greeting
++the server replied with after connecting, and the third element
++is a string representing the capabilities of the server (if any).
++
++The PARAMETERS is a keyword list that can have the following
++values:
++
++:type -- either `network', `tls', `shell' or `starttls'.  If
++omitted, the default is `network'.  `network' will be
++opportunistically upgraded to STARTTLS if both the server and
++Emacs supports it.
++
++:end-of-command -- a regexp saying what the end of a command is.
++This defaults to \"\\n\".
++
++:success -- a regexp saying whether the STARTTLS command was
++successful or not.  For instance, for NNTP this is \"^3\".
++
++:capability-command -- a string representing the command used to
++query server for capabilities.  For instance, for IMAP this is
++\"1 CAPABILITY\\r\\n\".
++
++:starttls-function -- a function that takes one parameter, which
++is the response to the capaibility command.  It should return nil
++if it turns out that the server doesn't support STARTTLS, or the
++command to switch on STARTTLS otherwise.
++
++\(fn NAME BUFFER HOST SERVICE &rest PARAMETERS)" nil nil)
++
++;;;***
++\f
 +;;;### (autoloads (bdf-directory-list) "ps-bdf" "ps-bdf.el" (19598
 +;;;;;;  13691))
  ;;; Generated autoloads from ps-bdf.el
  
  (defvar bdf-directory-list (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "\
@@@ -22100,8 -22110,8 +22191,8 @@@ The default value is '(\"/usr/local/sha
  
  ;;;***
  \f
- ;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (19598
- ;;;;;;  13691))
 -;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (19580
 -;;;;;;  19536))
++;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/ps-mode.el
  
  (autoload 'ps-mode "ps-mode" "\
@@@ -22152,8 -22162,8 +22243,8 @@@ Typing \\<ps-run-mode-map>\\[ps-run-got
  ;;;;;;  ps-spool-region ps-spool-buffer-with-faces ps-spool-buffer
  ;;;;;;  ps-print-region-with-faces ps-print-region ps-print-buffer-with-faces
  ;;;;;;  ps-print-buffer ps-print-customize ps-print-color-p ps-paper-type
- ;;;;;;  ps-page-dimensions-database) "ps-print" "ps-print.el" (19640
- ;;;;;;  47194))
 -;;;;;;  ps-page-dimensions-database) "ps-print" "ps-print.el" (19648
 -;;;;;;  63513))
++;;;;;;  ps-page-dimensions-database) "ps-print" "ps-print.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from ps-print.el
  
  (defvar ps-page-dimensions-database (purecopy (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list 'letter (* 72 8.5) (* 72 11.0) "Letter") (list 'legal (* 72 8.5) (* 72 14.0) "Legal") (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall") (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid") (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger") (list 'statement (* 72 5.5) (* 72 8.5) "Statement") (list 'executive (* 72 7.5) (* 72 10.0) "Executive") (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small") (list 'b4 (* 72 10.125) (* 72 14.33) "B4") (list 'b5 (* 72 7.16) (* 72 10.125) "B5") '(addresslarge 236.0 99.0 "AddressLarge") '(addresssmall 236.0 68.0 "AddressSmall") '(cuthanging13 90.0 222.0 "CutHanging13") '(cuthanging15 90.0 114.0 "CutHanging15") '(diskette 181.0 136.0 "Diskette") '(eurofilefolder 139.0 112.0 "EuropeanFilefolder") '(eurofoldernarrow 526.0 107.0 "EuroFolderNarrow") '(eurofolderwide 526.0 136.0 "EuroFolderWide") '(euronamebadge 189.0 108.0 "EuroNameBadge") '(euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge") '(filefolder 230.0 37.0 "FileFolder") '(jewelry 76.0 136.0 "Jewelry") '(mediabadge 180.0 136.0 "MediaBadge") '(multipurpose 126.0 68.0 "MultiPurpose") '(retaillabel 90.0 104.0 "RetailLabel") '(shipping 271.0 136.0 "Shipping") '(slide35mm 26.0 104.0 "Slide35mm") '(spine8mm 187.0 26.0 "Spine8mm") '(topcoated 425.19685 136.0 "TopCoatedPaper") '(topcoatedpaper 396.0 136.0 "TopcoatedPaper150") '(vhsface 205.0 127.0 "VHSFace") '(vhsspine 400.0 50.0 "VHSSpine") '(zipdisk 156.0 136.0 "ZipDisk"))) "\
@@@ -22350,7 -22360,7 +22441,7 @@@ If EXTENSION is any other symbol, it i
  ;;;***
  \f
  ;;;### (autoloads (python-shell jython-mode python-mode run-python)
- ;;;;;;  "python" "progmodes/python.el" (19598 13691))
 -;;;;;;  "python" "progmodes/python.el" (19691 3508))
++;;;;;;  "python" "progmodes/python.el" (19714 43298))
  ;;; Generated autoloads from progmodes/python.el
  
  (add-to-list 'interpreter-mode-alist (cons (purecopy "jython") 'jython-mode))
  
  (autoload 'run-python "python" "\
  Run an inferior Python process, input and output via buffer *Python*.
--CMD is the Python command to run.  NOSHOW non-nil means don't show the
--buffer automatically.
++CMD is the Python command to run.  NOSHOW non-nil means don't
++show the buffer automatically.
++
++Interactively, a prefix arg means to prompt for the initial
++Python command line (default is `python-command').
  
--Normally, if there is a process already running in `python-buffer',
--switch to that buffer.  Interactively, a prefix arg allows you to edit
--the initial command line (default is `python-command'); `-i' etc. args
--will be added to this as appropriate.  A new process is started if:
--one isn't running attached to `python-buffer', or interactively the
--default `python-command', or argument NEW is non-nil.  See also the
--documentation for `python-buffer'.
++A new process is started if one isn't running attached to
++`python-buffer', or if called from Lisp with non-nil arg NEW.
++Otherwise, if a process is already running in `python-buffer',
++switch to that buffer.
  
--Runs the hook `inferior-python-mode-hook' (after the
--`comint-mode-hook' is run).  (Type \\[describe-mode] in the process
--buffer for a list of commands.)
++This command runs the hook `inferior-python-mode-hook' after
++running `comint-mode-hook'.  Type \\[describe-mode] in the
++process buffer for a list of commands.
++
++By default, Emacs inhibits the loading of Python modules from the
++current working directory, for security reasons.  To disable this
++behavior, change `python-remove-cwd-from-path' to nil.
  
  \(fn &optional CMD NOSHOW NEW)" t nil)
  
@@@ -22720,8 -22730,8 +22815,8 @@@ of each directory
  \f
  ;;;### (autoloads (quickurl-list quickurl-list-mode quickurl-edit-urls
  ;;;;;;  quickurl-browse-url-ask quickurl-browse-url quickurl-add-url
- ;;;;;;  quickurl-ask quickurl) "quickurl" "net/quickurl.el" (19640
- ;;;;;;  47194))
 -;;;;;;  quickurl-ask quickurl) "quickurl" "net/quickurl.el" (19672
 -;;;;;;  56753))
++;;;;;;  quickurl-ask quickurl) "quickurl" "net/quickurl.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from net/quickurl.el
  
  (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\
@@@ -23082,7 -23092,7 +23177,7 @@@ This enforces rescanning the buffer on 
  ;;;***
  \f
  ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19669 41170))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from textmodes/reftex-cite.el
  
  (autoload 'reftex-citation "reftex-cite" "\
@@@ -23129,7 -23139,7 +23224,7 @@@ With no argument, this command toggle
  ;;;***
  \f
  ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19664 56235))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from textmodes/reftex-index.el
  
  (autoload 'reftex-index-phrases-mode "reftex-index" "\
@@@ -23185,7 -23195,7 +23280,7 @@@ of master file
  ;;;***
  \f
  ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19645 60484))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from emacs-lisp/regexp-opt.el
  
  (autoload 'regexp-opt "regexp-opt" "\
@@@ -23216,7 -23226,7 +23311,7 @@@ This means the number of non-shy regex
  \f
  ;;;### (autoloads (remember-diary-extract-entries remember-clipboard
  ;;;;;;  remember-other-frame remember) "remember" "textmodes/remember.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19672 39537))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from textmodes/remember.el
  
  (autoload 'remember "remember" "\
@@@ -23247,7 -23257,7 +23342,7 @@@ Extract diary entries from the region
  
  ;;;***
  \f
- ;;;### (autoloads (repeat) "repeat" "repeat.el" (19619 52030))
 -;;;### (autoloads (repeat) "repeat" "repeat.el" (19645 60484))
++;;;### (autoloads (repeat) "repeat" "repeat.el" (19714 43298))
  ;;; Generated autoloads from repeat.el
  
  (autoload 'repeat "repeat" "\
@@@ -23302,7 -23312,7 +23397,7 @@@ mail-sending package is used for editin
  ;;;***
  \f
  ;;;### (autoloads (reposition-window) "reposition" "reposition.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19668 19461))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from reposition.el
  
  (autoload 'reposition-window "reposition" "\
@@@ -23429,8 -23439,8 +23524,8 @@@ variable
  ;;;;;;  rmail-secondary-file-directory rmail-primary-inbox-list rmail-highlighted-headers
  ;;;;;;  rmail-retry-ignored-headers rmail-displayed-headers rmail-ignored-headers
  ;;;;;;  rmail-dont-reply-to-names rmail-user-mail-address-regexp
- ;;;;;;  rmail-movemail-variant-p) "rmail" "mail/rmail.el" (19640
- ;;;;;;  47194))
 -;;;;;;  rmail-movemail-variant-p) "rmail" "mail/rmail.el" (19639
 -;;;;;;  17158))
++;;;;;;  rmail-movemail-variant-p) "rmail" "mail/rmail.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from mail/rmail.el
  
  (autoload 'rmail-movemail-variant-p "rmail" "\
@@@ -23701,7 -23711,7 +23796,7 @@@ Return a pattern
  ;;;***
  \f
  ;;;### (autoloads (rng-nxml-mode-init) "rng-nxml" "nxml/rng-nxml.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19696 28661))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from nxml/rng-nxml.el
  
  (autoload 'rng-nxml-mode-init "rng-nxml" "\
@@@ -23714,7 -23724,7 +23809,7 @@@ Validation will be enabled if `rng-nxml
  ;;;***
  \f
  ;;;### (autoloads (rng-validate-mode) "rng-valid" "nxml/rng-valid.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19696 28661))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from nxml/rng-valid.el
  
  (autoload 'rng-validate-mode "rng-valid" "\
@@@ -23844,7 -23854,7 +23939,7 @@@ Toggle the use of ROT13 encoding for th
  ;;;***
  \f
  ;;;### (autoloads (rst-minor-mode rst-mode) "rst" "textmodes/rst.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19687 6902))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from textmodes/rst.el
   (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode)))
  
@@@ -23882,7 -23892,7 +23977,7 @@@ for modes derived from Text mode, like 
  ;;;***
  \f
  ;;;### (autoloads (ruby-mode) "ruby-mode" "progmodes/ruby-mode.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19670 666))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/ruby-mode.el
  
  (autoload 'ruby-mode "ruby-mode" "\
@@@ -24255,7 -24265,7 +24350,7 @@@ which is probably undesirable
  ;;;***
  \f
  ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19561 48711))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/scheme.el
  
  (autoload 'scheme-mode "scheme" "\
@@@ -24408,7 -24418,7 +24503,7 @@@ Semantic mode
  ;;;;;;  mail-alias-file mail-default-reply-to mail-archive-file-name
  ;;;;;;  mail-header-separator send-mail-function mail-interactive
  ;;;;;;  mail-self-blind mail-specify-envelope-from mail-from-style)
- ;;;;;;  "sendmail" "mail/sendmail.el" (19619 52030))
 -;;;;;;  "sendmail" "mail/sendmail.el" (19696 28661))
++;;;;;;  "sendmail" "mail/sendmail.el" (19714 43298))
  ;;; Generated autoloads from mail/sendmail.el
  
  (defvar mail-from-style 'default "\
@@@ -24708,10 -24718,16 +24803,16 @@@ Like `mail' command, but display mail b
  ;;;***
  \f
  ;;;### (autoloads (server-save-buffers-kill-terminal server-mode
- ;;;;;;  server-force-delete server-start) "server" "server.el" (19640
- ;;;;;;  47194))
 -;;;;;;  server-force-delete server-start) "server" "server.el" (19687
 -;;;;;;  6902))
++;;;;;;  server-force-delete server-start) "server" "server.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from server.el
  
+ (put 'server-host 'risky-local-variable t)
+ (put 'server-port 'risky-local-variable t)
+ (put 'server-auth-dir 'risky-local-variable t)
  (autoload 'server-start "server" "\
  Allow this Emacs process to be a server for client processes.
  This starts a server communications subprocess through which
@@@ -24782,7 -24801,7 +24886,7 @@@ These are active only in the minibuffer
  ;;;***
  \f
  ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19651 33965))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from textmodes/sgml-mode.el
  
  (autoload 'sgml-mode "sgml-mode" "\
@@@ -24848,7 -24867,7 +24952,7 @@@ To work around that, do
  ;;;***
  \f
  ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19672 56753))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/sh-script.el
  (put 'sh-shell 'safe-local-variable 'symbolp)
  
@@@ -25017,7 -25036,7 +25121,7 @@@ Set up file shadowing
  ;;;***
  \f
  ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19696 28661))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from shell.el
  
  (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\
@@@ -25066,8 -25085,8 +25170,8 @@@ Otherwise, one argument `-i' is passed 
  
  ;;;***
  \f
- ;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (19640
- ;;;;;;  47194))
 -;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (19696
 -;;;;;;  27153))
++;;;### (autoloads (shr-insert-document) "shr" "gnus/shr.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from gnus/shr.el
  
  (autoload 'shr-insert-document "shr" "\
@@@ -25114,8 -25133,8 +25218,8 @@@ Turning on Sieve mode runs `sieve-mode-
  
  ;;;***
  \f
- ;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (19598
- ;;;;;;  13691))
 -;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (19668
 -;;;;;;  19649))
++;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from progmodes/simula.el
  
  (autoload 'simula-mode "simula" "\
@@@ -25164,7 -25183,7 +25268,7 @@@ with no arguments, if that value is non
  ;;;***
  \f
  ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new
- ;;;;;;  define-skeleton) "skeleton" "skeleton.el" (19591 62571))
 -;;;;;;  define-skeleton) "skeleton" "skeleton.el" (19677 38476))
++;;;;;;  define-skeleton) "skeleton" "skeleton.el" (19714 43298))
  ;;; Generated autoloads from skeleton.el
  
  (defvar skeleton-filter-function 'identity "\
@@@ -25274,7 -25293,7 +25378,7 @@@ symmetrical ones, and the same characte
  ;;;***
  \f
  ;;;### (autoloads (smerge-start-session smerge-mode smerge-ediff)
- ;;;;;;  "smerge-mode" "vc/smerge-mode.el" (19591 62571))
 -;;;;;;  "smerge-mode" "vc/smerge-mode.el" (19677 38476))
++;;;;;;  "smerge-mode" "vc/smerge-mode.el" (19714 43298))
  ;;; Generated autoloads from vc/smerge-mode.el
  
  (autoload 'smerge-ediff "smerge-mode" "\
@@@ -25479,7 -25498,7 +25583,7 @@@ Pick your favourite shortcuts
  \f
  ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields
  ;;;;;;  sort-fields sort-numeric-fields sort-pages sort-paragraphs
- ;;;;;;  sort-lines sort-subr) "sort" "sort.el" (19562 42953))
 -;;;;;;  sort-lines sort-subr) "sort" "sort.el" (19668 19352))
++;;;;;;  sort-lines sort-subr) "sort" "sort.el" (19714 43298))
  ;;; Generated autoloads from sort.el
  (put 'sort-fold-case 'safe-local-variable 'booleanp)
  
@@@ -25623,8 -25642,8 +25727,8 @@@ From a program takes two point or marke
  
  ;;;***
  \f
- ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (19640
- ;;;;;;  47194))
 -;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (19648
 -;;;;;;  31344))
++;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from gnus/spam.el
  
  (autoload 'spam-initialize "spam" "\
@@@ -25683,7 -25702,7 +25787,7 @@@ Spam reports will be queued with the me
  ;;;***
  \f
  ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar"
- ;;;;;;  "speedbar.el" (19591 62571))
 -;;;;;;  "speedbar.el" (19687 6902))
++;;;;;;  "speedbar.el" (19714 43298))
  ;;; Generated autoloads from speedbar.el
  
  (defalias 'speedbar 'speedbar-frame-mode)
@@@ -25772,7 -25791,7 +25876,7 @@@ Return a vector containing the lines fr
  ;;;;;;  sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix
  ;;;;;;  sql-sybase sql-oracle sql-product-interactive sql-connect
  ;;;;;;  sql-mode sql-help sql-add-product-keywords) "sql" "progmodes/sql.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19661 46305))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/sql.el
  
  (autoload 'sql-add-product-keywords "sql" "\
@@@ -26583,7 -26602,7 +26687,7 @@@ The variable `tab-width' controls the s
  ;;;;;;  table-recognize table-insert-row-column table-insert-column
  ;;;;;;  table-insert-row table-insert table-point-left-cell-hook
  ;;;;;;  table-point-entered-cell-hook table-load-hook table-cell-map-hook)
- ;;;;;;  "table" "textmodes/table.el" (19619 52030))
 -;;;;;;  "table" "textmodes/table.el" (19668 19553))
++;;;;;;  "table" "textmodes/table.el" (19714 43298))
  ;;; Generated autoloads from textmodes/table.el
  
  (defvar table-cell-map-hook nil "\
@@@ -27210,7 -27229,7 +27314,7 @@@ See also: variables `tar-update-datesta
  ;;;***
  \f
  ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl"
- ;;;;;;  "progmodes/tcl.el" (19598 13691))
 -;;;;;;  "progmodes/tcl.el" (19673 45510))
++;;;;;;  "progmodes/tcl.el" (19714 43298))
  ;;; Generated autoloads from progmodes/tcl.el
  
  (autoload 'tcl-mode "tcl" "\
@@@ -27241,9 -27260,9 +27345,6 @@@ Turning on Tcl mode runs `tcl-mode-hook
  `tcl-mode-hook' to see what kinds of interesting hook functions
  already exist.
  
--Commands:
--\\{tcl-mode-map}
--
  \(fn)" t nil)
  
  (autoload 'inferior-tcl "tcl" "\
@@@ -27289,7 -27308,7 +27390,7 @@@ Normally input is edited in Emacs and s
  ;;;***
  \f
  ;;;### (autoloads (serial-term ansi-term term make-term) "term" "term.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19672 56753))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from term.el
  
  (autoload 'make-term "term" "\
@@@ -27410,7 -27429,7 +27511,7 @@@ tetris-mode keybindings
  ;;;;;;  tex-start-commands tex-start-options slitex-run-command latex-run-command
  ;;;;;;  tex-run-command tex-offer-save tex-main-file tex-first-line-header-regexp
  ;;;;;;  tex-directory tex-shell-file-name) "tex-mode" "textmodes/tex-mode.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19651 33965))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from textmodes/tex-mode.el
  
  (defvar tex-shell-file-name nil "\
@@@ -27712,7 -27731,7 +27813,7 @@@ Major mode to edit DocTeX files
  ;;;***
  \f
  ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer)
- ;;;;;;  "texinfmt" "textmodes/texinfmt.el" (19591 62571))
 -;;;;;;  "texinfmt" "textmodes/texinfmt.el" (19673 38854))
++;;;;;;  "texinfmt" "textmodes/texinfmt.el" (19714 43298))
  ;;; Generated autoloads from textmodes/texinfmt.el
  
  (autoload 'texinfo-format-buffer "texinfmt" "\
@@@ -27752,7 -27771,7 +27853,7 @@@ if large.  You can use `Info-split' to 
  ;;;***
  \f
  ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote)
- ;;;;;;  "texinfo" "textmodes/texinfo.el" (19598 13691))
 -;;;;;;  "texinfo" "textmodes/texinfo.el" (19594 48841))
++;;;;;;  "texinfo" "textmodes/texinfo.el" (19714 43298))
  ;;; Generated autoloads from textmodes/texinfo.el
  
  (defvar texinfo-open-quote (purecopy "``") "\
@@@ -28125,7 -28144,7 +28226,7 @@@ Return a string giving the duration of 
  ;;;;;;  time-to-day-in-year date-leap-year-p days-between date-to-day
  ;;;;;;  time-add time-subtract time-since days-to-time time-less-p
  ;;;;;;  seconds-to-time date-to-time) "time-date" "calendar/time-date.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19672 47874))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from calendar/time-date.el
  
  (autoload 'date-to-time "time-date" "\
@@@ -28282,7 -28302,7 +28384,7 @@@ With ARG, turn time stamping on if and 
  ;;;;;;  timeclock-workday-remaining-string timeclock-reread-log timeclock-query-out
  ;;;;;;  timeclock-change timeclock-status-string timeclock-out timeclock-in
  ;;;;;;  timeclock-modeline-display) "timeclock" "calendar/timeclock.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19674 6793))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from calendar/timeclock.el
  
  (autoload 'timeclock-modeline-display "timeclock" "\
@@@ -28505,7 -28525,7 +28607,7 @@@ Show TODO list
  \f
  ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu
  ;;;;;;  tool-bar-local-item tool-bar-add-item toggle-tool-bar-mode-from-frame)
- ;;;;;;  "tool-bar" "tool-bar.el" (19619 52030))
 -;;;;;;  "tool-bar" "tool-bar.el" (19691 3508))
++;;;;;;  "tool-bar" "tool-bar.el" (19714 43298))
  ;;; Generated autoloads from tool-bar.el
  
  (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\
@@@ -28576,7 -28596,7 +28678,7 @@@ holds a keymap
  ;;;***
  \f
  ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19674 8635))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from emulation/tpu-edt.el
  
  (defvar tpu-edt-mode nil "\
@@@ -28688,7 -28708,7 +28790,7 @@@ BUFFER defaults to `trace-buffer'
  ;;;### (autoloads (tramp-unload-tramp tramp-completion-handle-file-name-completion
  ;;;;;;  tramp-completion-handle-file-name-all-completions tramp-unload-file-name-handlers
  ;;;;;;  tramp-file-name-handler tramp-syntax tramp-mode) "tramp"
- ;;;;;;  "net/tramp.el" (19640 47194))
 -;;;;;;  "net/tramp.el" (19691 3508))
++;;;;;;  "net/tramp.el" (19714 43298))
  ;;; Generated autoloads from net/tramp.el
  
  (defvar tramp-mode t "\
@@@ -28826,7 -28846,7 +28928,7 @@@ Discard Tramp from loading remote files
  ;;;***
  \f
  ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el"
- ;;;;;;  (19619 52030))
 -;;;;;;  (19599 45674))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from net/tramp-ftp.el
  
  (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\
@@@ -28924,7 -28944,7 +29026,7 @@@ First column's text    sSs  Second colu
  ;;;;;;  type-break type-break-mode type-break-keystroke-threshold
  ;;;;;;  type-break-good-break-interval type-break-good-rest-interval
  ;;;;;;  type-break-interval type-break-mode) "type-break" "type-break.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19668 18229))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from type-break.el
  
  (defvar type-break-mode nil "\
@@@ -29230,8 -29250,8 +29332,8 @@@ Convert old-style Rmail Babyl file FIL
  
  ;;;***
  \f
- ;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (19562
- ;;;;;;  42953))
 -;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (19645
 -;;;;;;  60484))
++;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from emacs-lisp/unsafep.el
  
  (autoload 'unsafep "unsafep" "\
@@@ -29375,8 -29395,8 +29477,8 @@@ Not documente
  
  ;;;***
  \f
- ;;;### (autoloads (url-file) "url-file" "url/url-file.el" (19591
- ;;;;;;  62571))
 -;;;### (autoloads (url-file) "url-file" "url/url-file.el" (19687
 -;;;;;;  6902))
++;;;### (autoloads (url-file) "url-file" "url/url-file.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from url/url-file.el
  
  (autoload 'url-file "url-file" "\
@@@ -29923,7 -29943,7 +30025,7 @@@ If FILE-NAME is non-nil, save the resul
  ;;;;;;  vc-print-log vc-retrieve-tag vc-create-tag vc-merge vc-insert-headers
  ;;;;;;  vc-revision-other-window vc-root-diff vc-diff vc-version-diff
  ;;;;;;  vc-register vc-next-action vc-before-checkin-hook vc-checkin-hook
- ;;;;;;  vc-checkout-hook) "vc" "vc/vc.el" (19640 47194))
 -;;;;;;  vc-checkout-hook) "vc" "vc/vc.el" (19693 26133))
++;;;;;;  vc-checkout-hook) "vc" "vc/vc.el" (19714 43298))
  ;;; Generated autoloads from vc/vc.el
  
  (defvar vc-checkout-hook nil "\
@@@ -30215,7 -30246,7 +30328,7 @@@ mode-specific menu.  `vc-annotate-color
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (19598 13691))
 -;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (19662 23188))
++;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (19714 43298))
  ;;; Generated autoloads from vc/vc-arch.el
   (defun vc-arch-registered (file)
    (if (vc-find-root file "{arch}/=tagging-method")
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (19598 13691))
 -;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (19693 26133))
++;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (19714 43298))
  ;;; Generated autoloads from vc/vc-bzr.el
  
  (defconst vc-bzr-admin-dirname ".bzr" "\
@@@ -30240,7 -30271,7 +30353,7 @@@ Name of the directory containing Bzr re
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (19640 47194))
 -;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (19662 23188))
++;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (19714 43298))
  ;;; Generated autoloads from vc/vc-cvs.el
   (defun vc-cvs-registered (f)
    (when (file-readable-p (expand-file-name
  
  ;;;***
  \f
- ;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (19598 13691))
 -;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (19580 19536))
++;;;### (autoloads (vc-dir) "vc-dir" "vc/vc-dir.el" (19714 43298))
  ;;; Generated autoloads from vc/vc-dir.el
  
  (autoload 'vc-dir "vc-dir" "\
@@@ -30309,7 -30340,7 +30422,7 @@@ case, and the process object in the asy
  
  ;;;***
  \f
- ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (19619 52030))
 -;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (19687 6902))
++;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (19714 43298))
  ;;; Generated autoloads from vc/vc-hg.el
   (defun vc-hg-registered (file)
    "Return non-nil if FILE is registered with hg."
  
  ;;;***
  \f
 -;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (19673 45510))
 +;;;### (autoloads nil "vc-hooks" "vc/vc-hooks.el" (19640 47194))
 +;;; Generated autoloads from vc/vc-hooks.el
 +
 +(put 'vc-mode 'risky-local-variable t)
 +
 +;;;***
 +\f
- ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (19598 13691))
++;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (19714 43298))
  ;;; Generated autoloads from vc/vc-mtn.el
  
  (defconst vc-mtn-admin-dir "_MTN")
  ;;;***
  \f
  ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc/vc-rcs.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19662 23188))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from vc/vc-rcs.el
  
  (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\
@@@ -30356,7 -30380,7 +30469,7 @@@ For a description of possible values, s
  ;;;***
  \f
  ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc/vc-sccs.el"
- ;;;;;;  (19640 47194))
 -;;;;;;  (19662 23188))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from vc/vc-sccs.el
  
  (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\
@@@ -30389,7 -30413,7 +30502,7 @@@ find any project directory." (let ((pro
  ;;;***
  \f
  ;;;### (autoloads (vera-mode) "vera-mode" "progmodes/vera-mode.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19668 19680))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/vera-mode.el
   (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'")  'vera-mode))
  
@@@ -30447,7 -30471,7 +30560,7 @@@ Key bindings
  ;;;***
  \f
  ;;;### (autoloads (verilog-mode) "verilog-mode" "progmodes/verilog-mode.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19673 45510))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/verilog-mode.el
  
  (autoload 'verilog-mode "verilog-mode" "\
@@@ -30584,7 -30608,7 +30697,7 @@@ Key bindings specific to `verilog-mode-
  ;;;***
  \f
  ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el"
- ;;;;;;  (19598 13691))
 -;;;;;;  (19672 56753))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/vhdl-mode.el
  
  (autoload 'vhdl-mode "vhdl-mode" "\
@@@ -31631,7 -31655,7 +31744,7 @@@ Please submit bug reports and other fee
  ;;;***
  \f
  ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el"
- ;;;;;;  (19562 42953))
 -;;;;;;  (19552 37739))
++;;;;;;  (19714 43298))
  ;;; Generated autoloads from progmodes/which-func.el
   (put 'which-func-format 'risky-local-variable t)
   (put 'which-func-current 'risky-local-variable t)
@@@ -31662,7 -31686,7 +31775,7 @@@ and off otherwise
  ;;;### (autoloads (whitespace-report-region whitespace-report whitespace-cleanup-region
  ;;;;;;  whitespace-cleanup global-whitespace-toggle-options whitespace-toggle-options
  ;;;;;;  global-whitespace-newline-mode global-whitespace-mode whitespace-newline-mode
- ;;;;;;  whitespace-mode) "whitespace" "whitespace.el" (19598 13691))
 -;;;;;;  whitespace-mode) "whitespace" "whitespace.el" (19580 19536))
++;;;;;;  whitespace-mode) "whitespace" "whitespace.el" (19714 43298))
  ;;; Generated autoloads from whitespace.el
  
  (autoload 'whitespace-mode "whitespace" "\
@@@ -32092,8 -32116,8 +32205,8 @@@ With arg, turn widget mode on if and on
  ;;;***
  \f
  ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create
- ;;;;;;  widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (19640
- ;;;;;;  47194))
 -;;;;;;  widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (19687
 -;;;;;;  6902))
++;;;;;;  widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (19714
++;;;;;;  43298))
  ;;; Generated autoloads from wid-edit.el
  
  (autoload 'widgetp "wid-edit" "\
@@@ -32216,7 -32233,7 +32329,7 @@@ With arg, turn Winner mode on if and on
  ;;;***
  \f
  ;;;### (autoloads (woman-bookmark-jump woman-find-file woman-dired-find-file
- ;;;;;;  woman woman-locale) "woman" "woman.el" (19619 52030))
 -;;;;;;  woman woman-locale) "woman" "woman.el" (19668 18093))
++;;;;;;  woman woman-locale) "woman" "woman.el" (19714 43298))
  ;;; Generated autoloads from woman.el
  
  (defvar woman-locale nil "\
@@@ -32619,27 -32631,25 +32732,27 @@@ Zone out, completely
  ;;;;;;  "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/tpu-extras.el"
  ;;;;;;  "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el"
  ;;;;;;  "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el"
 -;;;;;;  "emulation/viper-util.el" "erc/erc-backend.el" "erc/erc-goodies.el"
 -;;;;;;  "erc/erc-ibuffer.el" "erc/erc-lang.el" "eshell/em-alias.el"
 -;;;;;;  "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el"
 -;;;;;;  "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el"
 -;;;;;;  "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el"
 -;;;;;;  "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el"
 -;;;;;;  "eshell/em-term.el" "eshell/em-unix.el" "eshell/em-xtra.el"
 -;;;;;;  "eshell/esh-arg.el" "eshell/esh-cmd.el" "eshell/esh-ext.el"
 -;;;;;;  "eshell/esh-io.el" "eshell/esh-module.el" "eshell/esh-opt.el"
 -;;;;;;  "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el"
 -;;;;;;  "ezimage.el" "foldout.el" "format-spec.el" "forms-d2.el"
 -;;;;;;  "forms-pass.el" "fringe.el" "generic-x.el" "gnus/auth-source.el"
 -;;;;;;  "gnus/color.el" "gnus/compface.el" "gnus/gnus-async.el" "gnus/gnus-bcklg.el"
 +;;;;;;  "emulation/viper-util.el" "env.el" "epa-hook.el" "erc/erc-backend.el"
 +;;;;;;  "erc/erc-goodies.el" "erc/erc-ibuffer.el" "erc/erc-lang.el"
 +;;;;;;  "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el"
 +;;;;;;  "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el"
 +;;;;;;  "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el"
 +;;;;;;  "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el"
 +;;;;;;  "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el"
 +;;;;;;  "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el"
 +;;;;;;  "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el"
 +;;;;;;  "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el"
 +;;;;;;  "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "facemenu.el"
 +;;;;;;  "faces.el" "files.el" "finder-inf.el" "foldout.el" "font-lock.el"
 +;;;;;;  "format-spec.el" "forms-d2.el" "forms-pass.el" "frame.el"
- ;;;;;;  "fringe.el" "generic-x.el" "gnus/auth-source.el" "gnus/compface.el"
- ;;;;;;  "gnus/gnus-async.el" "gnus/gnus-bcklg.el" "gnus/gnus-cite.el"
- ;;;;;;  "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el"
- ;;;;;;  "gnus/gnus-eform.el" "gnus/gnus-ems.el" "gnus/gnus-int.el"
- ;;;;;;  "gnus/gnus-logic.el" "gnus/gnus-mh.el" "gnus/gnus-salt.el"
- ;;;;;;  "gnus/gnus-score.el" "gnus/gnus-setup.el" "gnus/gnus-srvr.el"
- ;;;;;;  "gnus/gnus-topic.el" "gnus/gnus-undo.el" "gnus/gnus-util.el"
- ;;;;;;  "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/ietf-drums.el"
++;;;;;;  "fringe.el" "generic-x.el" "gnus/auth-source.el" "gnus/color.el"
++;;;;;;  "gnus/compface.el" "gnus/gnus-async.el" "gnus/gnus-bcklg.el"
+ ;;;;;;  "gnus/gnus-cite.el" "gnus/gnus-cus.el" "gnus/gnus-demon.el"
+ ;;;;;;  "gnus/gnus-dup.el" "gnus/gnus-eform.el" "gnus/gnus-ems.el"
+ ;;;;;;  "gnus/gnus-int.el" "gnus/gnus-logic.el" "gnus/gnus-mh.el"
+ ;;;;;;  "gnus/gnus-salt.el" "gnus/gnus-score.el" "gnus/gnus-setup.el"
+ ;;;;;;  "gnus/gnus-srvr.el" "gnus/gnus-topic.el" "gnus/gnus-undo.el"
+ ;;;;;;  "gnus/gnus-util.el" "gnus/gnus-uu.el" "gnus/gnus-vm.el" "gnus/ietf-drums.el"
  ;;;;;;  "gnus/legacy-gnus-agent.el" "gnus/mail-parse.el" "gnus/mail-prsvr.el"
  ;;;;;;  "gnus/mail-source.el" "gnus/mailcap.el" "gnus/messcompat.el"
  ;;;;;;  "gnus/mm-bodies.el" "gnus/mm-decode.el" "gnus/mm-encode.el"
  ;;;;;;  "gnus/nnnil.el" "gnus/nnoo.el" "gnus/nnregistry.el" "gnus/nnrss.el"
  ;;;;;;  "gnus/nnspool.el" "gnus/nntp.el" "gnus/nnvirtual.el" "gnus/nnweb.el"
  ;;;;;;  "gnus/rfc1843.el" "gnus/rfc2045.el" "gnus/rfc2047.el" "gnus/rfc2104.el"
- ;;;;;;  "gnus/rfc2231.el" "gnus/sieve-manage.el" "gnus/smime.el"
- ;;;;;;  "gnus/spam-stat.el" "gnus/spam-wash.el" "help.el" "hex-util.el"
- ;;;;;;  "hfy-cmap.el" "ibuf-ext.el" "indent.el" "international/characters.el"
 -;;;;;;  "gnus/rfc2231.el" "gnus/shr-color.el" "gnus/sieve-manage.el"
 -;;;;;;  "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el"
 -;;;;;;  "hfy-cmap.el" "ibuf-ext.el" "international/charprop.el" "international/cp51932.el"
 -;;;;;;  "international/eucjp-ms.el" "international/fontset.el" "international/iso-ascii.el"
 -;;;;;;  "international/ja-dic-cnv.el" "international/ja-dic-utl.el"
 -;;;;;;  "international/ogonek.el" "international/uni-bidi.el" "international/uni-category.el"
 -;;;;;;  "international/uni-combining.el" "international/uni-comment.el"
 -;;;;;;  "international/uni-decimal.el" "international/uni-decomposition.el"
 -;;;;;;  "international/uni-digit.el" "international/uni-lowercase.el"
 -;;;;;;  "international/uni-mirrored.el" "international/uni-name.el"
 -;;;;;;  "international/uni-numeric.el" "international/uni-old-name.el"
 -;;;;;;  "international/uni-titlecase.el" "international/uni-uppercase.el"
 -;;;;;;  "json.el" "kermit.el" "language/hanja-util.el" "language/thai-word.el"
 -;;;;;;  "ldefs-boot.el" "mail/blessmail.el" "mail/mailheader.el"
 -;;;;;;  "mail/mailpost.el" "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el"
 -;;;;;;  "mail/rmail-spam-filter.el" "mail/rmailedit.el" "mail/rmailkwd.el"
 -;;;;;;  "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el"
 -;;;;;;  "mail/rmailsum.el" "mail/undigest.el" "md4.el" "mh-e/mh-acros.el"
 -;;;;;;  "mh-e/mh-alias.el" "mh-e/mh-buffers.el" "mh-e/mh-compat.el"
 -;;;;;;  "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" "mh-e/mh-identity.el"
 -;;;;;;  "mh-e/mh-inc.el" "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el"
++;;;;;;  "gnus/rfc2231.el" "gnus/rtree.el" "gnus/shr-color.el" "gnus/sieve-manage.el"
++;;;;;;  "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "help.el"
++;;;;;;  "hex-util.el" "hfy-cmap.el" "ibuf-ext.el" "indent.el" "international/characters.el"
 +;;;;;;  "international/charprop.el" "international/cp51932.el" "international/eucjp-ms.el"
 +;;;;;;  "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el"
 +;;;;;;  "international/ja-dic-utl.el" "international/mule-conf.el"
 +;;;;;;  "international/mule.el" "international/ogonek.el" "international/uni-bidi.el"
 +;;;;;;  "international/uni-category.el" "international/uni-combining.el"
 +;;;;;;  "international/uni-comment.el" "international/uni-decimal.el"
 +;;;;;;  "international/uni-decomposition.el" "international/uni-digit.el"
 +;;;;;;  "international/uni-lowercase.el" "international/uni-mirrored.el"
 +;;;;;;  "international/uni-name.el" "international/uni-numeric.el"
 +;;;;;;  "international/uni-old-name.el" "international/uni-titlecase.el"
 +;;;;;;  "international/uni-uppercase.el" "isearch.el" "jit-lock.el"
 +;;;;;;  "jka-cmpr-hook.el" "json.el" "kermit.el" "language/burmese.el"
 +;;;;;;  "language/cham.el" "language/chinese.el" "language/cyrillic.el"
 +;;;;;;  "language/czech.el" "language/english.el" "language/ethiopic.el"
 +;;;;;;  "language/european.el" "language/georgian.el" "language/greek.el"
 +;;;;;;  "language/hanja-util.el" "language/hebrew.el" "language/indian.el"
 +;;;;;;  "language/japanese.el" "language/khmer.el" "language/korean.el"
 +;;;;;;  "language/lao.el" "language/misc-lang.el" "language/romanian.el"
 +;;;;;;  "language/sinhala.el" "language/slovak.el" "language/tai-viet.el"
 +;;;;;;  "language/thai-word.el" "language/thai.el" "language/tibetan.el"
 +;;;;;;  "language/utf-8-lang.el" "language/vietnamese.el" "ldefs-boot.el"
 +;;;;;;  "loadup.el" "mail/blessmail.el" "mail/mailheader.el" "mail/mailpost.el"
 +;;;;;;  "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el"
 +;;;;;;  "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el"
 +;;;;;;  "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el"
 +;;;;;;  "mail/undigest.el" "md4.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el"
 +;;;;;;  "mh-e/mh-buffers.el" "mh-e/mh-compat.el" "mh-e/mh-funcs.el"
 +;;;;;;  "mh-e/mh-gnus.el" "mh-e/mh-identity.el" "mh-e/mh-inc.el"
 +;;;;;;  "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el"
  ;;;;;;  "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el"
  ;;;;;;  "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el"
  ;;;;;;  "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el"
  ;;;;;;  "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el"
  ;;;;;;  "progmodes/idlw-help.el" "progmodes/idlw-toolbar.el" "progmodes/mantemp.el"
  ;;;;;;  "progmodes/xscheme.el" "ps-def.el" "ps-mule.el" "ps-samp.el"
 -;;;;;;  "saveplace.el" "sb-image.el" "scroll-bar.el" "select.el"
 -;;;;;;  "soundex.el" "subdirs.el" "tempo.el" "textmodes/bib-mode.el"
 -;;;;;;  "textmodes/makeinfo.el" "textmodes/page-ext.el" "textmodes/refbib.el"
 +;;;;;;  "register.el" "replace.el" "rfn-eshadow.el" "saveplace.el"
 +;;;;;;  "sb-image.el" "scroll-bar.el" "select.el" "simple.el" "soundex.el"
 +;;;;;;  "startup.el" "subdirs.el" "subr.el" "tempo.el" "textmodes/bib-mode.el"
 +;;;;;;  "textmodes/fill.el" "textmodes/makeinfo.el" "textmodes/page-ext.el"
 +;;;;;;  "textmodes/page.el" "textmodes/paragraphs.el" "textmodes/refbib.el"
  ;;;;;;  "textmodes/refer.el" "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el"
  ;;;;;;  "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el"
- ;;;;;;  "textmodes/texnfo-upd.el" "textmodes/text-mode.el" "themes/tango-dark-theme.el"
- ;;;;;;  "themes/tango-theme.el" "themes/wheatgrass-theme.el" "timezone.el"
 -;;;;;;  "textmodes/texnfo-upd.el" "timezone.el" "tooltip.el" "tree-widget.el"
 -;;;;;;  "uniquify.el" "url/url-about.el" "url/url-cookie.el" "url/url-dired.el"
 -;;;;;;  "url/url-expand.el" "url/url-ftp.el" "url/url-history.el"
 -;;;;;;  "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el"
 -;;;;;;  "url/url-vars.el" "vc/ediff-diff.el" "vc/ediff-init.el" "vc/ediff-merg.el"
 -;;;;;;  "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el"
 -;;;;;;  "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el"
 -;;;;;;  "vcursor.el" "vt-control.el" "vt100-led.el" "w32-fns.el"
 -;;;;;;  "w32-vars.el" "x-dnd.el") (19696 28874 906463))
++;;;;;;  "textmodes/texnfo-upd.el" "textmodes/text-mode.el" "timezone.el"
 +;;;;;;  "tooltip.el" "tree-widget.el" "uniquify.el" "url/url-about.el"
 +;;;;;;  "url/url-cookie.el" "url/url-dired.el" "url/url-expand.el"
 +;;;;;;  "url/url-ftp.el" "url/url-history.el" "url/url-imap.el" "url/url-methods.el"
 +;;;;;;  "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "vc/ediff-diff.el"
 +;;;;;;  "vc/ediff-init.el" "vc/ediff-merg.el" "vc/ediff-ptch.el"
 +;;;;;;  "vc/ediff-vers.el" "vc/ediff-wind.el" "vc/pcvs-info.el" "vc/pcvs-parse.el"
 +;;;;;;  "vc/pcvs-util.el" "vc/vc-dav.el" "vcursor.el" "version.el"
 +;;;;;;  "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el"
- ;;;;;;  "widget.el" "x-dnd.el") (19640 50567 802767))
++;;;;;;  "widget.el" "x-dnd.el") (19714 43806 445397))
  
  ;;;***
  \f
diff --cc lisp/subr.el
Simple merge
Simple merge
diff --cc src/alloc.c
Simple merge
diff --cc src/buffer.c
Simple merge
diff --cc src/data.c
Simple merge
diff --cc src/eval.c
@@@ -186,8 -175,8 +186,8 @@@ init_eval_once (void
    specpdl = (struct specbinding *) xmalloc (specpdl_size * sizeof (struct specbinding));
    specpdl_ptr = specpdl;
    /* Don't forget to update docs (lispref node "Local Variables").  */
 -  max_specpdl_size = 1000;
 +  max_specpdl_size = 1200; /* 1000 is not enough for CEDET's c-by.el.  */
-   max_lisp_eval_depth = 500;
+   max_lisp_eval_depth = 600;
  
    Vrun_hooks = Qnil;
  }
diff --cc src/image.c
Simple merge
diff --cc src/keyboard.c
Simple merge
diff --cc src/lisp.h
Simple merge
diff --cc src/lread.c
@@@ -4544,16 -4379,6 +4541,15 @@@ to load.  See also `load-dangerous-libr
    Vbytecomp_version_regexp
      = make_pure_c_string ("^;;;.\\(in Emacs version\\|bytecomp version FSF\\)");
  
-   lisp file read using `load'.
- This variable automatically becomes buffer-local when set.  */);
 +  Qlexical_binding = intern ("lexical-binding");
 +  staticpro (&Qlexical_binding);
 +  DEFVAR_LISP ("lexical-binding", &Vlexical_binding,
 +             doc: /* If non-nil, use lexical binding when evaluating code.
 +This only applies to code evaluated by `eval-buffer' and `eval-region'.
 +This variable is automatically set from the file variables of an interpreted
++  lisp file read using `load'.  */);
 +  Fmake_variable_buffer_local (Qlexical_binding);
 +
    DEFVAR_LISP ("eval-buffer-list", &Veval_buffer_list,
               doc: /* List of buffers being read from by calls to `eval-buffer' and `eval-region'.  */);
    Veval_buffer_list = Qnil;
diff --cc src/print.c
Simple merge