From 2a28cace3d899e9b3d4a547fee3fde6e80e1eb12 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Thu, 19 Oct 2006 04:56:46 +0000 Subject: [PATCH 01/78] * tramp.texi (Frequently Asked Questions): Remove questions marked with "???". There have been no complaints for years, so the information must be appropriate. --- man/ChangeLog | 6 ++++++ man/tramp.texi | 5 ----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/man/ChangeLog b/man/ChangeLog index a9773e7d500..a4d3cb53808 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,9 @@ +2006-10-19 Michael Albinus + + * tramp.texi (Frequently Asked Questions): Remove questions marked with + "???". There have been no complaints for years, so the information + must be appropriate. + 2006-10-16 Richard Stallman * widget.texi: Use @var instead of capitalization. diff --git a/man/tramp.texi b/man/tramp.texi index b85347461ca..baea8d6652e 100644 --- a/man/tramp.texi +++ b/man/tramp.texi @@ -2009,11 +2009,6 @@ Web page with instructions: @uref{http://www4.ncsu.edu/~tlroche/plinkTramp.html} @end ignore -??? Is the XEmacs info correct? - -??? Can somebody provide some information for getting it to work on NT -Emacs? I think there was some issue with @command{ssh}? - @item @value{tramp} does not connect to the remote host From 1df04e22ca58fe4051743a16d2ddf46ba4283c08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Thu, 19 Oct 2006 07:16:27 +0000 Subject: [PATCH 02/78] * select.el (ccl-check-utf-8, string-utf-8-p): New functions (by Kenichi Handa). (xselect-convert-to-string): Decline requests for UTF8_STRING if the selection is not UTF-8. --- lisp/ChangeLog | 7 +++++++ lisp/select.el | 44 +++++++++++++++++++++++++++++++++++++++----- 2 files changed, 46 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 89a00314048..ef70b48a191 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2006-10-19 Jan Dj,Ad(Brv + + * select.el (ccl-check-utf-8, string-utf-8-p): New functions + (by Kenichi Handa). + (xselect-convert-to-string): Decline requests for UTF8_STRING if + the selection is not UTF-8. + 2006-10-18 Juanma Barranquero * progmodes/ada-mode.el (ada-83-string-keywords) diff --git a/lisp/select.el b/lisp/select.el index cbdeaf12fe3..9b711ee1d7f 100644 --- a/lisp/select.el +++ b/lisp/select.el @@ -152,6 +152,41 @@ Cut buffers are considered obsolete; you should use selections instead." ;;; Every selection type that Emacs handles is implemented this way, except ;;; for TIMESTAMP, which is a special case. +(eval-when-compile (require 'ccl)) + +(define-ccl-program ccl-check-utf-8 + '(0 + ((r0 = 1) + (loop + (read-if (r1 < #x80) (repeat) + ((r0 = 0) + (if (r1 < #xC2) (end)) + (read r2) + (if ((r2 & #xC0) != #x80) (end)) + (if (r1 < #xE0) ((r0 = 1) (repeat))) + (read r2) + (if ((r2 & #xC0) != #x80) (end)) + (if (r1 < #xF0) ((r0 = 1) (repeat))) + (read r2) + (if ((r2 & #xC0) != #x80) (end)) + (if (r1 < #xF8) ((r0 = 1) (repeat))) + (read r2) + (if ((r2 & #xC0) != #x80) (end)) + (if (r1 == #xF8) ((r0 = 1) (repeat))) + (end)))))) + "Check if the input unibyte string is a valid UTF-8 sequence or not. +If it is valid, set the register `r0' to 1, else set it to 0.") + +(defun string-utf-8-p (string) + "Return non-nil iff STRING is a unibyte string of valid UTF-8 sequence." + (if (or (not (stringp string)) + (multibyte-string-p string)) + (error "Not a unibyte string: %s" string)) + (let ((status (make-vector 9 0))) + (ccl-execute-on-string ccl-check-utf-8 status string) + (= (aref status 0) 1))) + + (defun xselect-convert-to-string (selection type value) (let (str coding) ;; Get the actual string from VALUE. @@ -223,11 +258,10 @@ Cut buffers are considered obsolete; you should use selections instead." (setq str (encode-coding-string str coding)))) ((eq type 'UTF8_STRING) - (let ((charsets (find-charset-string str))) - (if (or (memq 'eight-bit-control charsets) - (memq 'eight-bit-graphic charsets)) - (setq type 'STRING) - (setq str (encode-coding-string str 'utf-8))))) + (if (multibyte-string-p str) + (setq str (encode-coding-string str 'utf-8))) + (if (not (string-utf-8-p str)) + (setq str nil))) ;; Decline request as we don't have UTF-8 data. (t (error "Unknow selection type: %S" type)) ))) From 866f85184a7d583883f1d1dd4ce2d1d8dbf77884 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Dj=C3=A4rv?= Date: Thu, 19 Oct 2006 07:17:42 +0000 Subject: [PATCH 03/78] * xselect.c (x_handle_selection_request): If the converted_selection is NIL or XCDR (converted_selection) is NIL, decline the request. --- src/ChangeLog | 5 +++++ src/xselect.c | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index ce3c7d1435b..9b33d6c2d70 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2006-10-19 Jan Dj,Ad(Brv + + * xselect.c (x_handle_selection_request): If the converted_selection + is NIL or XCDR (converted_selection) is NIL, decline the request. + 2006-10-16 Jan Dj,Ad(Brv * gtkutil.c (get_utf8_string): Remove warnings with casts. diff --git a/src/xselect.c b/src/xselect.c index 013a52dbdb1..022226946a9 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -956,6 +956,12 @@ x_handle_selection_request (event) Atom type; int nofree; + if (CONSP (converted_selection) && NILP (XCDR (converted_selection))) + { + x_decline_selection_request (event); + goto DONE2; + } + lisp_data_to_selection_data (SELECTION_EVENT_DISPLAY (event), converted_selection, &data, &type, &size, &format, &nofree); @@ -971,6 +977,8 @@ x_handle_selection_request (event) if (!nofree) xfree (data); } + + DONE2: unbind_to (count, Qnil); DONE: From 67025c9f97144a126175709fdfff6ed911a2af42 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 19 Oct 2006 07:39:58 +0000 Subject: [PATCH 04/78] *** empty log message *** --- admin/FOR-RELEASE | 3 +++ 1 file changed, 3 insertions(+) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 68fb5c8d09b..fde88755233 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -53,6 +53,9 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. ** bojohan+mail@dd.chalmers.se, Oct 17: Formatting `interactive' strings. +** kzeitler@lucent.com, Oct 19: cperl + isearch + font-lock-multiline sometimes very slow + Why do the text properties affect isearch? + * DOCUMENTATION ** Check the Emacs Tutorial. From 766685555910db4c38476a5e5d203ac9ab7bb993 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Thu, 19 Oct 2006 08:00:30 +0000 Subject: [PATCH 05/78] (emacs-version): Use mac-carbon-version-string. --- lisp/version.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/version.el b/lisp/version.el index d4b8194775b..e70bc45bf43 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -64,6 +64,8 @@ to the system configuration; look at `system-configuration' instead." ((featurep 'gtk) (concat ", GTK+ Version " gtk-version-string)) ((featurep 'x-toolkit) ", X toolkit") + ((boundp 'mac-carbon-version-string) + (concat ", Carbon Version " mac-carbon-version-string)) (t "")) (if (and (boundp 'x-toolkit-scroll-bars) (memq x-toolkit-scroll-bars '(xaw xaw3d))) From 9346531434a0091a5655d83f9436fa011431bcfd Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Thu, 19 Oct 2006 08:01:25 +0000 Subject: [PATCH 06/78] (Vmac_carbon_version_string) [TARGET_API_MAC_CARBON]: New variable. (syms_of_macfns) [TARGET_API_MAC_CARBON]: Defvar it. --- src/macfns.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/src/macfns.c b/src/macfns.c index 49c72e1bf4f..1b3a7223b63 100644 --- a/src/macfns.c +++ b/src/macfns.c @@ -51,6 +51,14 @@ Boston, MA 02110-1301, USA. */ extern void free_frame_menubar (); +#if TARGET_API_MAC_CARBON + +/* Carbon version info */ + +static Lisp_Object Vmac_carbon_version_string; + +#endif /* TARGET_API_MAC_CARBON */ + /* Non-zero means we're allowed to display an hourglass cursor. */ int display_hourglass_p; @@ -4718,6 +4726,22 @@ such a font. This is especially effective for such large fonts as Chinese, Japanese, and Korean. */); Vx_pixel_size_width_font_regexp = Qnil; +#if TARGET_API_MAC_CARBON + DEFVAR_LISP ("mac-carbon-version-string", &Vmac_carbon_version_string, + doc: /* Version info for Carbon API. */); + { + OSErr err; + UInt32 response; + char carbon_version[16] = "Unknown"; + + err = Gestalt (gestaltCarbonVersion, &response); + if (err == noErr) + sprintf (carbon_version, "%u.%u.%u", + (response >> 8) & 0xf, (response >> 4) & 0xf, response & 0xf); + Vmac_carbon_version_string = build_string (carbon_version); + } +#endif /* TARGET_API_MAC_CARBON */ + /* X window properties. */ defsubr (&Sx_change_window_property); defsubr (&Sx_delete_window_property); From 045b190821781a78d6618b296d97369612ad4bd2 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Thu, 19 Oct 2006 08:02:23 +0000 Subject: [PATCH 07/78] *** empty log message *** --- lisp/ChangeLog | 6 ++++++ lisp/term/mac-win.el | 9 ++++++--- src/ChangeLog | 6 ++++++ 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ef70b48a191..7aeb8487128 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2006-10-19 YAMAMOTO Mitsuharu + + * version.el (emacs-version): Use mac-carbon-version-string. + + * term/macterm.el (res-geometry): Apply 2006-10-18 change for x-win.el. + 2006-10-19 Jan Dj,Ad(Brv * select.el (ccl-check-utf-8, string-utf-8-p): New functions diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el index bda2e398cb7..3f67c2c6613 100644 --- a/lisp/term/mac-win.el +++ b/lisp/term/mac-win.el @@ -2526,12 +2526,15 @@ ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman") (cons '(user-size . t) parsed)))) ;; All geometry parms apply to the initial frame. (setq initial-frame-alist (append initial-frame-alist parsed)) - ;; The size parms apply to all frames. - (if (assq 'height parsed) + ;; The size parms apply to all frames. Don't set it if there are + ;; sizes there already (from command line). + (if (and (assq 'height parsed) + (not (assq 'height default-frame-alist))) (setq default-frame-alist (cons (cons 'height (cdr (assq 'height parsed))) default-frame-alist))) - (if (assq 'width parsed) + (if (and (assq 'width parsed) + (not (assq 'width default-frame-alist))) (setq default-frame-alist (cons (cons 'width (cdr (assq 'width parsed))) default-frame-alist)))))) diff --git a/src/ChangeLog b/src/ChangeLog index 9b33d6c2d70..0e91753e9ac 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2006-10-19 YAMAMOTO Mitsuharu + + * macfns.c (Vmac_carbon_version_string) [TARGET_API_MAC_CARBON]: + New variable. + (syms_of_macfns) [TARGET_API_MAC_CARBON]: Defvar it. + 2006-10-19 Jan Dj,Ad(Brv * xselect.c (x_handle_selection_request): If the converted_selection From cc7aa8dc09aaebd07db4684d619fe682f7e8451c Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Thu, 19 Oct 2006 09:48:55 +0000 Subject: [PATCH 08/78] *** empty log message *** --- src/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 0e91753e9ac..4747661b0ee 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-10-19 YAMAMOTO Mitsuharu + + * xdisp.c (display_mode_line): Clear enabled_p flag on mode-line row. + 2006-10-19 YAMAMOTO Mitsuharu * macfns.c (Vmac_carbon_version_string) [TARGET_API_MAC_CARBON]: From a4d2787c2db621248f1e8b1fb33a63c836fcae4d Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Thu, 19 Oct 2006 09:49:23 +0000 Subject: [PATCH 09/78] 2006-10-19 YAMAMOTO Mitsuharu (display_mode_line): Clear enabled_p flag on mode-line row. --- src/xdisp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/xdisp.c b/src/xdisp.c index 5c017ad70c2..875d12a4816 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -16591,6 +16591,9 @@ display_mode_line (w, face_id, format) int count = SPECPDL_INDEX (); init_iterator (&it, w, -1, -1, NULL, face_id); + /* Don't extend on a previously drawn mode-line. + This may happen if called from pos_visible_p. */ + it.glyph_row->enabled_p = 0; prepare_desired_row (it.glyph_row); it.glyph_row->mode_line_p = 1; From ff003dc7217c913a2c493cc4feb70b8d237594a9 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 19 Oct 2006 10:31:48 +0000 Subject: [PATCH 10/78] (ada-in-string-p): Doc fix. --- lisp/progmodes/ada-mode.el | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el index b1ca93e2f32..d60746c5de8 100644 --- a/lisp/progmodes/ada-mode.el +++ b/lisp/progmodes/ada-mode.el @@ -31,9 +31,9 @@ ;;; This mode is a major mode for editing Ada83 and Ada95 source code. ;;; This is a major rewrite of the file packaged with Emacs-20. The ;;; ada-mode is composed of four lisp files, ada-mode.el, ada-xref.el, -;;; ada-prj.el and ada-stmt.el. Only this file (ada-mode.el) is +;;; ada-prj.el and ada-stmt.el. Only this file (ada-mode.el) is ;;; completely independent from the GNU Ada compiler Gnat, distributed -;;; by Ada Core Technologies. All the other files rely heavily on +;;; by Ada Core Technologies. All the other files rely heavily on ;;; features provided only by Gnat. ;;; ;;; Note: this mode will not work with Emacs 19. If you are on a VMS @@ -962,7 +962,7 @@ OLD-LEN indicates what the length of the replaced text was." (defsubst ada-in-string-p (&optional parse-result) "Return t if point is inside a string. -If parse-result is non-nil, use is instead of calling `parse-partial-sexp'." +If PARSE-RESULT is non-nil, use it instead of calling `parse-partial-sexp'." (nth 3 (or parse-result (parse-partial-sexp (line-beginning-position) (point))))) @@ -2410,8 +2410,8 @@ offset." ;; else ((looking-at "else\\>") - (if (save-excursion (ada-goto-previous-word) - (looking-at "\\")) + (if (save-excursion (ada-goto-previous-word) + (looking-at "\\")) (ada-indent-on-previous-lines nil orgpoint orgpoint) (save-excursion (ada-goto-matching-start 1 nil t) @@ -4205,9 +4205,9 @@ of the region. Otherwise, operate only on the current line." (defun ada-untab-hard () "Indent current line to previous tab stop." (interactive) - (let ((bol (save-excursion (progn (beginning-of-line) (point)))) - (eol (save-excursion (progn (end-of-line) (point))))) - (indent-rigidly bol eol (- 0 ada-indent)))) + (let ((bol (save-excursion (progn (beginning-of-line) (point)))) + (eol (save-excursion (progn (end-of-line) (point))))) + (indent-rigidly bol eol (- 0 ada-indent)))) @@ -4217,7 +4217,7 @@ of the region. Otherwise, operate only on the current line." ;; Not needed any more for Emacs 21.2, but still needed for backward ;; compatibility -(defun ada-remove-trailing-spaces () +(defun ada-remove-trailing-spaces () "Remove trailing spaces in the whole buffer." (interactive) (save-match-data @@ -4904,7 +4904,7 @@ or the spec otherwise." (let ((is-spec nil) (is-body nil) (suffixes ada-spec-suffixes) - (name (buffer-file-name))) + (name (buffer-file-name))) ;; Guess whether we have a spec or a body, and get the basename of the ;; file. Since the extension may not start with '.', we can not use From ca42cf771827dc8a4f333c527d71d395feba649d Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Thu, 19 Oct 2006 10:39:16 +0000 Subject: [PATCH 11/78] *** empty log message *** --- lisp/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7aeb8487128..66c0528480d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-10-19 Juanma Barranquero + + * progmodes/ada-mode.el (ada-in-string-p): Doc fix. + 2006-10-19 YAMAMOTO Mitsuharu * version.el (emacs-version): Use mac-carbon-version-string. From 7fe147ae0e8a36e43f9e9c6c0610e16975ed428f Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Thu, 19 Oct 2006 11:40:53 +0000 Subject: [PATCH 12/78] Fixed: Oct 16: Emacs allocates unnecessary memory --- admin/FOR-RELEASE | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index fde88755233..947e0c3ed5d 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -36,7 +36,7 @@ attention of Windows users to fixing them. ** Drew Adams 12 Aug bug rpt: overlay display artifact: trace left behind Windows only bug. Bug appears only when Cleartype enabled, probably related -to the hack introduced on 2005-07-01 to fix some other Cleartype problem. +to the hack introduced on 2005-07-01 to fix some other Cleartype problem. ** henman@it.to-be.co.jp 09 Aug 2006: ispell.el problem on Cygwin. (Did we decide that is unreproducible?) @@ -45,9 +45,7 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. ** Monnier, Oct 15: Strange behavior of C-u in the presence of sit-for in p-c-h -** miyoshi@meadowy.org, Oct 16: Emacs allocates unnecessary memory - -** david.reitter@gmail.com, Oct 16: url-retrieve may cause hang +** david.reitter@gmail.com, Oct 16: url-retrieve may cause hang ** id.brep@gmail.com, Oct 17: `.newsrc.eld' saves chinese group name in wrong coding From 2b192902e9fcdcbebcd9b7df1a7c749808e6014e Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 19 Oct 2006 12:28:17 +0000 Subject: [PATCH 13/78] (kkc-region): When a key sequence is not defined, append (this-single-command-raw-keys) to unread-input-method-events. --- lisp/ChangeLog | 6 ++++++ lisp/international/kkc.el | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 66c0528480d..4a34904f568 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2006-10-19 Kenichi Handa + + * international/kkc.el (kkc-region): When a key sequence is not + defined, append (this-single-command-raw-keys) to + unread-input-method-events. + 2006-10-19 Juanma Barranquero * progmodes/ada-mode.el (ada-in-string-p): Doc fix. diff --git a/lisp/international/kkc.el b/lisp/international/kkc.el index dc313c7d30a..6da899af93a 100644 --- a/lisp/international/kkc.el +++ b/lisp/international/kkc.el @@ -291,7 +291,7 @@ and the return value is the length of the conversion." ;; KEYSEQ is not defined in KKC keymap. ;; Let's put the event back. (setq unread-input-method-events - (append (string-to-list keyseq) + (append (string-to-list (this-single-command-raw-keys)) unread-input-method-events)) (kkc-terminate)))) From 7da31552c7ee1aae9193ddb46296e2e0d417aea0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 19 Oct 2006 12:46:54 +0000 Subject: [PATCH 14/78] Fix typos. --- man/ChangeLog | 4 ++++ man/widget.texi | 18 +++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/man/ChangeLog b/man/ChangeLog index a4d3cb53808..46d5c2934a1 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,7 @@ +2006-10-19 Stuart D. Herring + + * widget.texi: Fix typos. + 2006-10-19 Michael Albinus * tramp.texi (Frequently Asked Questions): Remove questions marked with diff --git a/man/widget.texi b/man/widget.texi index 39b62ff3437..79ec7ab0d0b 100644 --- a/man/widget.texi +++ b/man/widget.texi @@ -909,7 +909,7 @@ Syntax: The component types specify the choices, with one radio button for each. The widget's value will be that of the chosen @var{type} -argument. This widget matches any value that matching at least one of +argument. This widget matches any value that matches at least one of the specified @var{type} arguments. The following extra properties are recognized. @@ -1351,8 +1351,8 @@ and @sc{cdr} have two specified types. It uses this syntax: @end deffn @deffn Widget choice -The @code{choice} widget specifies a set of values that match any one -of a fixed set of types. Its syntax is as follows: +The value matched by a @code{choice} widget must have one of a fixed +set of types. The widget's syntax is as follows: @example @var{type} ::= (choice [@var{keyword} @var{argument}]... @var{type} ... ) @@ -1384,12 +1384,12 @@ a number. The above suffice for specifying fixed size lists and vectors. To get variable length lists and vectors, you can use a @code{choice}, @code{set}, or @code{repeat} widget together with the @code{:inline} -keyword. If any component of a composite widget has the @code{:inline} -keyword set, its value must be a list which will then be spliced into -the composite. For example, to specify a list whose first element must -be a file name, and whose remaining elements should either be the -symbol @code{t} or two files, you can use the following widget -specification: +keyword. If any component of a composite widget has the +@code{:inline} keyword set, its value must be a list which will then +be spliced into the composite. For example, to specify a list whose +first element must be a file name, and whose remaining elements should +either be the symbol @code{t} or two strings (file names), you can use +the following widget specification: @example (list file From 55b41ef52ebbb03d66ad4b5400500857053a5d7e Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Thu, 19 Oct 2006 14:13:52 +0000 Subject: [PATCH 15/78] * callint.c (callint_message): Convert to a Lisp string. (syms_of_callint): Initialize it. (callint_message_size): Var deleted. (Fcall_interactively): Use Fformat instead of doprnt to construct prompt string. --- src/ChangeLog | 8 +++++ src/callint.c | 85 +++++++++++++++++++-------------------------------- 2 files changed, 39 insertions(+), 54 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 4747661b0ee..0f098a07c8a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2006-10-19 Chong Yidong + + * callint.c (callint_message): Convert to a Lisp string. + (syms_of_callint): Initialize it. + (callint_message_size): Var deleted. + (Fcall_interactively): Use Fformat instead of doprnt to construct + prompt string. + 2006-10-19 YAMAMOTO Mitsuharu * xdisp.c (display_mode_line): Clear enabled_p flag on mode-line row. diff --git a/src/callint.c b/src/callint.c index 392b6f00eec..b65ef144d5d 100644 --- a/src/callint.c +++ b/src/callint.c @@ -58,11 +58,8 @@ static Lisp_Object preserved_fns; /* Marker used within call-interactively to refer to point. */ static Lisp_Object point_marker; -/* Buffer for the prompt text used in Fcall_interactively. */ -static char *callint_message; - -/* Allocated length of that buffer. */ -static int callint_message_size; +/* String for the prompt text used in Fcall_interactively. */ +static Lisp_Object callint_message; /* ARGSUSED */ DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0, @@ -266,7 +263,6 @@ invoke it. If KEYS is omitted or nil, the return value of Lisp_Object function, record_flag, keys; { Lisp_Object *args, *visargs; - unsigned char **argstrings; Lisp_Object fun; Lisp_Object specs; Lisp_Object filter_specs; @@ -492,7 +488,6 @@ invoke it. If KEYS is omitted or nil, the return value of args = (Lisp_Object *) alloca ((count + 1) * sizeof (Lisp_Object)); visargs = (Lisp_Object *) alloca ((count + 1) * sizeof (Lisp_Object)); - argstrings = (unsigned char **) alloca ((count + 1) * sizeof (char *)); varies = (int *) alloca ((count + 1) * sizeof (int)); for (i = 0; i < (count + 1); i++) @@ -516,34 +511,17 @@ invoke it. If KEYS is omitted or nil, the return value of prompt1[sizeof prompt1 - 1] = 0; tem1 = (char *) index (prompt1, '\n'); if (tem1) *tem1 = 0; - /* Fill argstrings with a vector of C strings - corresponding to the Lisp strings in visargs. */ - for (j = 1; j < i; j++) - argstrings[j] - = (EQ (visargs[j], Qnil) - ? (unsigned char *) "" - : SDATA (visargs[j])); - /* Process the format-string in prompt1, putting the output - into callint_message. Make callint_message bigger if necessary. - We don't use a buffer on the stack, because the contents - need to stay stable for a while. */ - while (1) - { - int nchars = doprnt (callint_message, callint_message_size, - prompt1, (char *)0, - j - 1, (char **) argstrings + 1); - if (nchars < callint_message_size - 1) - break; - callint_message_size *= 2; - callint_message - = (char *) xrealloc (callint_message, callint_message_size); - } + visargs[0] = build_string (prompt1); + if (index (prompt1, '%')) + callint_message = Fformat (i, visargs); + else + callint_message = visargs[0]; switch (*tem) { case 'a': /* Symbol defined as a function */ - visargs[i] = Fcompleting_read (build_string (callint_message), + visargs[i] = Fcompleting_read (callint_message, Vobarray, Qfboundp, Qt, Qnil, Qnil, Qnil, Qnil); /* Passing args[i] directly stimulates compiler bug */ @@ -555,17 +533,17 @@ invoke it. If KEYS is omitted or nil, the return value of args[i] = Fcurrent_buffer (); if (EQ (selected_window, minibuf_window)) args[i] = Fother_buffer (args[i], Qnil, Qnil); - args[i] = Fread_buffer (build_string (callint_message), args[i], Qt); + args[i] = Fread_buffer (callint_message, args[i], Qt); break; case 'B': /* Name of buffer, possibly nonexistent */ - args[i] = Fread_buffer (build_string (callint_message), + args[i] = Fread_buffer (callint_message, Fother_buffer (Fcurrent_buffer (), Qnil, Qnil), Qnil); break; case 'c': /* Character */ - args[i] = Fread_char (build_string (callint_message), Qnil, Qnil); + args[i] = Fread_char (callint_message, Qnil, Qnil); message1_nolog ((char *) 0); /* Passing args[i] directly stimulates compiler bug */ teml = args[i]; @@ -573,7 +551,7 @@ invoke it. If KEYS is omitted or nil, the return value of break; case 'C': /* Command: symbol with interactive function */ - visargs[i] = Fcompleting_read (build_string (callint_message), + visargs[i] = Fcompleting_read (callint_message, Vobarray, Qcommandp, Qt, Qnil, Qnil, Qnil, Qnil); /* Passing args[i] directly stimulates compiler bug */ @@ -589,24 +567,24 @@ invoke it. If KEYS is omitted or nil, the return value of break; case 'D': /* Directory name. */ - args[i] = Fread_file_name (build_string (callint_message), Qnil, + args[i] = Fread_file_name (callint_message, Qnil, current_buffer->directory, Qlambda, Qnil, Qfile_directory_p); break; case 'f': /* Existing file name. */ - args[i] = Fread_file_name (build_string (callint_message), + args[i] = Fread_file_name (callint_message, Qnil, Qnil, Qlambda, Qnil, Qnil); break; case 'F': /* Possibly nonexistent file name. */ - args[i] = Fread_file_name (build_string (callint_message), + args[i] = Fread_file_name (callint_message, Qnil, Qnil, Qnil, Qnil, Qnil); break; case 'G': /* Possibly nonexistent file name, default to directory alone. */ - args[i] = Fread_file_name (build_string (callint_message), + args[i] = Fread_file_name (callint_message, Qnil, Qnil, Qnil, build_string (""), Qnil); break; @@ -618,7 +596,7 @@ invoke it. If KEYS is omitted or nil, the return value of { int speccount1 = SPECPDL_INDEX (); specbind (Qcursor_in_echo_area, Qt); - args[i] = Fread_key_sequence (build_string (callint_message), + args[i] = Fread_key_sequence (callint_message, Qnil, Qnil, Qnil, Qnil); unbind_to (speccount1, Qnil); teml = args[i]; @@ -646,7 +624,7 @@ invoke it. If KEYS is omitted or nil, the return value of { int speccount1 = SPECPDL_INDEX (); specbind (Qcursor_in_echo_area, Qt); - args[i] = Fread_key_sequence (build_string (callint_message), + args[i] = Fread_key_sequence (callint_message, Qnil, Qt, Qnil, Qnil); teml = args[i]; visargs[i] = Fkey_description (teml, Qnil); @@ -706,7 +684,7 @@ invoke it. If KEYS is omitted or nil, the return value of case 'M': /* String read via minibuffer with inheriting the current input method. */ - args[i] = Fread_string (build_string (callint_message), + args[i] = Fread_string (callint_message, Qnil, Qnil, Qnil, Qt); break; @@ -726,7 +704,7 @@ invoke it. If KEYS is omitted or nil, the return value of } first = 0; - tem = Fread_from_minibuffer (build_string (callint_message), + tem = Fread_from_minibuffer (callint_message, Qnil, Qnil, Qnil, Qnil, Qnil, Qnil); if (! STRINGP (tem) || SCHARS (tem) == 0) @@ -736,7 +714,7 @@ invoke it. If KEYS is omitted or nil, the return value of } while (! NUMBERP (args[i])); } - visargs[i] = last_minibuf_string; + visargs[i] = args[i]; break; case 'P': /* Prefix arg in raw form. Does no I/O. */ @@ -766,12 +744,12 @@ invoke it. If KEYS is omitted or nil, the return value of case 's': /* String read via minibuffer without inheriting the current input method. */ - args[i] = Fread_string (build_string (callint_message), + args[i] = Fread_string (callint_message, Qnil, Qnil, Qnil, Qnil); break; case 'S': /* Any symbol. */ - visargs[i] = Fread_string (build_string (callint_message), + visargs[i] = Fread_string (callint_message, Qnil, Qnil, Qnil, Qnil); /* Passing args[i] directly stimulates compiler bug */ teml = visargs[i]; @@ -780,17 +758,17 @@ invoke it. If KEYS is omitted or nil, the return value of case 'v': /* Variable name: symbol that is user-variable-p. */ - args[i] = Fread_variable (build_string (callint_message), Qnil); + args[i] = Fread_variable (callint_message, Qnil); visargs[i] = last_minibuf_string; break; case 'x': /* Lisp expression read but not evaluated */ - args[i] = Fread_minibuffer (build_string (callint_message), Qnil); + args[i] = Fread_minibuffer (callint_message, Qnil); visargs[i] = last_minibuf_string; break; case 'X': /* Lisp expression read and evaluated */ - args[i] = Feval_minibuffer (build_string (callint_message), Qnil); + args[i] = Feval_minibuffer (callint_message, Qnil); visargs[i] = last_minibuf_string; break; @@ -804,13 +782,13 @@ invoke it. If KEYS is omitted or nil, the return value of else { args[i] - = Fread_non_nil_coding_system (build_string (callint_message)); + = Fread_non_nil_coding_system (callint_message); visargs[i] = last_minibuf_string; } break; case 'z': /* Coding-system symbol or nil */ - args[i] = Fread_coding_system (build_string (callint_message), Qnil); + args[i] = Fread_coding_system (callint_message, Qnil); visargs[i] = last_minibuf_string; break; @@ -915,6 +893,9 @@ syms_of_callint () point_marker = Fmake_marker (); staticpro (&point_marker); + callint_message = Qnil; + staticpro (&callint_message); + preserved_fns = Fcons (intern ("region-beginning"), Fcons (intern ("region-end"), Fcons (intern ("point"), @@ -954,10 +935,6 @@ syms_of_callint () Qmouse_leave_buffer_hook = intern ("mouse-leave-buffer-hook"); staticpro (&Qmouse_leave_buffer_hook); - callint_message_size = 100; - callint_message = (char *) xmalloc (callint_message_size); - - DEFVAR_KBOARD ("prefix-arg", Vprefix_arg, doc: /* The value of the prefix argument for the next editing command. It may be a number, or the symbol `-' for just a minus sign as arg, From 506a66bce303b5a2dfc7fdec6120ac560ffab7f8 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Thu, 19 Oct 2006 14:16:57 +0000 Subject: [PATCH 16/78] ** bojohan+mail@dd.chalmers.se, Oct 17: Formatting `interactive' strings. Fixed. --- admin/FOR-RELEASE | 2 -- 1 file changed, 2 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 947e0c3ed5d..b845b836124 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -49,8 +49,6 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. ** id.brep@gmail.com, Oct 17: `.newsrc.eld' saves chinese group name in wrong coding -** bojohan+mail@dd.chalmers.se, Oct 17: Formatting `interactive' strings. - ** kzeitler@lucent.com, Oct 19: cperl + isearch + font-lock-multiline sometimes very slow Why do the text properties affect isearch? From 7e2839b1651207b78013e3c56d2724270587114f Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Fri, 20 Oct 2006 06:43:56 +0000 Subject: [PATCH 17/78] (Sample .emacs File): Added missing `)' in sample code `my-c-initialization-hook'. --- man/ChangeLog | 5 +++++ man/cc-mode.texi | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/man/ChangeLog b/man/ChangeLog index 46d5c2934a1..466d16d51e2 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,8 @@ +2006-10-20 Masatake YAMATO + + * cc-mode.texi (Sample .emacs File): Added missing `)' in + sample code `my-c-initialization-hook'. + 2006-10-19 Stuart D. Herring * widget.texi: Fix typos. diff --git a/man/cc-mode.texi b/man/cc-mode.texi index 395433bc899..801f098b9ce 100644 --- a/man/cc-mode.texi +++ b/man/cc-mode.texi @@ -6560,7 +6560,7 @@ anchoring position to indent the line in that case. (defun my-c-initialization-hook () (define-key c-mode-base-map "\C-m" 'c-context-line-break) (define-key c-mode-base-map [?\C-\M-a] 'c-beginning-of-defun) - (define-key c-mode-base-map [?\C-\M-e] 'c-end-of-defun) + (define-key c-mode-base-map [?\C-\M-e] 'c-end-of-defun)) (add-hook 'c-initialization-hook 'my-c-initialization-hook) ;; offset customizations not in my-c-style From bc8c1bb4484f8f33dba11be10bedbc66b9664f5f Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 20 Oct 2006 07:56:20 +0000 Subject: [PATCH 18/78] (vc-svn-parse-status): Remove unused arg `localp'. Add arg `filename' instead. Don't set vc-backend if `filename' is set. Return `filename's status if applicable. Update callers. --- lisp/ChangeLog | 14 ++++++++++---- lisp/vc-svn.el | 21 +++++++++++---------- 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4a34904f568..0999e794216 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2006-10-20 Stefan Monnier + + * vc-svn.el (vc-svn-parse-status): Remove unused arg `localp'. + Add arg `filename' instead. Don't set vc-backend if `filename' is set. + Return `filename's status if applicable. Update callers. + 2006-10-19 Kenichi Handa * international/kkc.el (kkc-region): When a key sequence is not @@ -62,8 +68,8 @@ 2006-10-18 Martin Rudalics - * textmodes/flyspell.el (flyspell-word-search-backward): Set - inhibit-point-motion-hooks to avoid looping due to intangibile + * textmodes/flyspell.el (flyspell-word-search-backward): + Set inhibit-point-motion-hooks to avoid looping due to intangibile text. 2006-10-16 Richard Stallman @@ -324,7 +330,7 @@ After 5.10: - This code may lock Emacs hard!!! Use on your own risk! + This code may lock Emacs hard!!! Use at your own risk! (cperl-font-locking): New internal variable. (cperl-beginning-of-property): New function. @@ -338,7 +344,7 @@ recursively. Bound `next-single-property-change' via `point-max'. (cperl-unwind-to-safe): Bound likewise - (cperl-font-lock-fontify-region-function): Likewise + (cperl-font-lock-fontify-region-function): Likewise. (cperl-find-pods-heres): Mark as recursive for `cperl-to-comment-or-eol' Initialization of `cperl-font-lock-multiline-start' could be missed if the "main" fontification did not run due to the diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 6d27c5c6a7e..c48ce7a5f99 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -125,8 +125,7 @@ This is only meaningful if you don't use the implicit checkout model ;; an `error' by vc-do-command. (error nil)))) (when (eq 0 status) - (vc-svn-parse-status t) - (eq 'SVN (vc-file-getprop file 'vc-backend))))))) + (vc-svn-parse-status file)))))) (defun vc-svn-state (file &optional localp) "SVN-specific version of `vc-state'." @@ -134,8 +133,7 @@ This is only meaningful if you don't use the implicit checkout model (with-temp-buffer (cd (file-name-directory file)) (vc-svn-command t 0 file "status" (if localp "-v" "-u")) - (vc-svn-parse-status localp) - (vc-file-getprop file 'vc-state))) + (vc-svn-parse-status file))) (defun vc-svn-state-heuristic (file) "SVN-specific state heuristic." @@ -149,7 +147,7 @@ This is only meaningful if you don't use the implicit checkout model ;; enough. Otherwise it might fail with remote repositories. (with-temp-buffer (vc-svn-command t 0 nil "status" (if localp "-v" "-u")) - (vc-svn-parse-status localp)))) + (vc-svn-parse-status)))) (defun vc-svn-workfile-version (file) "SVN-specific version of `vc-workfile-version'." @@ -488,10 +486,10 @@ and that it passes `vc-svn-global-switches' to it before FLAGS." ;; behavior for different modules on the same server. (match-string 1)))) -(defun vc-svn-parse-status (localp) +(defun vc-svn-parse-status (&optional filename) "Parse output of \"svn status\" command in the current buffer. -Set file properties accordingly. Unless FULL is t, parse only -essential information." +Set file properties accordingly. Unless FILENAME is non-nil, parse only +information about FILENAME and return its status." (let (file status) (goto-char (point-min)) (while (re-search-forward @@ -500,7 +498,9 @@ essential information." (buffer-substring (point) (line-end-position)))) (setq status (char-after (line-beginning-position))) (unless (eq status ??) - (vc-file-setprop file 'vc-backend 'SVN) + ;; `vc-BACKEND-registered' must not set vc-backend, + ;; which is instead set in vc-registered. + (unless filename (vc-file-setprop file 'vc-backend 'SVN)) ;; Use the last-modified revision, so that searching in vc-print-log ;; output works. (vc-file-setprop file 'vc-workfile-version (match-string 3)) @@ -522,7 +522,8 @@ essential information." (if (eq (char-after (match-beginning 1)) ?*) 'needs-merge 'edited)) - (t 'edited))))))) + (t 'edited))))) + (if filename (vc-file-getprop filename 'vc-state)))) (defun vc-svn-dir-state-heuristic (dir) "Find the SVN state of all files in DIR, using only local information." From 5ce51a98b797d3e4ec35529466166fff372e11c2 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 20 Oct 2006 07:58:11 +0000 Subject: [PATCH 19/78] (vc-switch-backend): Try to be more careful with unwanted side-effect due to mixing various backends's file properties. --- lisp/ChangeLog | 3 +++ lisp/vc.el | 45 ++++++++++++++++++++++++++------------------- 2 files changed, 29 insertions(+), 19 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0999e794216..44439658b56 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2006-10-20 Stefan Monnier + * vc.el (vc-switch-backend): Try to be more careful with unwanted + side-effect due to mixing various backends's file properties. + * vc-svn.el (vc-svn-parse-status): Remove unused arg `localp'. Add arg `filename' instead. Don't set vc-backend if `filename' is set. Return `filename's status if applicable. Update callers. diff --git a/lisp/vc.el b/lisp/vc.el index d72ee4c7e4e..afeba8d2409 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -2682,25 +2682,32 @@ To get a prompt, use a prefix argument." (error "There is no version-controlled file in this buffer")) (let ((backend (vc-backend buffer-file-name)) (backends nil)) - (unless backend - (error "File %s is not under version control" buffer-file-name)) - ;; Find the registered backends. - (dolist (backend vc-handled-backends) - (when (vc-call-backend backend 'registered buffer-file-name) - (push backend backends))) - ;; Find the next backend. - (let ((def (car (delq backend (append (memq backend backends) backends)))) - (others (delete backend backends))) - (cond - ((null others) (error "No other backend to switch to")) - (current-prefix-arg - (intern - (upcase - (completing-read - (format "Switch to backend [%s]: " def) - (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends) - nil t nil nil (downcase (symbol-name def)))))) - (t def)))))) + (unwind-protect + (progn + (unless backend + (error "File %s is not under version control" buffer-file-name)) + ;; Find the registered backends. + (dolist (backend vc-handled-backends) + (when (vc-call-backend backend 'registered buffer-file-name) + (push backend backends))) + ;; Find the next backend. + (let ((def (car (delq backend + (append (memq backend backends) backends)))) + (others (delete backend backends))) + (cond + ((null others) (error "No other backend to switch to")) + (current-prefix-arg + (intern + (upcase + (completing-read + (format "Switch to backend [%s]: " def) + (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends) + nil t nil nil (downcase (symbol-name def)))))) + (t def)))) + ;; Calling the `registered' method can mess up the file + ;; properties, so we want to revert them to what they were. + (if (and backend (delete backend backends)) + (vc-call-backend backend 'registered buffer-file-name)))))) (unless (eq backend (vc-backend file)) (vc-file-clearprops file) (vc-file-setprop file 'vc-backend backend) From 98d763e7e7bc46ea8c2e1b633b45648f6507aaac Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 20 Oct 2006 12:40:30 +0000 Subject: [PATCH 20/78] ** id.brep@gmail.com, Oct 17: `.newsrc.eld' saves chinese group name in wrong coding Resolved; see 2006-10-20 message to emacs-pretest-bug by Katsumi Yamaoka. --- admin/FOR-RELEASE | 2 -- 1 file changed, 2 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index b845b836124..823c80195af 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -47,8 +47,6 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. ** david.reitter@gmail.com, Oct 16: url-retrieve may cause hang -** id.brep@gmail.com, Oct 17: `.newsrc.eld' saves chinese group name in wrong coding - ** kzeitler@lucent.com, Oct 19: cperl + isearch + font-lock-multiline sometimes very slow Why do the text properties affect isearch? From f5da083ed9884178b88bf2ee81486e4527d0da81 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Fri, 20 Oct 2006 15:12:31 +0000 Subject: [PATCH 21/78] (kill-buffer-and-window): Fix a bug where an aborted operation would still cause some window to collapse later. --- lisp/ChangeLog | 7 ++++++- lisp/window.el | 22 +++++++++++++++------- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 44439658b56..e40671e1d99 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-10-20 David Kastrup + + * window.el (kill-buffer-and-window): Fix a bug where an aborted + operation would still cause some window to collapse later. + 2006-10-20 Stefan Monnier * vc.el (vc-switch-backend): Try to be more careful with unwanted @@ -574,7 +579,7 @@ * autoinsert.el (auto-insert-alist): Doc fix. -2006-10-07 Johan Bockg,be(Brd +2006-10-07 Johan Bockg,Ae(Brd * mouse-sel.el (mouse-insert-selection-internal): Use insert-for-yank, so that yank handlers are run. diff --git a/lisp/window.el b/lisp/window.el index 0c50bc63a08..ac4fc0b7c96 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -719,17 +719,25 @@ or if the window is the only window of its frame." "Kill the current buffer and delete the selected window." (interactive) (let ((window-to-delete (selected-window)) + (buffer-to-kill (current-buffer)) (delete-window-hook (lambda () (condition-case nil (delete-window) (error nil))))) - (add-hook 'kill-buffer-hook delete-window-hook t t) - (if (kill-buffer (current-buffer)) - ;; If `delete-window' failed before, we rerun it to regenerate - ;; the error so it can be seen in the minibuffer. - (when (eq (selected-window) window-to-delete) - (delete-window)) - (remove-hook 'kill-buffer-hook delete-window-hook t)))) + (unwind-protect + (progn + (add-hook 'kill-buffer-hook delete-window-hook t t) + (if (kill-buffer (current-buffer)) + ;; If `delete-window' failed before, we rerun it to regenerate + ;; the error so it can be seen in the echo area. + (when (eq (selected-window) window-to-delete) + (delete-window)))) + ;; If the buffer is not dead for some reason (probably because + ;; of a `quit' signal), remove the hook again. + (condition-case nil + (with-current-buffer buffer-to-kill + (remove-hook 'kill-buffer-hook delete-window-hook t)) + (error nil))))) (defun quit-window (&optional kill window) "Quit the current buffer. Bury it, and maybe delete the selected frame. From cd987aaa0a8254a701886b3c32c269b09025c7a1 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Sat, 21 Oct 2006 01:57:34 +0000 Subject: [PATCH 22/78] (xic_create_fontsetname): If ADSTYLE field is not a wild card, change it to "*". (xic_create_xfontset): Call XCreateFontSet for each single fontname in fontsetname. --- src/ChangeLog | 7 +++++++ src/xfns.c | 50 +++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 50 insertions(+), 7 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 0f098a07c8a..930c2a44d4d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2006-10-21 Kenichi Handa + + * xfns.c (xic_create_fontsetname): If ADSTYLE field is not a wild + card, change it to "*". + (xic_create_xfontset): Call XCreateFontSet for each single + fontname in fontsetname. + 2006-10-19 Chong Yidong * callint.c (callint_message): Convert to a Lisp string. diff --git a/src/xfns.c b/src/xfns.c index 3afaf0ea20a..9f656d4cd7b 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2020,13 +2020,14 @@ xic_create_fontsetname (base_fontname, motif) else { int len; - char *p1 = NULL, *p2 = NULL; + char *p1 = NULL, *p2 = NULL, *p3 = NULL; char *font_allcs = NULL; char *font_allfamilies = NULL; char *font_all = NULL; char *allcs = "*-*-*-*-*-*-*"; char *allfamilies = "-*-*-"; char *all = "*-*-*-*-"; + char *base; for (i = 0, p = base_fontname; i < 8; p++) { @@ -2037,8 +2038,27 @@ xic_create_fontsetname (base_fontname, motif) p1 = p + 1; else if (i == 7) p2 = p + 1; + else if (i == 6) + p3 = p + 1; } } + /* If base_fontname specifies ADSTYLE, make it a + wildcard. */ + if (*p3 != '*') + { + int diff = (p2 - p3) - 2; + + base = alloca (strlen (base_fontname) + 1); + bcopy (base_fontname, base, p3 - base_fontname); + base[p3 - base_fontname] = '*'; + base[(p3 - base_fontname) + 1] = '-'; + strcpy (base + (p3 - base_fontname) + 2, p2); + p = base + (p - base_fontname) - diff; + p1 = base + (p1 - base_fontname); + p2 = base + (p2 - base_fontname) - diff; + base_fontname = base; + } + /* Build the font spec that matches all charsets. */ len = p - base_fontname + strlen (allcs) + 1; font_allcs = (char *) alloca (len); @@ -2046,7 +2066,8 @@ xic_create_fontsetname (base_fontname, motif) bcopy (base_fontname, font_allcs, p - base_fontname); strcat (font_allcs, allcs); - /* Build the font spec that matches all families. */ + /* Build the font spec that matches all families and + add-styles. */ len = p - p1 + strlen (allcs) + strlen (allfamilies) + 1; font_allfamilies = (char *) alloca (len); bzero (font_allfamilies, len); @@ -2113,13 +2134,28 @@ xic_create_xfontset (f, base_fontname) if (!xfs) { char *fontsetname = xic_create_fontsetname (base_fontname, False); + char *p0 = fontsetname, *p1; /* New fontset. */ - xfs = XCreateFontSet (FRAME_X_DISPLAY (f), - fontsetname, &missing_list, - &missing_count, &def_string); - if (missing_list) - XFreeStringList (missing_list); + /* FONTSETNAME contains a list of font names (specific fonts + first, general fonts last), but giving that to XCreateFontSet + at once occasionally fails (bug of X?). So, we try to call + XCreateFontSet for each fontname. */ + + while (p0) + { + p1 = strchr (p0, ','); + if (p1) + *p1 = '\0'; + xfs = XCreateFontSet (FRAME_X_DISPLAY (f), + p0, &missing_list, + &missing_count, &def_string); + if (missing_list) + XFreeStringList (missing_list); + if (xfs) + break; + p0 = p1 ? p1 + 1 : NULL; + } xfree (fontsetname); } From 627fb581aed103ff9ed9268d8bff8aea44845415 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 21 Oct 2006 17:40:03 +0000 Subject: [PATCH 23/78] (Vread_expression_map): Define here. (Qread_expression_history): New variable. (syms_of_minibuf): Initialize them. (Feval_minibuffer): Use Vread_expression_map and Qread_expression_history. --- src/ChangeLog | 8 ++++++++ src/minibuf.c | 18 ++++++++++++++++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 930c2a44d4d..2a10a65c71b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2006-10-21 Richard Stallman + + * minibuf.c (Vread_expression_map): Define here. + (Qread_expression_history): New variable. + (syms_of_minibuf): Initialize them. + (Feval_minibuffer): Use Vread_expression_map and + Qread_expression_history. + 2006-10-21 Kenichi Handa * xfns.c (xic_create_fontsetname): If ADSTYLE field is not a wild diff --git a/src/minibuf.c b/src/minibuf.c index bb9c80b4e7d..46c54d8724f 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -132,7 +132,8 @@ int minibuffer_auto_raise; static Lisp_Object last_exact_completion; -extern Lisp_Object Voverriding_local_map; +/* Keymap for reading expressions. */ +Lisp_Object Vread_expression_map; Lisp_Object Quser_variable_p; @@ -142,6 +143,10 @@ Lisp_Object Qcurrent_input_method, Qactivate_input_method; Lisp_Object Qcase_fold_search; +Lisp_Object Qread_expression_history; + +extern Lisp_Object Voverriding_local_map; + extern Lisp_Object Qmouse_face; extern Lisp_Object Qfield; @@ -1040,7 +1045,9 @@ arguments are used as in `read-from-minibuffer'.) */) (prompt, initial_contents) Lisp_Object prompt, initial_contents; { - return Feval (Fread_minibuffer (prompt, initial_contents)); + return Feval (read_minibuf (Vread_expression_map, initial_contents, + prompt, Qnil, 1, Qread_expression_history, + make_number (0), Qnil, 0, 0)); } /* Functions that use the minibuffer to read various things. */ @@ -2808,6 +2815,9 @@ syms_of_minibuf () Qcase_fold_search = intern ("case-fold-search"); staticpro (&Qcase_fold_search); + Qread_expression_history = intern ("read-expression-history"); + staticpro (&Qread_expression_history); + DEFVAR_LISP ("read-buffer-function", &Vread_buffer_function, doc: /* If this is non-nil, `read-buffer' does its work by calling this function. */); Vread_buffer_function = Qnil; @@ -2933,6 +2943,10 @@ properties. */); Vminibuffer_prompt_properties = Fcons (intern ("read-only"), Fcons (Qt, Qnil)); + DEFVAR_LISP ("read-expression-map", &Vread_expression_map, + doc: /* Minibuffer keymap used for reading Lisp expressions. */); + Vread_expression_map = Qnil; + defsubr (&Sset_minibuffer_window); defsubr (&Sread_from_minibuffer); defsubr (&Seval_minibuffer); From df5d417a3c5b3e3f1e4a1c95fe835731b3b86b86 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sat, 21 Oct 2006 23:41:53 +0000 Subject: [PATCH 24/78] *** empty log message *** --- lisp/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e40671e1d99..9ea05f2e1be 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-10-22 Nick Roberts + + * bindings.el (mode-line-mode-menu): Disable auto-revert-tail-mode + indicator if not visiting a file. + 2006-10-20 David Kastrup * window.el (kill-buffer-and-window): Fix a bug where an aborted From 9f37aef4f531d5ca17e8c14a6b756836c31089fb Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sat, 21 Oct 2006 23:42:21 +0000 Subject: [PATCH 25/78] (mode-line-mode-menu): Disable auto-revert-tail-mode indicator if not visiting a file. --- lisp/bindings.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/bindings.el b/lisp/bindings.el index d077e641ac1..a223596c351 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -455,6 +455,7 @@ Menu of mode operations in the mode line.") :button (:toggle . column-number-mode))) (define-key mode-line-mode-menu [auto-revert-tail-mode] `(menu-item ,(purecopy "Auto revert tail (Tail)") auto-revert-tail-mode + :enable (buffer-file-name) :button (:toggle . (bound-and-true-p auto-revert-tail-mode)))) (define-key mode-line-mode-menu [auto-revert-mode] `(menu-item ,(purecopy "Auto revert (ARev)") auto-revert-mode From dead60da964b3a6f7548103da22e4531a1478802 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sun, 22 Oct 2006 05:39:34 +0000 Subject: [PATCH 26/78] *** empty log message *** --- lisp/ChangeLog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9ea05f2e1be..1f6b56acda0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2006-10-22 Nick Roberts + * progmodes/gdb-ui.el (gdb-info-stack-custom): Don't try to give + gdb-stack-position a value when there is no fringe. + * bindings.el (mode-line-mode-menu): Disable auto-revert-tail-mode indicator if not visiting a file. From eb036ad0e2d3ec97b482f402c4fac31f4f8f8e39 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sun, 22 Oct 2006 05:40:08 +0000 Subject: [PATCH 27/78] (gdb-info-stack-custom): Don't try to give gdb-stack-position a value when there is no fringe. --- lisp/progmodes/gdb-ui.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 52360a73970..007033a87ba 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el @@ -2048,7 +2048,6 @@ static char *magick[] = { (or gdb-stack-position (setq gdb-stack-position (make-marker))) (set-marker gdb-stack-position (point))) - (set-marker gdb-stack-position nil) (put-text-property bl (+ bl 4) 'face '(:inverse-video t)))) (when (re-search-forward From 57d8692df7ccdf19339b4244edda29c309c65255 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 22 Oct 2006 14:04:02 +0000 Subject: [PATCH 28/78] * emacs.py (eargs): Return expected _emacs_out string even if errors occur. --- etc/emacs.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/etc/emacs.py b/etc/emacs.py index 7614f0927df..57128e2e184 100644 --- a/etc/emacs.py +++ b/etc/emacs.py @@ -59,13 +59,16 @@ def eargs (name, imports): return if inspect.ismethod (func): func = func.im_func - if not inspect.isfunction (func): return + if not inspect.isfunction (func): + print '_emacs_out ' + return (args, varargs, varkw, defaults) = inspect.getargspec (func) # No space between name and arglist for consistency with builtins. print '_emacs_out', \ func.__name__ + inspect.formatargspec (args, varargs, varkw, defaults) - except: pass + except: + print "_emacs_out " def all_names (object): """Return (an approximation to) a list of all possible attribute From f453f5a8cd5be81f629ebddab3a2b98c95633497 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 22 Oct 2006 17:28:56 +0000 Subject: [PATCH 29/78] * progmodes/cperl-mode.el (cperl-mode): Don't assume font-lock-multiline is auto-local (it's not). (cperl-windowed-init): Ensure that cperl-font-lock-multiline is initialized before calling cperl-init-faces. --- lisp/ChangeLog | 7 +++++++ lisp/progmodes/cperl-mode.el | 31 +++++++++++++++++-------------- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1f6b56acda0..25ed1f27bd9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2006-10-22 Chong Yidong + + * progmodes/cperl-mode.el (cperl-mode): Don't assume + font-lock-multiline is auto-local (it's not). + (cperl-windowed-init): Ensure that cperl-font-lock-multiline is + initialized before calling cperl-init-faces. + 2006-10-22 Nick Roberts * progmodes/gdb-ui.el (gdb-info-stack-custom): Don't try to give diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index 3264e0e72f6..f31bbdcc162 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el @@ -1835,7 +1835,7 @@ or as help on variables `cperl-tips', `cperl-problems', (if (boundp 'font-lock-multiline) ; Newer font-lock; use its facilities (progn (setq cperl-font-lock-multiline t) ; Not localized... - (set 'font-lock-multiline t)) ; not present with old Emacs; auto-local + (set (make-local-variable 'font-lock-multiline) t)) (make-local-variable 'font-lock-fontify-region-function) (set 'font-lock-fontify-region-function ; not present with old Emacs 'cperl-font-lock-fontify-region-function)) @@ -5708,19 +5708,22 @@ indentation and initial hashes. Behaves usually outside of comment." (defun cperl-windowed-init () "Initialization under windowed version." - (if (or (featurep 'ps-print) cperl-faces-init) - ;; Need to init anyway: - (or cperl-faces-init (cperl-init-faces)) - (add-hook 'font-lock-mode-hook - (function - (lambda () - (if (memq major-mode '(perl-mode cperl-mode)) - (progn - (or cperl-faces-init (cperl-init-faces))))))) - (if (fboundp 'eval-after-load) - (eval-after-load - "ps-print" - '(or cperl-faces-init (cperl-init-faces)))))) + (cond ((featurep 'ps-print) + (unless cperl-faces-init + (if (boundp 'font-lock-multiline) + (setq cperl-font-lock-multiline t)) + (cperl-init-faces))) + ((not cperl-faces-init) + (add-hook 'font-lock-mode-hook + (function + (lambda () + (if (memq major-mode '(perl-mode cperl-mode)) + (progn + (or cperl-faces-init (cperl-init-faces))))))) + (if (fboundp 'eval-after-load) + (eval-after-load + "ps-print" + '(or cperl-faces-init (cperl-init-faces))))))) (defvar cperl-font-lock-keywords-1 nil "Additional expressions to highlight in Perl mode. Minimal set.") From 2967b4c9d788a3b240bd90c4aa8f8f3ff48209e4 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 22 Oct 2006 17:32:30 +0000 Subject: [PATCH 30/78] ** kzeitler@lucent.com, Oct 19: cperl + isearch + font-lock-multiline sometimes very slow Fixed. --- admin/FOR-RELEASE | 3 --- 1 file changed, 3 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 823c80195af..c7e170970ac 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -47,9 +47,6 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. ** david.reitter@gmail.com, Oct 16: url-retrieve may cause hang -** kzeitler@lucent.com, Oct 19: cperl + isearch + font-lock-multiline sometimes very slow - Why do the text properties affect isearch? - * DOCUMENTATION ** Check the Emacs Tutorial. From 7a338befad5fe10f592c0e432e7112dec8dd3d4c Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 22 Oct 2006 20:39:36 +0000 Subject: [PATCH 31/78] 2006-10-22 John Wiegley * progmodes/python.el (python-use-skeletons): python-mode was auto-inserting templates (for those with abbrev-mode on), not only by default -- *but without a configuration variable to disable it*. This rendered python-mode completely useless for me, so I have added `python-use-skeletons', which is now off by default. --- lisp/ChangeLog | 8 ++++++++ lisp/progmodes/python.el | 10 +++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 25ed1f27bd9..9712ccc2176 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2006-10-22 John Wiegley + + * progmodes/python.el (python-use-skeletons): python-mode was + auto-inserting templates (for those with abbrev-mode on), not only + by default -- *but without a configuration variable to disable + it*. This rendered python-mode completely useless for me, so I + have added `python-use-skeletons', which is now off by default. + 2006-10-22 Chong Yidong * progmodes/cperl-mode.el (cperl-mode): Don't assume diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 0387c05134e..4d9a49a6b8d 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1969,6 +1969,13 @@ Repeating the command scrolls the completion window." ;;;; Skeletons +(defcustom python-use-skeletons nil + "Non-nil means template skeletons will be automagically inserted. +This happens when pressing \"if\", for example, to prompt for +the if condition." + :type 'boolean + :group 'python) + (defvar python-skeletons nil "Alist of named skeletons for Python mode. Elements are of the form (NAME . EXPANDER-FUNCTION).") @@ -1986,7 +1993,8 @@ The default contents correspond to the elements of `python-skeletons'.") (function (intern (concat "python-insert-" name)))) `(progn (add-to-list 'python-skeletons ',(cons name function)) - (define-abbrev python-mode-abbrev-table ,name "" ',function nil t) + (if python-use-skeletons + (define-abbrev python-mode-abbrev-table ,name "" ',function nil t)) (define-skeleton ,function ,(format "Insert Python \"%s\" template." name) ,@elements))))) From 224ca9c976305d1fa2d3d1c38dbd2e687488b167 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 22 Oct 2006 21:00:25 +0000 Subject: [PATCH 32/78] * progmodes/cperl-mode.el (cperl-invalid-face): Fix defcustom. --- lisp/ChangeLog | 4 ++++ lisp/progmodes/cperl-mode.el | 8 ++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9712ccc2176..ba5843541a4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-10-22 martin rudalics + + * progmodes/cperl-mode.el (cperl-invalid-face): Fix defcustom. + 2006-10-22 John Wiegley * progmodes/python.el (python-use-skeletons): python-mode was diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index f31bbdcc162..26bbb8f3faf 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el @@ -445,12 +445,8 @@ Font for POD headers." ;;; Some double-evaluation happened with font-locks... Needed with 21.2... (defvar cperl-singly-quote-face cperl-xemacs-p) -(defcustom cperl-invalid-face ; Does not customize with '' on XEmacs - (if cperl-singly-quote-face - 'underline ''underline) ; On older Emacsen was evaluated by `font-lock' - (if cperl-singly-quote-face - "*This face is used for highlighting trailing whitespace." - "*Face for highlighting trailing whitespace.") +(defcustom cperl-invalid-face 'underline + "*Face for highlighting trailing whitespace." :type 'face :version "21.1" :group 'cperl-faces) From 6b8aed24fe5456035382e6ecdea49e772936ce50 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 22 Oct 2006 21:29:33 +0000 Subject: [PATCH 33/78] * textmodes/flyspell.el (flyspell-word): Skip past all previous whitespace when checking doublons. (flyspell-check-region-doublons): Fix doublon regexp. (flyspell-highlight-incorrect-region): Highlight doublons using flyspell-duplicate face. --- lisp/ChangeLog | 6 ++++++ lisp/textmodes/flyspell.el | 19 ++++++++++++------- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ba5843541a4..b92bf13b0c3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,11 @@ 2006-10-22 martin rudalics + * textmodes/flyspell.el (flyspell-word): Skip past all previous + whitespace when checking doublons. + (flyspell-check-region-doublons): Fix doublon regexp. + (flyspell-highlight-incorrect-region): Highlight doublons using + flyspell-duplicate face. + * progmodes/cperl-mode.el (cperl-invalid-face): Fix defcustom. 2006-10-22 John Wiegley diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index e7b95c9619d..e452716d83d 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -1011,11 +1011,14 @@ Mostly we check word delimiters." (not (memq (char-after (1- start)) '(?\} ?\\))))) flyspell-mark-duplications-flag (save-excursion - (goto-char (1- start)) - (let ((p (flyspell-word-search-backward - word - (- start (1+ (- end start)))))) - (and p (/= p (1- start)))))) + (goto-char start) + (let* ((bound + (- start + (- end start) + (- (skip-chars-backward " \t\n\f")))) + (p (when (>= bound (point-min)) + (flyspell-word-search-backward word bound)))) + (and p (/= p start))))) ;; yes, this is a doublon (flyspell-highlight-incorrect-region start end 'doublon) nil) @@ -1472,7 +1475,7 @@ The buffer to mark them in is `flyspell-large-region-buffer'." (flyspell-word) ; Make sure current word is checked (backward-word 1) (while (and (< (point) end) - (re-search-forward "\\b\\([^ \n\t]+\\)[ \n\t]+\\1\\b" + (re-search-forward "\\(\\w+\\)\\s-+\\1\\>" end 'move)) (flyspell-word) (backward-word 1)) @@ -1708,7 +1711,9 @@ is itself incorrect, but suspiciously repeated." ;; now we can use a new overlay (setq flyspell-overlay (make-flyspell-overlay - beg end 'flyspell-incorrect 'highlight))))))) + beg end + (if (eq poss 'doublon) 'flyspell-duplicate 'flyspell-incorrect) + 'highlight))))))) ;;*---------------------------------------------------------------------*/ ;;* flyspell-highlight-duplicate-region ... */ From 96f4f7ecf189de0869289480e5915a6124b61b03 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 22 Oct 2006 22:25:03 +0000 Subject: [PATCH 34/78] (read_char): Make an element (t . EVENT) in unread-command-events add EVENT to the current command's key sequence. (syms_of_keyboard) : Update doc. --- src/keyboard.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/keyboard.c b/src/keyboard.c index eb46f99d668..364fa893539 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2537,6 +2537,18 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu, end_time) c = XCAR (Vunread_command_events); Vunread_command_events = XCDR (Vunread_command_events); + reread = 1; + + /* Undo what sit-for did when it unread additional keys + inside universal-argument. */ + + if (CONSP (c) + && EQ (XCAR (c), Qt)) + { + reread = 0; + c = XCDR (c); + } + /* Undo what read_char_x_menu_prompt did when it unread additional keys returned by Fx_popup_menu. */ if (CONSP (c) @@ -2550,7 +2562,6 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu, end_time) && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar))) *used_mouse_menu = 1; - reread = 1; goto reread_for_input_method; } @@ -11226,7 +11237,10 @@ so that you can determine whether the command was run by mouse or not. */); DEFVAR_LISP ("unread-command-events", &Vunread_command_events, doc: /* List of events to be read as the command input. -These events are processed first, before actual keyboard input. */); +These events are processed first, before actual keyboard input. +Events read from this list are not normally added to `this-command-keys', +as they will already have been added once as they were read for the first time. +An element of the form (t . EVENT) forces EVENT to be added to that list. */); Vunread_command_events = Qnil; DEFVAR_INT ("unread-command-char", &unread_command_char, From cbfe778a8534e0f862d14391a8136d5211067913 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 22 Oct 2006 22:32:43 +0000 Subject: [PATCH 35/78] *** empty log message *** --- lisp/ChangeLog | 7 +++++++ src/ChangeLog | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b92bf13b0c3..26884438cd9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2006-10-23 Kim F. Storm + + * subr.el (add-to-list): Optimize if compare-fn is `eq' or `eql'. + (sit-for): If last command was a prefix arg, add the read-ahead + event to unread-command-events as (t . EVENT) so it will be added + to this-command-keys by read-key-sequence. + 2006-10-22 martin rudalics * textmodes/flyspell.el (flyspell-word): Skip past all previous diff --git a/src/ChangeLog b/src/ChangeLog index 2a10a65c71b..48fa6846b2f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2006-10-23 Kim F. Storm + + * keyboard.c (read_char): Make an element (t . EVENT) in + unread-command-events add EVENT to the current command's key sequence. + (syms_of_keyboard) : Update doc. + 2006-10-21 Richard Stallman * minibuf.c (Vread_expression_map): Define here. From fb1a5d8a82d2a3bba1f66c1825e85540d625412d Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 22 Oct 2006 22:32:53 +0000 Subject: [PATCH 36/78] (add-to-list): Optimize if compare-fn is `eq' or `eql'. (sit-for): If last command was a prefix arg, add the read-ahead event to unread-command-events as (t . EVENT) so it will be added to this-command-keys by read-key-sequence. --- lisp/subr.el | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/lisp/subr.el b/lisp/subr.el index 1f874be60e0..957d098703f 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -1100,13 +1100,19 @@ until a certain package is loaded, you should put the call to `add-to-list' into a hook function that will be run only after loading the package. `eval-after-load' provides one way to do this. In some cases other hooks, such as major mode hooks, can do the job." - (if (if compare-fn - (let (present) - (dolist (elt (symbol-value list-var)) - (if (funcall compare-fn element elt) - (setq present t))) - present) - (member element (symbol-value list-var))) + (if (cond + ((eq compare-fn 'eq) + (memq element (symbol-value list-var))) + ((eq compare-fn 'eql) + (memql element (symbol-value list-var))) + (compare-fn + (let (present) + (dolist (elt (symbol-value list-var)) + (if (funcall compare-fn element elt) + (setq present t))) + present)) + (t + (member element (symbol-value list-var)))) (symbol-value list-var) (set list-var (if append @@ -1752,8 +1758,14 @@ floating point support. (or nodisp (redisplay)) (let ((read (read-event nil nil seconds))) (or (null read) - (progn (push read unread-command-events) - nil)))))) + (progn + ;; If last command was a prefix arg, e.g. C-u, push this event onto + ;; unread-command-events as (t . EVENT) so it will be added to + ;; this-command-keys by read-key-sequence. + (if (eq overriding-terminal-local-map universal-argument-map) + (setq read (cons t read))) + (push read unread-command-events) + nil)))))) ;;; Atomic change groups. From 78bdfbf32065948bb4474cb24228fc0fa934f656 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 22 Oct 2006 22:37:51 +0000 Subject: [PATCH 37/78] (add-to-list): Fix last change--optimize for no compare-fn. --- lisp/subr.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/subr.el b/lisp/subr.el index 957d098703f..43ecfd56108 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -1101,18 +1101,18 @@ into a hook function that will be run only after loading the package. `eval-after-load' provides one way to do this. In some cases other hooks, such as major mode hooks, can do the job." (if (cond + ((null compare-fn) + (member element (symbol-value list-var))) ((eq compare-fn 'eq) (memq element (symbol-value list-var))) ((eq compare-fn 'eql) (memql element (symbol-value list-var))) - (compare-fn + (t (let (present) (dolist (elt (symbol-value list-var)) (if (funcall compare-fn element elt) (setq present t))) - present)) - (t - (member element (symbol-value list-var)))) + present))) (symbol-value list-var) (set list-var (if append From aa02da7a798edf1d0f1aeb88be16c0fc17f89757 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sun, 22 Oct 2006 22:50:17 +0000 Subject: [PATCH 38/78] *** empty log message *** --- lispref/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lispref/ChangeLog b/lispref/ChangeLog index a09e9a65a4b..a065b8ee028 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,7 @@ +2006-10-23 Nick Roberts + + * lists.texi (Sets And Lists): Fix typos. + 2006-10-18 Juanma Barranquero * control.texi (Processing of Errors): Use @var for an argument, From f1235ff9e3d1ca8e16c599148afb15a1b242278b Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Sun, 22 Oct 2006 22:51:10 +0000 Subject: [PATCH 39/78] (Sets And Lists): Fix typos. --- lispref/lists.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lispref/lists.texi b/lispref/lists.texi index 17ed62a6d6c..62c7600fd17 100644 --- a/lispref/lists.texi +++ b/lispref/lists.texi @@ -1396,7 +1396,7 @@ destructively. See @ref{Sets And Lists}. @end defun @defun memql object list -The function @code{member} tests to see whether @var{object} is a member +The function @code{memql} tests to see whether @var{object} is a member of @var{list}, comparing members with @var{object} using @code{eql}, so floating point elements are compared by value. If @var{object} is a member, @code{memql} returns a list starting with @@ -1406,11 +1406,11 @@ Compare this with @code{memq}: @example @group -(memql 1.2 '(1.1 1.2 1.3) ; @r{@code{1.2} and @code{1.2} are @code{eql}.} +(memql 1.2 '(1.1 1.2 1.3)) ; @r{@code{1.2} and @code{1.2} are @code{eql}.} @result{} (1.2 1.3) @end group @group -(memq 1.2 '(1.1 1.2 1.3) ; @r{@code{1.2} and @code{1.2} are not @code{eq}.} +(memq 1.2 '(1.1 1.2 1.3)) ; @r{@code{1.2} and @code{1.2} are not @code{eq}.} @result{} nil @end group @end example From 6be421e046efc43366903af03819a850ea6b45c9 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 22 Oct 2006 22:56:56 +0000 Subject: [PATCH 40/78] Fix bug: Strange behavior of C-u in the presence of sit-for in p-c-h --- admin/FOR-RELEASE | 2 -- 1 file changed, 2 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index c7e170970ac..4e913c87bff 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -43,8 +43,6 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. * BUGS -** Monnier, Oct 15: Strange behavior of C-u in the presence of sit-for in p-c-h - ** david.reitter@gmail.com, Oct 16: url-retrieve may cause hang * DOCUMENTATION From 7902148a5eabc787c0f78be69060d5e832ca85a7 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 22 Oct 2006 23:03:09 +0000 Subject: [PATCH 41/78] * emacs.py (eargs): Return expected _emacs_out string even if errors occur. --- etc/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/etc/ChangeLog b/etc/ChangeLog index 5f14cbd728f..3a04176992e 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,8 @@ +2006-10-22 Chong Yidong + + * emacs.py (eargs): Return expected _emacs_out string even if + errors occur. + 2006-10-09 David Kastrup * DEVEL.HUMOR: Add the topic line for last entry since that was From ccb467ec47cb29ace36d4ac63d18b3652b91bc61 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 23 Oct 2006 05:13:24 +0000 Subject: [PATCH 42/78] (Expanding Abbrevs): Expansion happens only when Abbrev mode is enabled. --- man/ChangeLog | 5 +++++ man/abbrevs.texi | 13 +++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/man/ChangeLog b/man/ChangeLog index 466d16d51e2..8088fe39fe0 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,8 @@ +2006-10-23 Richard Stallman + + * abbrevs.texi (Expanding Abbrevs): Expansion happens only when + Abbrev mode is enabled. + 2006-10-20 Masatake YAMATO * cc-mode.texi (Sample .emacs File): Added missing `)' in diff --git a/man/abbrevs.texi b/man/abbrevs.texi index 3aac1df50d8..0283b332976 100644 --- a/man/abbrevs.texi +++ b/man/abbrevs.texi @@ -146,12 +146,13 @@ abbrev definitions, both global and local. @node Expanding Abbrevs @section Controlling Abbrev Expansion - An abbrev expands whenever it is present in the buffer just before -point and you type a self-inserting whitespace or punctuation character -(@key{SPC}, comma, etc.@:). More precisely, any character that is not a -word constituent expands an abbrev, and any word-constituent character -can be part of an abbrev. The most common way to use an abbrev is to -insert it and then insert a punctuation or whitespace character to expand it. + When Abbrev mode is enabled, an abbrev expands whenever it is +present in the buffer just before point and you type a self-inserting +whitespace or punctuation character (@key{SPC}, comma, etc.@:). More +precisely, any character that is not a word constituent expands an +abbrev, and any word-constituent character can be part of an abbrev. +The most common way to use an abbrev is to insert it and then insert a +punctuation or whitespace character to expand it. @vindex abbrev-all-caps Abbrev expansion preserves case; thus, @samp{foo} expands into @samp{find From ac74266b776f382eb2d0a82a3a4787a74bc368eb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 23 Oct 2006 05:15:03 +0000 Subject: [PATCH 43/78] Add: sds@podval.org, Oct 18: crash in cvs head. --- admin/FOR-RELEASE | 2 ++ 1 file changed, 2 insertions(+) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 4e913c87bff..a7279069bd7 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -45,6 +45,8 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. ** david.reitter@gmail.com, Oct 16: url-retrieve may cause hang +** sds@podval.org, Oct 18: crash in cvs head. + * DOCUMENTATION ** Check the Emacs Tutorial. From 6440f303f31600211f315126ceb3b6d7478c5abc Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Mon, 23 Oct 2006 06:33:00 +0000 Subject: [PATCH 44/78] *** empty log message *** --- lisp/ChangeLog | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 26884438cd9..2fc449aea2d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-10-23 Nick Roberts + + * bindings.el (mode-line-mode-menu): List global minor modes + before local ones. + 2006-10-23 Kim F. Storm * subr.el (add-to-list): Optimize if compare-fn is `eq' or `eql'. @@ -2120,7 +2125,7 @@ (python-symbol-completions): Use python-imports. (python-module-path, ffap-alist): Add support for ffap. (python-skeletons, python-mode-abbrev-table, def-python-skeleton) - (pythin-insert-*, python-default-template, python-expand-template): + (python-insert-*, python-default-template, python-expand-template): Add templates/skeletons. (python-setup-brm): Support for Bicycle Repair Man. (python-abbrev-syntax-table): New var. From 1943acf777cfcf047939e9e20bc07287b330cf0c Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Mon, 23 Oct 2006 06:33:25 +0000 Subject: [PATCH 45/78] (mode-line-mode-menu): List global minor modes before local ones. --- lisp/bindings.el | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lisp/bindings.el b/lisp/bindings.el index a223596c351..b06531e12ec 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -432,9 +432,6 @@ Menu of mode operations in the mode line.") (define-key mode-line-mode-menu [outline-minor-mode] `(menu-item ,(purecopy "Outline (Outl)") outline-minor-mode :button (:toggle . (bound-and-true-p outline-minor-mode)))) -(define-key mode-line-mode-menu [line-number-mode] - `(menu-item ,(purecopy "Line number") line-number-mode - :button (:toggle . line-number-mode))) (define-key mode-line-mode-menu [highlight-changes-mode] `(menu-item ,(purecopy "Highlight changes (Chg)") highlight-changes-mode :button (:toggle . (bound-and-true-p highlight-changes-mode)))) @@ -450,9 +447,6 @@ Menu of mode operations in the mode line.") (define-key mode-line-mode-menu [flyspell-mode] `(menu-item ,(purecopy "Flyspell (Fly)") flyspell-mode :button (:toggle . (bound-and-true-p flyspell-mode)))) -(define-key mode-line-mode-menu [column-number-mode] - `(menu-item ,(purecopy "Column number") column-number-mode - :button (:toggle . column-number-mode))) (define-key mode-line-mode-menu [auto-revert-tail-mode] `(menu-item ,(purecopy "Auto revert tail (Tail)") auto-revert-tail-mode :enable (buffer-file-name) @@ -466,6 +460,14 @@ Menu of mode operations in the mode line.") (define-key mode-line-mode-menu [abbrev-mode] `(menu-item ,(purecopy "Abbrev (Abbrev)") abbrev-mode :button (:toggle . abbrev-mode))) +(define-key mode-line-mode-menu [globals-locals-separator] + '(menu-item "--")) +(define-key mode-line-mode-menu [column-number-mode] + `(menu-item ,(purecopy "Column number") column-number-mode + :button (:toggle . column-number-mode))) +(define-key mode-line-mode-menu [line-number-mode] + `(menu-item ,(purecopy "Line number") line-number-mode + :button (:toggle . line-number-mode))) (defun mode-line-mode-menu (event) (interactive "@e") From a4614668b42cdf5b707df387f7b6011a5554273e Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Mon, 23 Oct 2006 09:51:56 +0000 Subject: [PATCH 46/78] *** empty log message *** --- src/ChangeLog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 48fa6846b2f..d4f67a927de 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2006-10-23 Kim F. Storm + * xdisp.c (remember_mouse_glyph): Do nothing if glyphs are not initialized. + * keyboard.c (read_char): Make an element (t . EVENT) in unread-command-events add EVENT to the current command's key sequence. (syms_of_keyboard) : Update doc. From 4fa93fa8596baeb9d9f42942417bc99fd602b88b Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Mon, 23 Oct 2006 09:58:49 +0000 Subject: [PATCH 47/78] (remember_mouse_glyph): Don't crash if glyphs are not initialized. --- src/xdisp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index 875d12a4816..cf508288616 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -2081,7 +2081,7 @@ remember_mouse_glyph (f, gx, gy, rect) int gx, gy; NativeRectangle *rect; { - Lisp_Object window; + Lisp_Object window = Qnil; struct window *w; struct glyph_row *r, *gr, *end_row; enum window_part part; @@ -2091,7 +2091,9 @@ remember_mouse_glyph (f, gx, gy, rect) /* Try to determine frame pixel position and size of the glyph under frame pixel coordinates X/Y on frame F. */ - window = window_from_coordinates (f, gx, gy, &part, &x, &y, 0); + if (f->glyphs_initialized_p) + window = window_from_coordinates (f, gx, gy, &part, &x, &y, 0); + if (NILP (window)) { width = FRAME_SMALLEST_CHAR_WIDTH (f); From fa695dab5e367801799a188f10d49f2caa1a095b Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Mon, 23 Oct 2006 10:02:31 +0000 Subject: [PATCH 48/78] Fix bug: sds@podval.org, Oct 18: crash in cvs head. --- admin/FOR-RELEASE | 2 -- 1 file changed, 2 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index a7279069bd7..4e913c87bff 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -45,8 +45,6 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem. ** david.reitter@gmail.com, Oct 16: url-retrieve may cause hang -** sds@podval.org, Oct 18: crash in cvs head. - * DOCUMENTATION ** Check the Emacs Tutorial. From 88efeba65ea05ecf778a56758138484ccdfd5103 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Mon, 23 Oct 2006 11:49:48 +0000 Subject: [PATCH 49/78] (remember_mouse_glyph): Simplify last change. --- src/xdisp.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index cf508288616..b85fdb4d71e 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -2081,7 +2081,7 @@ remember_mouse_glyph (f, gx, gy, rect) int gx, gy; NativeRectangle *rect; { - Lisp_Object window = Qnil; + Lisp_Object window; struct window *w; struct glyph_row *r, *gr, *end_row; enum window_part part; @@ -2091,10 +2091,9 @@ remember_mouse_glyph (f, gx, gy, rect) /* Try to determine frame pixel position and size of the glyph under frame pixel coordinates X/Y on frame F. */ - if (f->glyphs_initialized_p) - window = window_from_coordinates (f, gx, gy, &part, &x, &y, 0); - - if (NILP (window)) + if (!f->glyphs_initialized_p + || (window = window_from_coordinates (f, gx, gy, &part, &x, &y, 0), + NILP (window))) { width = FRAME_SMALLEST_CHAR_WIDTH (f); height = FRAME_SMALLEST_FONT_HEIGHT (f); From 081ff0c9bc4ea8668f795dc86d6f1549df132cf5 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Mon, 23 Oct 2006 13:59:44 +0000 Subject: [PATCH 50/78] * textmodes/flyspell.el (flyspell-check-region-doublons): Fix last fix. --- lisp/ChangeLog | 5 +++++ lisp/textmodes/flyspell.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2fc449aea2d..606713efeaa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-10-22 martin rudalics + + * textmodes/flyspell.el (flyspell-check-region-doublons): Fix last + fix. + 2006-10-23 Nick Roberts * bindings.el (mode-line-mode-menu): List global minor modes diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index e452716d83d..b24124851de 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -1475,7 +1475,7 @@ The buffer to mark them in is `flyspell-large-region-buffer'." (flyspell-word) ; Make sure current word is checked (backward-word 1) (while (and (< (point) end) - (re-search-forward "\\(\\w+\\)\\s-+\\1\\>" + (re-search-forward "\\<\\(\\w+\\)\\>[ \n\t\f]+\\1\\>" end 'move)) (flyspell-word) (backward-word 1)) From f13de01e9312a66ea67189ca1b65a6ea5acb25b3 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 23 Oct 2006 15:28:18 +0000 Subject: [PATCH 51/78] Make sure x_default_search_path is always set even when x_libraries is empty, and look in .../share as well for each library directory. --- configure.in | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index 03ef25375b4..a64d161a79a 100644 --- a/configure.in +++ b/configure.in @@ -1720,11 +1720,18 @@ else window_system=x11 fi -if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then - LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"` - LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` +if test "${x_libraries}" != NONE; then + if test -n "${x_libraries}"; then + LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"` + LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` + fi x_default_search_path="" - for x_library in `echo ${x_libraries} | sed -e "s/:/ /g"`; do + x_search_path=${x_libraries} + if test -z "${x_search_path}"; then + x_search_path=/usr/lib + fi + for x_library in `echo ${x_search_path}: | \ + sed -e "s/:/ /g" -e p -e "s:/lib[[^ /]]* :/share :g"`; do x_search_path="\ ${x_library}/X11/%L/%T/%N%C%S:\ ${x_library}/X11/%l/%T/%N%C%S:\ From 92d1ccf43775bc70f2989de57de54d91ee4d5b3d Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 23 Oct 2006 15:35:40 +0000 Subject: [PATCH 52/78] Regenerate. --- ChangeLog | 8 ++++++++ configure | 15 +++++++++++---- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d05eb9c5c02..f6253dcdd92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-10-23 Andreas Schwab + + * configure.in: Make sure x_default_search_path is always set even + when x_libraries is empty, and look in .../share as well for each + library directory. + + * configure: Regenerate. + 2006-10-03 Kim F. Storm * AUTHORS: Regenerate. diff --git a/configure b/configure index 18fd27ec3b5..2fad7c5c3fa 100755 --- a/configure +++ b/configure @@ -8610,11 +8610,18 @@ else window_system=x11 fi -if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then - LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"` - LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` +if test "${x_libraries}" != NONE; then + if test -n "${x_libraries}"; then + LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"` + LD_SWITCH_X_SITE_AUX=-R`echo ${x_libraries} | sed -e "s/:/ -R/g"` + fi x_default_search_path="" - for x_library in `echo ${x_libraries} | sed -e "s/:/ /g"`; do + x_search_path=${x_libraries} + if test -z "${x_search_path}"; then + x_search_path=/usr/lib + fi + for x_library in `echo ${x_search_path}: | \ + sed -e "s/:/ /g" -e p -e "s:/lib[^ /]* :/share :g"`; do x_search_path="\ ${x_library}/X11/%L/%T/%N%C%S:\ ${x_library}/X11/%l/%T/%N%C%S:\ From 300734d7ab862b33f6939c624f3d25e6b74712ba Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Mon, 23 Oct 2006 16:46:33 +0000 Subject: [PATCH 53/78] *** empty log message *** --- lispref/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lispref/ChangeLog b/lispref/ChangeLog index a065b8ee028..4400de92a0d 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,7 @@ +2006-10-23 Kim F. Storm + + * commands.texi (Event Input Misc): Update unread-command-events. + 2006-10-23 Nick Roberts * lists.texi (Sets And Lists): Fix typos. From 6c2962c2287aa702dd81d60e1da7c267ce166a6f Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Mon, 23 Oct 2006 16:46:47 +0000 Subject: [PATCH 54/78] (Event Input Misc): Update unread-command-events. --- lispref/commands.texi | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lispref/commands.texi b/lispref/commands.texi index 16b825d3de3..124be554b63 100644 --- a/lispref/commands.texi +++ b/lispref/commands.texi @@ -2503,6 +2503,13 @@ put them in @code{unread-command-events} is to use Normally you add events to the front of this list, so that the events most recently unread will be reread first. + +Events read from this list are not normally added to the current +command's key sequence (as returned by e.g. @code{this-command-keys}), +as the events will already have been added once as they were read for +the first time. An element of the form @code{(@code{t} . @var{event})} +forces @var{event} to be added to the current command's key sequence. + @end defvar @defun listify-key-sequence key From 7eb605c752b669ea2aa89040f512f91ce4a3de63 Mon Sep 17 00:00:00 2001 From: Michael Kifer Date: Mon, 23 Oct 2006 19:20:15 +0000 Subject: [PATCH 55/78] 2006-10-23 Michael Kifer * viper-cmd.el (viper-prefix-arg-com): define gg as G0 * viper-ex.el (ex-read): quote file argument. * ediff-diff.el (ediff-same-file-contents): expand file names. * ediff-mult.el (ediff-append-custom-diff): quote shell file arguments. --- ChangeLog | 10 +++ lisp/ediff-diff.el | 4 +- lisp/ediff-mult.el | 14 ++-- lisp/ediff.el | 2 +- lisp/emulation/viper-cmd.el | 123 +++++++++++++++++++----------------- lisp/emulation/viper-ex.el | 5 +- lisp/emulation/viper.el | 2 +- man/viper.texi | 2 +- 8 files changed, 92 insertions(+), 70 deletions(-) diff --git a/ChangeLog b/ChangeLog index f6253dcdd92..41296efb112 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2006-10-23 Michael Kifer + + * viper-cmd.el (viper-prefix-arg-com): define gg as G0 + + * viper-ex.el (ex-read): quote file argument. + + * ediff-diff.el (ediff-same-file-contents): expand file names. + + * ediff-mult.el (ediff-append-custom-diff): quote shell file arguments. + 2006-10-23 Andreas Schwab * configure.in: Make sure x_default_search_path is always set even diff --git a/lisp/ediff-diff.el b/lisp/ediff-diff.el index e3675064010..d2dff294d2e 100644 --- a/lisp/ediff-diff.el +++ b/lisp/ediff-diff.el @@ -1450,7 +1450,9 @@ arguments to `skip-chars-forward'." (condition-case nil (let ((res (apply 'call-process ediff-cmp-program nil nil nil - (append ediff-cmp-options (list f1 f2))))) + (append ediff-cmp-options (list (expand-file-name f1) + (expand-file-name f2)))) + )) (and (numberp res) (eq res 0))) (error (format "Cannot execute program %S." ediff-cmp-program))) )) diff --git a/lisp/ediff-mult.el b/lisp/ediff-mult.el index b33ad7c1859..2ee573a4cb9 100644 --- a/lisp/ediff-mult.el +++ b/lisp/ediff-mult.el @@ -1637,11 +1637,15 @@ Useful commands: (set-buffer (setq tmp-buf (get-buffer-create ediff-tmp-buffer))) (erase-buffer) (shell-command - (format "%s %s %s %s" - ediff-custom-diff-program ediff-custom-diff-options - (ediff-get-session-objA-name session) - (ediff-get-session-objB-name session)) - t)) + (format + "%s %s %s %s" + (shell-quote-argument ediff-custom-diff-program) + ediff-custom-diff-options + (shell-quote-argument (ediff-get-session-objA-name session)) + (shell-quote-argument (ediff-get-session-objB-name session)) + ) + t) + ) (save-excursion (set-buffer meta-diff-buff) (goto-char (point-max)) diff --git a/lisp/ediff.el b/lisp/ediff.el index 6b37d4c1847..14e1461a8a7 100644 --- a/lisp/ediff.el +++ b/lisp/ediff.el @@ -8,7 +8,7 @@ ;; Keywords: comparing, merging, patching, tools, unix (defconst ediff-version "2.81.1" "The current version of Ediff") -(defconst ediff-date "September 18, 2006" "Date of last update") +(defconst ediff-date "October 23, 2006" "Date of last update") ;; This file is part of GNU Emacs. diff --git a/lisp/emulation/viper-cmd.el b/lisp/emulation/viper-cmd.el index 61d99e6c78d..ac3ef55d6e4 100644 --- a/lisp/emulation/viper-cmd.el +++ b/lisp/emulation/viper-cmd.el @@ -408,7 +408,6 @@ ) - (defun viper-adjust-keys-for (state) "Make necessary adjustments to keymaps before entering STATE." (cond ((memq state '(insert-state replace-state)) @@ -1263,65 +1262,69 @@ as a Meta key and any number of multiple escapes is allowed." (setq com char) (setq char (read-char)))))) - (if (atom com) - ;; `com' is a single char, so we construct the command argument - ;; and if `char' is `?', we describe the arg; otherwise - ;; we prepare the command that will be executed at the end. - (progn - (setq cmd-info (cons value com)) - (while (viper= char ?U) - (viper-describe-arg cmd-info) - (setq char (read-char))) - ;; `char' is a movement cmd, a digit arg cmd, or a register cmd---so we - ;; execute it at the very end - (or (viper-movement-command-p char) - (viper-digit-command-p char) - (viper-regsuffix-command-p char) - (viper= char ?!) ; bang command - (error "")) - (setq cmd-to-exec-at-end - (viper-exec-form-in-vi - `(key-binding (char-to-string ,char))))) + (if (atom com) + ;; `com' is a single char, so we construct the command argument + ;; and if `char' is `?', we describe the arg; otherwise + ;; we prepare the command that will be executed at the end. + (progn + (setq cmd-info (cons value com)) + (while (viper= char ?U) + (viper-describe-arg cmd-info) + (setq char (read-char))) + ;; `char' is a movement cmd, a digit arg cmd, or a register cmd---so + ;; we execute it at the very end + (or (viper-movement-command-p char) + (viper-digit-command-p char) + (viper-regsuffix-command-p char) + (viper= char ?!) ; bang command + (viper= char ?g) ; the gg command (like G0) + (error "")) + (setq cmd-to-exec-at-end + (viper-exec-form-in-vi + `(key-binding (char-to-string ,char))))) - ;; as com is non-nil, this means that we have a command to execute - (if (viper-memq-char (car com) '(?r ?R)) - ;; execute apropriate region command. - (let ((char (car com)) (com (cdr com))) - (setq prefix-arg (cons value com)) - (if (viper= char ?r) - (viper-region prefix-arg) - (viper-Region prefix-arg)) - ;; reset prefix-arg - (setq prefix-arg nil)) - ;; otherwise, reset prefix arg and call appropriate command - (setq value (if (null value) 1 value)) - (setq prefix-arg nil) - (cond - ;; If we change ?C to ?c here, then cc will enter replacement mode - ;; rather than deleting lines. However, it will affect 1 less line than - ;; normal. We decided to not use replacement mode here and follow Vi, - ;; since replacement mode on n full lines can be achieved with nC. - ((equal com '(?c . ?c)) (viper-line (cons value ?C))) - ((equal com '(?d . ?d)) (viper-line (cons value ?D))) - ((equal com '(?d . ?y)) (viper-yank-defun)) - ((equal com '(?y . ?y)) (viper-line (cons value ?Y))) - ((equal com '(?< . ?<)) (viper-line (cons value ?<))) - ((equal com '(?> . ?>)) (viper-line (cons value ?>))) - ((equal com '(?! . ?!)) (viper-line (cons value ?!))) - ((equal com '(?= . ?=)) (viper-line (cons value ?=))) - (t (error ""))))) - - (if cmd-to-exec-at-end - (progn - (setq last-command-char char) - (setq last-command-event - (viper-copy-event - (if viper-xemacs-p (character-to-event char) char))) - (condition-case nil - (funcall cmd-to-exec-at-end cmd-info) - (error - (error ""))))) - )) + ;; as com is non-nil, this means that we have a command to execute + (if (viper-memq-char (car com) '(?r ?R)) + ;; execute apropriate region command. + (let ((char (car com)) (com (cdr com))) + (setq prefix-arg (cons value com)) + (if (viper= char ?r) + (viper-region prefix-arg) + (viper-Region prefix-arg)) + ;; reset prefix-arg + (setq prefix-arg nil)) + ;; otherwise, reset prefix arg and call appropriate command + (setq value (if (null value) 1 value)) + (setq prefix-arg nil) + (cond + ;; If we change ?C to ?c here, then cc will enter replacement mode + ;; rather than deleting lines. However, it will affect 1 less line + ;; than normal. We decided to not use replacement mode here and + ;; follow Vi, since replacement mode on n full lines can be achieved + ;; with nC. + ((equal com '(?c . ?c)) (viper-line (cons value ?C))) + ((equal com '(?d . ?d)) (viper-line (cons value ?D))) + ((equal com '(?d . ?y)) (viper-yank-defun)) + ((equal com '(?y . ?y)) (viper-line (cons value ?Y))) + ((equal com '(?< . ?<)) (viper-line (cons value ?<))) + ((equal com '(?> . ?>)) (viper-line (cons value ?>))) + ((equal com '(?! . ?!)) (viper-line (cons value ?!))) + ((equal com '(?= . ?=)) (viper-line (cons value ?=))) + ;; gg acts as G0 + ((equal (car com) ?g) (viper-goto-line 0)) + (t (error ""))))) + + (if cmd-to-exec-at-end + (progn + (setq last-command-char char) + (setq last-command-event + (viper-copy-event + (if viper-xemacs-p (character-to-event char) char))) + (condition-case nil + (funcall cmd-to-exec-at-end cmd-info) + (error + (error ""))))) + )) (defun viper-describe-arg (arg) (let (val com) @@ -1733,6 +1736,7 @@ invokes the command before that, etc." (max viper-com-point (point)))) ((viper= char ?g) (push-mark viper-com-point t) + ;; execute the last emacs kbd macro on each line of the region (viper-global-execute)) ((viper= char ?q) (push-mark viper-com-point t) @@ -3996,6 +4000,7 @@ Null string will repeat previous search." (defun viper-buffer-search-enable (&optional c) (cond (c (setq viper-buffer-search-char c)) ((null viper-buffer-search-char) + ;; ?g acts as a default value for viper-buffer-search-char (setq viper-buffer-search-char ?g))) (define-key viper-vi-basic-map (cond ((viper-characterp viper-buffer-search-char) diff --git a/lisp/emulation/viper-ex.el b/lisp/emulation/viper-ex.el index f9f08034582..9f69c685948 100644 --- a/lisp/emulation/viper-ex.el +++ b/lisp/emulation/viper-ex.el @@ -1624,8 +1624,9 @@ reversed." (progn (setq command ;; replace # and % with the previous/current file - (ex-expand-filsyms (concat ex-file ex-cmdfile-args) - (current-buffer))) + (ex-expand-filsyms + (concat (shell-quote-argument ex-file) ex-cmdfile-args) + (current-buffer))) (shell-command command t)) (insert-file-contents ex-file))) (ex-fixup-history viper-last-ex-prompt ex-file ex-cmdfile-args)) diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el index ea70ad609ad..82c070d5264 100644 --- a/lisp/emulation/viper.el +++ b/lisp/emulation/viper.el @@ -9,7 +9,7 @@ ;; Author: Michael Kifer ;; Keywords: emulations -(defconst viper-version "3.13 of September 18, 2006" +(defconst viper-version "3.13.1 of October 23, 2006" "The current version of Viper") ;; This file is part of GNU Emacs. diff --git a/man/viper.texi b/man/viper.texi index aadb8f9aed7..eb77bb71e1d 100644 --- a/man/viper.texi +++ b/man/viper.texi @@ -178,7 +178,7 @@ in some cases, especially in the Vi Insert state. John Hawkins has provided a set of customizations, which enables additional Emacs bindings under Viper. These customizations can be included in your @file{~/.viper} file and are found at the following URL: -@file{http://www.eecs.umich.edu/~jshawkin/viper-sample}. +@file{http://traeki.freeshell.org/files/viper-sample}. @menu * Emacs Preliminaries:: Basic concepts in Emacs. From c86d4601c99527b56d3892637a667ea515f6fb85 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 24 Oct 2006 10:42:21 +0000 Subject: [PATCH 56/78] Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 153-155) - Merge from emacs--devo--0 - Update from CVS 2006-10-20 Katsumi Yamaoka * lisp/gnus/gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group names. * lisp/gnus/gnus-sum.el (gnus-select-newsgroup): Decode group name. 2006-10-19 Katsumi Yamaoka * lisp/gnus/message.el (message-headers-to-generate): Fix typo in docstring. 2006-10-19 Reiner Steib * lisp/gnus/gnus.el (gnus-mime): Remove unused custom group. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-482 --- lisp/gnus/ChangeLog | 15 +++++++++++++++ lisp/gnus/gnus-group.el | 17 +++++++++++------ lisp/gnus/gnus-sum.el | 4 ++-- lisp/gnus/gnus.el | 6 ++---- lisp/gnus/message.el | 2 +- 5 files changed, 31 insertions(+), 13 deletions(-) diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index dba2c407b21..766a92c1dbd 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,18 @@ +2006-10-20 Katsumi Yamaoka + + * gnus-group.el (gnus-group-make-doc-group): Work for non-ASCII group + names. + + * gnus-sum.el (gnus-select-newsgroup): Decode group name. + +2006-10-19 Katsumi Yamaoka + + * message.el (message-headers-to-generate): Fix typo in docstring. + +2006-10-19 Reiner Steib + + * gnus.el (gnus-mime): Remove unused custom group. + 2006-10-13 Andreas Seltenreich * mm-uu.el (mm-uu-pgp-signed-extract-1): Use RFC 2440 definition of diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index c34e339c5b1..c6a0d599ac4 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el @@ -2680,13 +2680,18 @@ If called with a prefix argument, ask for the file type." (t (setq err (format "%c unknown. " char)) nil)))) (setq type found))) - (let* ((file (expand-file-name file)) - (name (gnus-generate-new-group-name - (gnus-group-prefixed-name - (file-name-nondirectory file) '(nndoc ""))))) + (setq file (expand-file-name file)) + (let ((name (gnus-generate-new-group-name + (gnus-group-prefixed-name + (file-name-nondirectory file) '(nndoc "")))) + (encodable (mm-coding-system-p 'utf-8))) (gnus-group-make-group - (gnus-group-real-name name) - (list 'nndoc file + (if encodable + (mm-encode-coding-string (gnus-group-real-name name) 'utf-8) + (gnus-group-real-name name)) + (list 'nndoc (if encodable + (mm-encode-coding-string file 'utf-8) + file) (list 'nndoc-address file) (list 'nndoc-article-type (or type 'guess)))))) diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 8dcd0753e59..fb0ef25c916 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el @@ -5208,13 +5208,13 @@ If SELECT-ARTICLES, only select those articles from GROUP." (when (equal major-mode 'gnus-summary-mode) (gnus-kill-buffer (current-buffer))) (error "Couldn't activate group %s: %s" - group (gnus-status-message group)))) + (gnus-group-decoded-name group) (gnus-status-message group)))) (unless (gnus-request-group group t) (when (equal major-mode 'gnus-summary-mode) (gnus-kill-buffer (current-buffer))) (error "Couldn't request group %s: %s" - group (gnus-status-message group))) + (gnus-group-decoded-name group) (gnus-status-message group))) (when gnus-agent (gnus-agent-possibly-alter-active group (gnus-active group) info) diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 8554b1332f1..94e890b02c3 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -279,10 +279,6 @@ is restarted, and sometimes reloaded." :link '(custom-manual "(gnus)Various Various") :group 'gnus) -(defgroup gnus-mime nil - "Variables for controlling the Gnus MIME interface." - :group 'gnus) - (defgroup gnus-exit nil "Exiting Gnus." :link '(custom-manual "(gnus)Exiting Gnus") @@ -1243,6 +1239,7 @@ used to 899, you would say something along these lines: :group 'gnus-server :type 'file) +;;;###autoload (defun gnus-getenv-nntpserver () "Find default nntp server. Check the NNTPSERVER environment variable and the @@ -1254,6 +1251,7 @@ Check the NNTPSERVER environment variable and the (when (re-search-forward "[^ \t\n\r]+" nil t) (match-string 0)))))) +;;;###autoload (defcustom gnus-select-method (condition-case nil (nconc diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 36a969fdefd..fc3859345f3 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -5514,7 +5514,7 @@ between beginning of field and beginning of line." (defun message-headers-to-generate (headers included-headers excluded-headers) "Return a list that includes all headers from HEADERS. -If INCLUDED-HEADERS is a list, just include those headers. If if is +If INCLUDED-HEADERS is a list, just include those headers. If it is t, include all headers. In any case, headers from EXCLUDED-HEADERS are not included." (let ((result nil) From 33068c28a7a24ba0145e388a331cc7c93d6be792 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 25 Oct 2006 09:31:45 +0000 Subject: [PATCH 57/78] (midnight-buffer-display-time): Doc fix. (clean-buffer-list-kill-never-buffer-names): Add "*server*". --- lisp/midnight.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lisp/midnight.el b/lisp/midnight.el index 1d9e1efbf2c..d97eb83b543 100644 --- a/lisp/midnight.el +++ b/lisp/midnight.el @@ -75,9 +75,9 @@ call `cancel-timer' or `timer-activate' on `midnight-timer' instead." (list 1st (floor (- num (* (float div) 1st))) (round (* 10000000 (mod num 1)))))) -(defun midnight-buffer-display-time (&optional buf) - "Return the time-stamp of the given buffer, or current buffer, as float." - (with-current-buffer (or buf (current-buffer)) +(defun midnight-buffer-display-time (&optional buffer) + "Return the time-stamp of BUFFER, or current buffer, as float." + (with-current-buffer (or buffer (current-buffer)) (when buffer-display-time (float-time buffer-display-time)))) ;;; clean-buffer-list stuff @@ -128,7 +128,7 @@ See also `clean-buffer-list-kill-regexps', :group 'midnight) (defcustom clean-buffer-list-kill-never-buffer-names - '("*scratch*" "*Messages*") + '("*scratch*" "*Messages*" "*server*") "*List of buffer names which will never be killed by `clean-buffer-list'. See also `clean-buffer-list-kill-never-regexps'. Note that this does override `clean-buffer-list-kill-regexps' and @@ -137,7 +137,6 @@ two lists will NOT be killed if it is also present in this list." :type '(repeat (string :tag "Buffer Name")) :group 'midnight) - (defcustom clean-buffer-list-kill-never-regexps '("^ \\*Minibuf-.*\\*$") "*List of regexp saying which buffers will never be killed at midnight. See also `clean-buffer-list-kill-never-buffer-names'. From f656bdd212d9c2296fa9d08bb4a7b1c60665dccf Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 25 Oct 2006 10:12:20 +0000 Subject: [PATCH 58/78] *** empty log message *** --- lisp/ChangeLog | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 606713efeaa..4645c5b5b8d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,12 @@ +2006-10-25 Juanma Barranquero + + * midnight.el (midnight-buffer-display-time): Doc fix. + (clean-buffer-list-kill-never-buffer-names): Add "*server*". + 2006-10-22 martin rudalics - * textmodes/flyspell.el (flyspell-check-region-doublons): Fix last - fix. + * textmodes/flyspell.el (flyspell-check-region-doublons): + Fix last fix. 2006-10-23 Nick Roberts From 885a56fe64ce999462362adef618e2e3d5c93762 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 25 Oct 2006 15:38:22 +0000 Subject: [PATCH 59/78] (x-handle-name-switch): Doc fix. (w32-standard-fontset-spec): Fix typo in docstring. --- lisp/term/w32-win.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el index 31a794eeaa1..7aaa59d40ec 100644 --- a/lisp/term/w32-win.el +++ b/lisp/term/w32-win.el @@ -208,7 +208,7 @@ the last file dropped is selected." (setq x-invocation-args (cdr x-invocation-args)))) (defun x-handle-name-switch (switch) - "Handle a \"-name\" SWITCH." + "Handle the \"-name\" SWITCH." ;; Handle the -name option. Set the variable x-resource-name ;; to the option's operand; set the name of the initial frame, too. (or (consp x-invocation-args) @@ -1091,7 +1091,7 @@ This defines a fontset consisting of the Courier New variations for European languages which are distributed with Windows as \"Multilanguage Support\". -See the documentation of `create-fontset-from-fontset-spec for the format.") +See the documentation of `create-fontset-from-fontset-spec' for the format.") ;; Conditional on new-fontset so bootstrapping works on non-GUI compiles (if (fboundp 'new-fontset) From 40dfee6f30d81eb7ea3c19adfc2455cb8790c20b Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Wed, 25 Oct 2006 16:08:36 +0000 Subject: [PATCH 60/78] *** empty log message *** --- lisp/ChangeLog | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4645c5b5b8d..c7a10364aa5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2006-10-25 Juanma Barranquero + * term/w32-win.el (x-handle-name-switch): Doc fix. + (w32-standard-fontset-spec): Fix typo in docstring. + * midnight.el (midnight-buffer-display-time): Doc fix. (clean-buffer-list-kill-never-buffer-names): Add "*server*". @@ -27024,7 +27027,7 @@ * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier - + . (lisp-outline-level): Improve efficiency. Suggested by David Kastrup . @@ -27436,7 +27439,7 @@ * progmodes/gdb-ui.el (gdb-info-breakpoints-custom) (gdb-goto-breakpoint): Make breakpoint handling work on template - functions in C++. Reported by Martin Reed + functions in C++. Reported by Martin Reed . (gdb-assembler-custom): Update to recognize breakpoint information added on 2005-01-19. @@ -27709,10 +27712,10 @@ (tramp-do-copy-or-rename-file-directly): Mask `cp -p' error. Call `set-file-modes' when appropriate. (tramp-action-out-of-band): Mask `scp -p' error. Reported by Isak - Johnsson + Johnsson . (tramp-get-buffer, tramp-get-debug-buffer): Discard the undo list of both Tramp buffer and debug buffer. Reported by Joakim Verona - + . (tramp-file-name-for-operation): Mark `shell-command' as magic for Emacs only. @@ -27758,7 +27761,7 @@ * simple.el (eval-expression-print-format): Avoid warning about edebug-active. -2005-01-15 James R. Van Zandt (Tiny change) +2005-01-15 James R. Van Zandt (tiny change) * progmodes/sh-script.el: Code copied from make-mode.el with small changes, From 7a1658dfb45787a84d86eea6c87886a1611640ec Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Wed, 25 Oct 2006 20:04:23 +0000 Subject: [PATCH 61/78] *** empty log message *** --- lisp/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c7a10364aa5..1698eb2b969 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-10-26 Nick Roberts + + * bindings.el (mode-line-mode-menu): Remove bindings for global + minor modes (line/column number) as they are on the menubar. + 2006-10-25 Juanma Barranquero * term/w32-win.el (x-handle-name-switch): Doc fix. From 5400586c9b42cf9198f6491496c73d67ce287456 Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Wed, 25 Oct 2006 20:05:53 +0000 Subject: [PATCH 62/78] (mode-line-mode-menu): Remove bindings for global minor modes (line/column number) as they are on the menubar. --- lisp/bindings.el | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/lisp/bindings.el b/lisp/bindings.el index b06531e12ec..04209bbe74e 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -426,6 +426,8 @@ Menu of mode operations in the mode line.") "Return the value of symbol VAR if it is bound, else nil." `(and (boundp (quote ,var)) ,var)) +;; Use mode-line-mode-menu for local minor-modes only. +;; Global ones can go on the menubar (Options --> Show/Hide). (define-key mode-line-mode-menu [overwrite-mode] `(menu-item ,(purecopy "Overwrite (Ovwrt)") overwrite-mode :button (:toggle . overwrite-mode))) @@ -460,14 +462,6 @@ Menu of mode operations in the mode line.") (define-key mode-line-mode-menu [abbrev-mode] `(menu-item ,(purecopy "Abbrev (Abbrev)") abbrev-mode :button (:toggle . abbrev-mode))) -(define-key mode-line-mode-menu [globals-locals-separator] - '(menu-item "--")) -(define-key mode-line-mode-menu [column-number-mode] - `(menu-item ,(purecopy "Column number") column-number-mode - :button (:toggle . column-number-mode))) -(define-key mode-line-mode-menu [line-number-mode] - `(menu-item ,(purecopy "Line number") line-number-mode - :button (:toggle . line-number-mode))) (defun mode-line-mode-menu (event) (interactive "@e") From 0e9575126cebfc8d8b610bda9e86ebc88cfb8c9c Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Thu, 26 Oct 2006 14:30:51 +0000 Subject: [PATCH 63/78] * ada-mode.texi (Project files, Identifier completion) (Automatic Casing, Debugging, Using non-standard file names) (Working Remotely): Fix typos. --- man/ChangeLog | 6 ++++++ man/ada-mode.texi | 21 +++++++++++---------- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/man/ChangeLog b/man/ChangeLog index 8088fe39fe0..feb35f1ffa0 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,9 @@ +2006-10-26 "Roberto Rodr,Am(Bguez" (tiny change) + + * ada-mode.texi (Project files, Identifier completion) + (Automatic Casing, Debugging, Using non-standard file names) + (Working Remotely): Fix typos. + 2006-10-23 Richard Stallman * abbrevs.texi (Expanding Abbrevs): Expansion happens only when diff --git a/man/ada-mode.texi b/man/ada-mode.texi index 16cb2d11b6e..aebb66be126 100644 --- a/man/ada-mode.texi +++ b/man/ada-mode.texi @@ -283,7 +283,7 @@ debugging can be performed within Emacs in a convenient and natural way. To take full advantage of this features, it is possible to create a file in the main directory of your application, with a @samp{.adp} extension. -This file contain all needed information dealing with the way your +This file contains all needed information dealing with the way your application is organized between directories, the commands to compile, run and debug it etc. Creating this file is not mandatory and convenient defaults are automatically provided for simple setups. It only becomes @@ -329,7 +329,7 @@ This is done through the variable @code{ada-xref-default-prj-file}. @end example Note: This has a higher priority than the first variable, so the first -choice is to use this variable settings, and otherwise +choice is to use this variable's settings, and otherwise @code{ada-prj-default-project-file}. @end itemize @@ -601,7 +601,7 @@ they will also contain additional cross-referencing information. Emacs and Ada mode provide two general ways for the completion of identifiers. This is an easy way to type faster: you just have to type -the first few letters of an identifiers, and then loop through all the +the first few letters of an identifier, and then loop through all the possible completions. The first method is general for Emacs. It will work both with Ada @@ -623,7 +623,7 @@ Pressing @key{M-/} once more will bring you back to @samp{my_identifier}. This is a very fast way to do completion, and the casing of words will also be respected. -The second method is specific to Ada buffer, and even to users of the +The second method is specific to Ada buffers, and even to users of the Gnat compiler. Emacs will search the cross-information found in the @samp{.ali} files generated by Gnat for possible completions. @@ -839,7 +839,7 @@ All letters, except the first one of the word and every letter after the instance @code{My_vARIable} is converted to @code{My_Variable}. @item ada-loose-case-word -No letters is modified in the previous word, except the ones after the +No letters are modified in the previous word, except the ones after the @samp{_} character that are upper cased. For instance @code{My_vARIable} is converted to @code{My_VARIable}. @end table @@ -894,7 +894,8 @@ above, the new exception will be added to the first file in the list only. You can not automatically add an exception to one of the other files, although you can of course edit the files by hand at any time. -Automatic casing can be performed on port or whole buffer using: +Automatic casing can be performed on part of the buffer, or on the +whole buffer, using: @table @kbd @item C-c C-b @@ -1108,7 +1109,7 @@ You can set up in the project file a command to use to debug your application. Emacs is compatible with a lot of debuggers, and provide an easy interface to them. -This selection will focus on the gdb debugger, and two of the graphical +This section will focus on the gdb debugger, and two of the graphical interfaces that exist for it. In all cases, the main window in Emacs will be split in two: in the @@ -1125,7 +1126,7 @@ also set a breakpoint simply by right-clicking on a line. You can easily use Emacs as the source window when you are using a graphical interface for the debugger. The interesting thing is that, -whereas you still have the graphical nifties, you can also you the +whereas you still have the graphical nifties, you can also use the cross-references features that Ada mode provides to look at the definition for the identifiers, @enddots{} @@ -1172,7 +1173,7 @@ need to add the following to your @file{.emacs} file: (ada-add-extensions "_s.ada" "_b.ada") @end example -Note that it is possible to redefine the extension, even if they already +Note that it is possible to redefine the extensions, even if they already exist, as in: @example @@ -1195,7 +1196,7 @@ for an example). @chapter Working Remotely @c --------------------------------------------------------------------- -When you work on project that involve a lot of programmers, it is +When you work on a project that involves a lot of programmers, it is generally the case that you will edit the files on your own machine, but you want to compile, run and debug your application in another buffer. From ea968dfbfddcdf3f6c15d61623c2d53962e8ca6d Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Thu, 26 Oct 2006 16:20:23 +0000 Subject: [PATCH 64/78] *** empty log message *** --- man/ChangeLog | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/man/ChangeLog b/man/ChangeLog index feb35f1ffa0..2ab51310031 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,4 +1,4 @@ -2006-10-26 "Roberto Rodr,Am(Bguez" (tiny change) +2006-10-26 Roberto Rodr,Am(Bguez (tiny change) * ada-mode.texi (Project files, Identifier completion) (Automatic Casing, Debugging, Using non-standard file names) @@ -11,7 +11,7 @@ 2006-10-20 Masatake YAMATO - * cc-mode.texi (Sample .emacs File): Added missing `)' in + * cc-mode.texi (Sample .emacs File): Added missing `)' in sample code `my-c-initialization-hook'. 2006-10-19 Stuart D. Herring @@ -37,9 +37,9 @@ gnus-dired-attach. (Selecting a Group): Fix typo. -2006-10-12 Roberto Rodr,Am(Bguez +2006-10-12 Roberto Rodr,Am(Bguez (tiny change) - * widget.texi: Fix typos (tiny change) + * widget.texi: Fix typos. 2006-10-11 Kim F. Storm From bec9dc7b07967e4f6696076beffa84921fabec7c Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Thu, 26 Oct 2006 20:39:53 +0000 Subject: [PATCH 65/78] * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the pattern normally. --- lisp/ChangeLog | 5 +++++ lisp/emacs-lisp/cl-indent.el | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1698eb2b969..ad36d29542c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-10-26 Chong Yidong + + * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the + pattern normally. + 2006-10-26 Nick Roberts * bindings.el (mode-line-mode-menu): Remove bindings for global diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index c3ceb4c2f3a..679a9bb68fd 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el @@ -373,14 +373,14 @@ If nil, indent backquoted lists as data, i.e., like quoted lists." ;; Too few elements in pattern. (throw 'exit normal-indent))) ((eq tem 'nil) - (throw 'exit (list normal-indent containing-form-start))) - ((eq tem '&lambda) - (throw 'exit - (cond ((null p) - (list (+ sexp-column 4) containing-form-start)) - ((null (cdr p)) - (+ sexp-column 1)) - (t normal-indent)))) + (throw 'exit normal-indent)) + ((eq tem '&lambda) + (throw 'exit + (cond ((null p) + (list (+ sexp-column 4) containing-form-start)) + ((null (cdr p)) + (+ sexp-column 1)) + (t normal-indent)))) ((integerp tem) (throw 'exit (if (null p) ;not in subforms From 6655e16dbae8383069326d5ac276cad4925649e2 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 00:52:06 +0000 Subject: [PATCH 66/78] * emacs-lisp/cl-indent.el (lisp-indent-259): Fix last fix. --- lisp/emacs-lisp/cl-indent.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el index 679a9bb68fd..f09b72f396f 100644 --- a/lisp/emacs-lisp/cl-indent.el +++ b/lisp/emacs-lisp/cl-indent.el @@ -373,7 +373,9 @@ If nil, indent backquoted lists as data, i.e., like quoted lists." ;; Too few elements in pattern. (throw 'exit normal-indent))) ((eq tem 'nil) - (throw 'exit normal-indent)) + (throw 'exit (if (consp normal-indent) + normal-indent + (list normal-indent containing-form-start)))) ((eq tem '&lambda) (throw 'exit (cond ((null p) From 04a623aac6c05b968557c441bae5b0eb3871940a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 27 Oct 2006 11:58:29 +0000 Subject: [PATCH 67/78] Downcase nroff/troff/roff. (Installation): Chapter deleted. Some xrefs deleted. (Background): woman doesn't advise man ;-). --- man/ChangeLog | 6 + man/woman.texi | 322 +++++++++---------------------------------------- 2 files changed, 60 insertions(+), 268 deletions(-) diff --git a/man/ChangeLog b/man/ChangeLog index 2ab51310031..c46f1c1161a 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,9 @@ +2006-10-27 Richard Stallman + + * woman.texi: Downcase nroff/troff/roff. + (Installation): Chapter deleted. Some xrefs deleted. + (Background): woman doesn't advise man ;-). + 2006-10-26 Roberto Rodr,Am(Bguez (tiny change) * ada-mode.texi (Project files, Identifier completion) diff --git a/man/woman.texi b/man/woman.texi index 70e7974b16f..0d782fd4416 100644 --- a/man/woman.texi +++ b/man/woman.texi @@ -91,7 +91,6 @@ Mile End Road, London E1 4NS, UK @menu * Introduction:: Introduction * Background:: Background -* Installation:: Installation and Setup * Finding:: Finding and Formatting Man Pages * Browsing:: Browsing Man Pages * Customization:: Customization @@ -127,7 +126,7 @@ WoMan implements a subset of the formatting performed by the Emacs @code{man} (or @code{manual-entry}) command to format a Unix-style @dfn{manual page} (usually abbreviated to @dfn{man page}) for display, but without calling any external programs. It is intended to emulate -the whole of the @code{ROFF -man} macro package, plus those @code{ROFF} +the whole of the @code{roff -man} macro package, plus those @code{roff} requests (@pxref{Background, , Background}) that are most commonly used in man pages. However, the emulation is modified to include the reformatting done by the Emacs @code{man} command. No hyphenation is @@ -145,7 +144,7 @@ small- and medium-size pages). This browser works quite well on simple well-written man files. It works less well on idiosyncratic files that ``break the rules'' or use -the more obscure @code{ROFF} requests directly. Current test results +the more obscure @code{roff} requests directly. Current test results are available in the file @uref{http://centaur.maths.qmw.ac.uk/Emacs/WoMan/files/woman.status, @file{woman.status}}. @@ -169,7 +168,7 @@ Reporting Bugs}. @c =================================================================== -@node Background, Installation, Introduction, Top +@node Background, Finding, Introduction, Top @comment node-name, next, previous, up @chapter Background @cindex background @@ -178,31 +177,31 @@ WoMan is a browser for traditional Unix-style manual page documentation. Each such document is conventionally referred to as a @dfn{manual page}, or @dfn{man page} for short, even though some are very much longer than one page. A man page is a document written using the Unix ``man'' -macros, which are themselves written in the NROFF/TROFF text processing -markup language. @code{NROFF} and @code{TROFF} are text processors +macros, which are themselves written in the nroff/troff text processing +markup language. @code{nroff} and @code{troff} are text processors originally written for the UNIX operating system by Joseph F. Ossanna at Bell Laboratories, Murray Hill, New Jersey, USA@. They are closely related, and except in the few cases where the distinction between them -is important I will refer to them both ambiguously as @dfn{ROFF}. +is important I will refer to them both ambiguously as @code{roff}. -@code{ROFF} markup consists of @dfn{requests} and @dfn{escape +@code{roff} markup consists of @dfn{requests} and @dfn{escape sequences}. A request occupies a complete line and begins with either a period or a single forward quote. An escape sequences is embedded within the input text and begins (by default) with a backslash. The -original man macro package defines 20 new @code{ROFF} requests +original man macro package defines 20 new @code{roff} requests implemented as macros, which were considered to be sufficient for writing man pages. But whilst in principle man pages use only the man -macros, in practice a significant number use many other @code{ROFF} +macros, in practice a significant number use many other @code{roff} requests. -The distinction between @code{TROFF} and @code{NROFF} is that -@code{TROFF} was designed to drive a phototypesetter whereas -@code{NROFF} was designed to produce essentially @acronym{ASCII} output for a +The distinction between @code{troff} and @code{nroff} is that +@code{troff} was designed to drive a phototypesetter whereas +@code{nroff} was designed to produce essentially @acronym{ASCII} output for a character-based device similar to a teletypewriter (usually abbreviated -to ``teletype'' or ``tty''). Hence, @code{TROFF} supports much finer -control over output positioning than does @code{NROFF} and can be seen +to ``teletype'' or ``tty''). Hence, @code{troff} supports much finer +control over output positioning than does @code{nroff} and can be seen as a forerunner of @TeX{}. Traditionally, man pages are either -formatted by @code{TROFF} for typesetting or by @code{NROFF} for +formatted by @code{troff} for typesetting or by @code{nroff} for printing on a character printer or displaying on a screen. Of course, over the last 25 years or so, the distinction between typeset output on paper and characters on a screen has become blurred by the fact that @@ -214,8 +213,8 @@ Nevertheless, Unix-style manual page documentation is still normally browsed on screen by running a program called @code{man}. This program looks in a predefined set of directories for the man page matching a specified topic, then either formats the source file by running -@code{NROFF} or recovers a pre-formatted file, and displays it via a -pager such as @code{more}. @code{NROFF} normally formats for a printer, +@code{nroff} or recovers a pre-formatted file, and displays it via a +pager such as @code{more}. @code{nroff} normally formats for a printer, so it paginates the output, numbers the pages, etc., most of which is irrelevant when the document is browsed as a continuous scrollable document on screen. The only concession to on-screen browsing normally @@ -228,7 +227,7 @@ command, see @ref{Documentation, man, Documentation Commands, emacs, GNU Emacs Manual}. This command runs @code{man} as described above, perhaps in the background, and then post-processes the output to remove much of the -@code{NROFF} pagination such as page headers and footers, and places the +@code{nroff} pagination such as page headers and footers, and places the result into an Emacs buffer. It puts this buffer into a special major mode, which is tailored for man page browsing, and provides a number of useful navigation commands, support for following references, etc. It @@ -236,7 +235,7 @@ provides some support for special display faces (fonts), but no special menu or mouse support. The Emacs man package appears to have been developed over about 10 years, from the late 1980s to the late 1990s. -There is considerable inefficiency in having @code{NROFF} paginate a +There is considerable inefficiency in having @code{nroff} paginate a document and then removing most of the pagination! WoMan is an Emacs Lisp library that provides an emulation of the @@ -253,22 +252,22 @@ with Unix-style manual page documentation. This may be difficult to read because ports of the Unix-style @code{man} program can be a little awkward to set up. I decided that it should not be too hard to emulate the 20 @code{man} macros directly, without treating them as macros and -largely ignoring the underlying @code{ROFF} requests, given the text +largely ignoring the underlying @code{roff} requests, given the text processing capabilities of Emacs. This proved to be essentially true, and it did not take a great deal of work to be able to format simple man pages acceptably. One problem arose with the significant number of man pages that use -@code{ROFF} requests in addition to the @code{man} macros, and since +@code{roff} requests in addition to the @code{man} macros, and since releasing the first version of WoMan I have been continually extending -it to support more @code{ROFF} requests. WoMan can now format a +it to support more @code{roff} requests. WoMan can now format a significant proportion of the man pages that I have tested, either well or at least readably. However, I have added capabilities partly by making additional passes through the document, a design that is fundamentally flawed. This can only be solved by a major re-design of WoMan to handle the major formatting within a single recursive pass, rather than the present multiple passes without any significant -recursion. There are some @code{ROFF} requests that cannot be handled +recursion. There are some @code{roff} requests that cannot be handled satisfactorily within the present design. Some of these are currently handled by kludges that ``usually more or less work.'' @@ -288,227 +287,18 @@ WoMan has (this) texinfo documentation! WoMan @emph{does not} replace @code{man}, although it does use a number of the facilities implemented in the Emacs @code{man} library. WoMan and man can happily co-exist, which is very useful for comparison and -debugging purposes. The only way in which WoMan affects @code{man} is -that it adds a timer to indicate how long @code{man} has taken to format -a man page. The timing is as compatible as possible with the timing -built into WoMan, for as fair a comparison as possible. The time -comparison seems to depend on the details of the platform, the version -of @code{man} in use, etc, but times are similar and WoMan is never -significantly slower than @code{man}. This is despite the fact that -WoMan is running byte code whereas most of the formatting done by -@code{man} uses machine code, and is a testimony to the quality of the -Emacs Lisp system. +debugging purposes. -@code{NROFF} simulates non-@acronym{ASCII} characters by using one or more +@code{nroff} simulates non-@acronym{ASCII} characters by using one or more @acronym{ASCII} characters. WoMan should be able to do much better than this. I have recently begun to add support for WoMan to use more of the characters in its default font and to use a symbol font, and it is an aspect that I intend to develop further in the near future. It should -be possible to move WoMan from an emulation of @code{NROFF} to an -emulation of @code{TROFF} as GNU Emacs moves to providing bit-mapped +be possible to move WoMan from an emulation of @code{nroff} to an +emulation of @code{troff} as GNU Emacs moves to providing bit-mapped display facilities. -@c =================================================================== - -@node Installation, Finding, Background, Top -@comment node-name, next, previous, up -@chapter Installation and Setup -@cindex installation -@cindex setup - -No installation is necessary if you just want to run the version of -WoMan distributed with GNU Emacs 21 or later, although some additional -setup may still be desirable. - -If you are installing @file{woman.el}, either to update the version -distributed with GNU Emacs or because WoMan was not distributed with -your version of Emacs, then you need to put the file in a directory in -your Emacs load path and byte compile it. A good directory to use is -the @file{site-lisp} directory in your Emacs file tree, e.g.@: -@file{/usr/local/share/emacs/@var{version}/site-lisp/} (where -@var{version} is your Emacs version), provided you have write access to -it. If you use a directory that is not included by default in your -Emacs load path then you need to add something like this to your -@file{.emacs} initialization file: - -@lisp -(add-to-list 'load-path "my-lisp") -@end lisp - -@noindent -where @file{my-lisp} is the pathname of the directory. @xref{Init File, , -The Init File ~/.emacs, emacs, The Emacs Editor}, for further details on -customizing Emacs in general. - -You can byte-compile the file by using the Emacs command -@code{byte-compile-file} or by opening the directory containing the -file, putting point on it and pressing the key @kbd{B}. (In fact, if -the file is compiled then it is only the compiled file that needs to be -in the Emacs load path, but leaving the source file there will do no -harm.) - -@heading Setup - -Setup that is either necessary or desirable consists of adding a small -amount of Emacs Lisp code to your @file{.emacs} initialization file. It -may be necessary (or at least convenient) to make WoMan autoload (if you -are not running GNU Emacs 21 or later) and to set the search path used -by the @code{woman} interface. You may also find it convenient to make -various WoMan menu and key bindings available and to make WoMan -customizable even before WoMan has been loaded. - -It is possible to run WoMan from a command line (from outside or even -from inside Emacs) by suitably configuring your command interpreter. - -@menu -* Autoloading:: Autoloading -* Search Path:: Search Path -* Auto Bindings:: Preloading Menu and Key Bindings -* Auto Customization:: Preloading Customization -* Command Line:: Command Line Access -@end menu - - -@node Autoloading, Search Path, Installation, Installation -@comment node-name, next, previous, up -@section Autoloading -@cindex autoloading - -If you are not running GNU Emacs 21 or later then you are recommended to -add these autoloads to your @file{.emacs} file: - -@lisp -(autoload 'woman "woman" - "Decode and browse a Unix man page." t) -(autoload 'woman-find-file "woman" - "Find, decode and browse a specific Unix man-page file." t) -(autoload 'woman-dired-find-file "woman" - "In dired, run the WoMan man-page browser on this file." t) -@end lisp - -@noindent -(In GNU Emacs 21 and later these autoloads are predefined.) - - -@node Search Path, Auto Bindings, Autoloading, Installation -@comment node-name, next, previous, up -@section Search Path -@cindex search path - -The next step is necessary if you want to use the friendliest WoMan -interface, which is recommended in general. If the @code{MANPATH} -environment variable is set then WoMan will use it; alternatively (or -additionally), if your platform uses a man configuration file (as do -many versions of Linux) then WoMan will use it, provided it can find it. -(This may need configuration. @xref{Interface Options, , Interface -Options}.) If these mechanisms correctly define the search path for man -pages then no further action is required. - -Otherwise you may need to customize the user option -@code{woman-manpath}, and you may also want to customize the user option -@code{woman-path}. @xref{Customization, , Customization}. Now you can -execute the extended command @code{woman} and enter or select a manual -topic using completion, and if necessary select a filename, again using -completion. By default, WoMan suggests the word nearest to point in the -current buffer as the topic. - - -@node Auto Bindings, Auto Customization, Search Path, Installation -@comment node-name, next, previous, up -@section Preloading Menu and Key Bindings -@cindex preloading menu and key bindings -@cindex menu bindings, preloading -@cindex key bindings, preloading -@cindex bindings, preloading - -Once WoMan is loaded it adds an item to the @samp{Help} menu and defines -one or more keys in dired mode to run WoMan on the current file. If you -would like these facilities always to be available, even before WoMan is -loaded, then add the following to your @file{.emacs} file: - -@lisp -(define-key-after menu-bar-manuals-menu [woman] - '(menu-item "Read Man Page (WoMan)..." woman - :help "Man-page documentation Without Man") t) - -(add-hook 'dired-mode-hook - (lambda () - (define-key dired-mode-map "W" 'woman-dired-find-file))) -@end lisp - -(By default, WoMan will automatically define the dired keys @kbd{W} and -@kbd{w} when it loads, but only if they are not already defined. This -behavior is controlled by the user option @code{woman-dired-keys}. -Note that the @code{dired-x} (dired extra) package binds -@code{dired-copy-filename-as-kill} to the key @kbd{w}, although @kbd{W} -appears to be unused. The @code{dired-x} package will over-write the -WoMan binding for @kbd{w}, whereas (by default) WoMan will not overwrite -the @code{dired-x} binding.) - - -@node Auto Customization, Command Line, Auto Bindings, Installation -@comment node-name, next, previous, up -@section Preloading Customization -@cindex preloading customization -@cindex customization, preloading - -WoMan supports the GNU Emacs 20+ customization facility, and puts a -customization group called @code{WoMan} in the @code{Help} group under -the top-level @code{Emacs} group. In order to be able to customize -WoMan without first loading it, add the following to your @file{.emacs} -file: - -@lisp -(defgroup woman nil - "Browse UNIX manual pages `wo (without) man'." - :tag "WoMan" :group 'help :load "woman") -@end lisp - - -@node Command Line, , Auto Customization, Installation -@comment node-name, next, previous, up -@section Command Line Access -@cindex command line access - -If you really want to square the man-woman circle then you can! If you -run the GNU command interpreter @code{bash} then you might care to -define the following @code{bash} function in your @code{bash} -initialization file @file{.bashrc}: - -@example -man() @{ gnudoit -q '(raise-frame (selected-frame)) (woman' \"$1\" ')' ; @} -@end example - -If you use a Microsoft command interpreter (@file{command.com} or -@file{cmd.exe}) then you can create a file called @file{man.bat} -somewhere in your path containing the two lines: - -@example -@@echo off -gnudoit -q (raise-frame (selected-frame)) (woman \"%1\") -@end example - -and then (e.g.@: from a command prompt or the @samp{Run...} option in the -Windows @samp{Start} menu) just execute - -@example -man man_page_name -@end example - -(Of course, if you already have a @code{man} command installed then you -could call these commands @code{woman} instead of @code{man}.) - -The above examples assume that you have the @code{gnuserv} Emacs -client-server package installed (which I recommend). It would be -possible to do something similar by calling Emacs directly, but that is -less satisfactory, because you are likely to end up with multiple copies -of Emacs running, which is generally inelegant, inefficient and -inconvenient. If you run a different command interpreter then something -similar to the above suggestions should be possible. - -@c =================================================================== - -@node Finding, Browsing, Installation, Top +@node Finding, Browsing, Background, Top @comment node-name, next, previous, up @chapter Finding and Formatting Man Pages @cindex using, finding man pages @@ -572,19 +362,18 @@ setting WoMan file paths. The topic interface is accessed principally via the command @code{woman}. The same command can be accessed via the menu item -@samp{Help->Manuals->Read Man Page (WoMan)...} either once WoMan has been -loaded or if it is set up specially. @xref{Installation, , Installation -and Setup}. The command reads a manual topic in the minibuffer, which -can be the @dfn{basename} of a man file anywhere in the man file -structure. The ``basename'' in this context means the filename without -any directory component and without any extension or suffix components -that relate to the file type. So, for example, if there is a compressed -source file in Chapter 5 of the UNIX Programmer's Manual with the full -pathname @file{/usr/local/man/man5/man.conf.5.gz} then the topic is -@code{man.conf}. Provided WoMan is configured correctly, this topic -will appear among the completions offered by @code{woman}. If more than -one file has the same topic name then WoMan will prompt for which file -to format. Completion of topics is case insensitive. +@samp{Help->Manuals->Read Man Page (WoMan)...} once WoMan has been +loaded. The command reads a manual topic in the minibuffer, which can +be the @dfn{basename} of a man file anywhere in the man file +structure. The ``basename'' in this context means the filename +without any directory component and without any extension or suffix +components that relate to the file type. So, for example, if there is +a compressed source file in Chapter 5 of the UNIX Programmer's Manual +with the full pathname @file{/usr/local/man/man5/man.conf.5.gz} then +the topic is @code{man.conf}. Provided WoMan is configured correctly, +this topic will appear among the completions offered by @code{woman}. +If more than one file has the same topic name then WoMan will prompt +for which file to format. Completion of topics is case insensitive. Clearly, @code{woman} has to know where to look for man files and there are two customizable user options that store this information: @@ -834,7 +623,7 @@ blank lines squeezed to a single blank line. @cindex fonts @cindex faces -Fonts used by @code{ROFF} are handled by WoMan as faces, the details of +Fonts used by @code{roff} are handled by WoMan as faces, the details of which are customizable. @xref{Faces, , Faces}. WoMan supports both the italic and bold fonts normally used in man pages, together with a single face to represent all unknown fonts (which are occasionally used in @@ -1070,15 +859,12 @@ is distributed with GNU Emacs. @chapter Customization @cindex customization -All WoMan user options are customizable, and it is recommended to change -them only via the standard Emacs customization facilities. WoMan -defines a top-level customization group called @code{WoMan} under the -parent group @code{Help}. The WoMan customization group is available -only once WoMan has been loaded unless it is specially set up to be -automatically available. @xref{Auto Customization, , Preloading -Customization}. It can be accessed either via the standard Emacs -facilities, e.g.@: via the @samp{Help->Customize} submenu, or via the -WoMan major mode menu. +All WoMan user options are customizable, and it is recommended to +change them only via the standard Emacs customization facilities. +WoMan defines a top-level customization group called @code{WoMan} +under the parent group @code{Help}. It can be accessed either via the +standard Emacs facilities, e.g.@: via the @samp{Help->Customize} +submenu, or via the WoMan major mode menu. The top-level WoMan group contains only a few general options and three subgroups. The hooks are provided only for special purposes that, for @@ -1385,7 +1171,7 @@ headings. Default is @code{t}. [Heading emboldening is @emph{not} standard @item woman-ignore A boolean value. If non-@code{nil} then unrecognised requests etc. are -ignored. Default is @code{t}. This gives the standard @code{ROFF} behavior. +ignored. Default is @code{t}. This gives the standard @code{roff} behavior. If @code{nil} then they are left in the buffer, which may aid debugging. @item woman-preserve-ascii @@ -1395,8 +1181,8 @@ WoMan buffer. Otherwise, non-@acronym{ASCII} characters (that display as saved to a file. Default is @code{nil}. @item woman-emulation -WoMan emulation, currently either @code{NROFF} or @code{TROFF}. Default -is @code{NROFF}. @code{TROFF} emulation is experimental and largely +WoMan emulation, currently either @code{nroff} or @code{troff}. Default +is @code{nroff}. @code{troff} emulation is experimental and largely untested. @end vtable @@ -1417,8 +1203,8 @@ either colors or different fonts. @item woman-italic-face Face for italic font in man pages. Default: italic, underlined, -foreground red. This is overkill! @code{TROFF} uses just italic; -@code{NROFF} uses just underline. You should probably select either +foreground red. This is overkill! @code{troff} uses just italic; +@code{nroff} uses just underline. You should probably select either italic or underline as you prefer, but not both, although italic and underline work together perfectly well! @@ -1494,7 +1280,7 @@ At present, all warnings should be treated with some suspicion. Uninterpreted escape sequences are also logged (in some cases). By resetting the variable @code{woman-ignore} to @code{nil} (by default -it is @code{t}), uninterpreted @code{ROFF} requests can optionally be +it is @code{t}), uninterpreted @code{roff} requests can optionally be left in the formatted buffer to indicate precisely where they occurred. @xref{Interface Options, , Interface Options}. @@ -1514,7 +1300,7 @@ left in the formatted buffer to indicate precisely where they occurred. WoMan currently assumes 10 characters per inch horizontally, hence a horizontal resolution of 24 basic units, and 5 lines per inch vertically, hence a vertical resolution of 48 basic units. -(@code{NROFF} uses 240 per inch.) +(@code{nroff} uses 240 per inch.) @heading Vertical spacing and blank lines From d32f600dfcda95e50f6966d38a1d9c239902fb85 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 14:39:43 +0000 Subject: [PATCH 68/78] * progmodes/octave-inf.el (inferior-octave-has-built-in-variables): New defvar. (inferior-octave-resync-dirs): Check to see whether Octave has built-in variables and set inferior-octave-has-built-in-variables. Check inferior-octave-has-built-in-variables to decide whether to send commands that set built-in variables or call functions to change Octave's behavior. Send "disp (pwd ())" to Octave instead of just "pwd". (inferior-octave-startup): Send "more off" to Octave instead of "page_screen_output = 0". --- lisp/ChangeLog | 13 +++++++++++++ lisp/progmodes/octave-inf.el | 24 +++++++++++++++++++----- 2 files changed, 32 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ad36d29542c..661a54aa4cb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,16 @@ +2006-10-26 John W. Eaton + + * progmodes/octave-inf.el (inferior-octave-has-built-in-variables): + New defvar. + (inferior-octave-resync-dirs): Check to see whether Octave has + built-in variables and set inferior-octave-has-built-in-variables. + Check inferior-octave-has-built-in-variables to decide whether to + send commands that set built-in variables or call functions to + change Octave's behavior. + Send "disp (pwd ())" to Octave instead of just "pwd". + (inferior-octave-startup): Send "more off" to Octave instead of + "page_screen_output = 0". + 2006-10-26 Chong Yidong * emacs-lisp/cl-indent.el (lisp-indent-259): Indent nil's in the diff --git a/lisp/progmodes/octave-inf.el b/lisp/progmodes/octave-inf.el index 863f972086e..0f20626c9b9 100644 --- a/lisp/progmodes/octave-inf.el +++ b/lisp/progmodes/octave-inf.el @@ -113,6 +113,9 @@ the regular expression `comint-prompt-regexp', a buffer local variable." (defvar inferior-octave-complete-impossible nil "Non-nil means that `inferior-octave-complete' is impossible.") +(defvar inferior-octave-has-built-in-variables nil + "Non-nil means that Octave has built-in variables.") + (defvar inferior-octave-dynamic-complete-functions '(inferior-octave-complete comint-dynamic-complete-filename) "List of functions called to perform completion for inferior Octave. @@ -218,11 +221,20 @@ startup file, `~/.emacs-octave'." 'identity inferior-octave-output-list "\n") "\n")))) + ;; Find out whether Octave has built-in variables. + (inferior-octave-send-list-and-digest + (list "exist \"LOADPATH\"\n")) + (setq inferior-octave-has-built-in-variables + (string-match "101$" (car inferior-octave-output-list))) + ;; An empty secondary prompt, as e.g. obtained by '--braindead', ;; means trouble. (inferior-octave-send-list-and-digest (list "PS2\n")) - (if (string-match "^PS2 = *$" (car inferior-octave-output-list)) - (inferior-octave-send-list-and-digest (list "PS2 = \"> \"\n"))) + (if (string-match "\\(PS2\\|ans\\) = *$" (car inferior-octave-output-list)) + (inferior-octave-send-list-and-digest + (list (if inferior-octave-has-built-in-variables + "PS2 = \"> \"\n" + "PS2 (\"> \");\n")))) ;; O.k., now we are ready for the Inferior Octave startup commands. (let* (commands @@ -230,10 +242,12 @@ startup file, `~/.emacs-octave'." (file (or inferior-octave-startup-file (concat "~/.emacs-" program)))) (setq commands - (list "page_screen_output = 0;\n" + (list "more off;\n" (if (not (string-equal inferior-octave-output-string ">> ")) - "PS1=\"\\\\s> \";\n") + (if inferior-octave-has-built-in-variables + "PS1=\"\\\\s> \";\n" + "PS1 (\"\\\\s> \");\n")) (if (file-exists-p file) (format "source (\"%s\");\n" file)))) (inferior-octave-send-list-and-digest commands)) @@ -383,7 +397,7 @@ Use \\[inferior-octave-resync-dirs] to resync if Emacs gets confused." This command queries the inferior Octave process about its current directory and makes this the current buffer's default directory." (interactive) - (inferior-octave-send-list-and-digest '("pwd\n")) + (inferior-octave-send-list-and-digest '("disp (pwd ())\n")) (cd (car inferior-octave-output-list))) ;;; provide ourself From 5695d1dd75e567a73904123a175244ff1b9c1ff1 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 14:44:25 +0000 Subject: [PATCH 69/78] * url-http.el (url-http-mark-connection-as-free): Verify that connection is open before saving it. (url-http-handle-authentication): Use url-retrieve-internal instead of url-retrieve. (url-http-parse-headers): Adapt to new callback interface. (url-http): Handle non-blocking connections. (url-http-async-sentinel): Create. * url.el (url-retrieve): Update docstring for new callback interface. Remove all code. (url-retrieve-internal): Move code from url-retrieve here. * url-gw.el (url-open-stream): Use a non-blocking socket for `native' gateway method, if available. --- lisp/url/ChangeLog | 17 +++++++++ lisp/url/url-gw.el | 9 ++++- lisp/url/url-http.el | 89 ++++++++++++++++++++++++++++++++------------ lisp/url/url.el | 39 ++++++++++++++++--- 4 files changed, 124 insertions(+), 30 deletions(-) diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 2d26bc805a7..60d287896dd 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,20 @@ +2006-10-27 Magnus Henoch + + * url-http.el (url-http-mark-connection-as-free): Verify that + connection is open before saving it. + (url-http-handle-authentication): Use url-retrieve-internal + instead of url-retrieve. + (url-http-parse-headers): Adapt to new callback interface. + (url-http): Handle non-blocking connections. + (url-http-async-sentinel): Create. + + * url.el (url-retrieve): Update docstring for new callback interface. + Remove all code. + (url-retrieve-internal): Move code from url-retrieve here. + + * url-gw.el (url-open-stream): Use a non-blocking socket for + `native' gateway method, if available. + 2006-10-16 Magnus Henoch * url-http.el (url-https-create-secure-wrapper): Always use tls diff --git a/lisp/url/url-gw.el b/lisp/url/url-gw.el index 878259927eb..31e1a629aba 100644 --- a/lisp/url/url-gw.el +++ b/lisp/url/url-gw.el @@ -210,7 +210,8 @@ linked Emacs under SunOS 4.x" (defun url-open-stream (name buffer host service) "Open a stream to HOST, possibly via a gateway. Args per `open-network-stream'. -Will not make a connection if `url-gateway-unplugged' is non-nil." +Will not make a connection if `url-gateway-unplugged' is non-nil. +Might do a non-blocking connection; use `process-status' to check." (unless url-gateway-unplugged (let ((gw-method (if (and url-gateway-local-host-regexp (not (eq 'tls url-gateway-method)) @@ -249,7 +250,11 @@ Will not make a connection if `url-gateway-unplugged' is non-nil." (ssl (open-ssl-stream name buffer host service)) ((native) - (open-network-stream name buffer host service)) + ;; Use non-blocking socket if we can. + (make-network-process :name name :buffer buffer + :host host :service service + :nowait + (and nil (featurep 'make-network-process '(:nowait t))))) (socks (socks-open-network-stream name buffer host service)) (telnet diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 958d90683e4..cd09df3cb4c 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -92,11 +92,12 @@ request.") (defun url-http-mark-connection-as-free (host port proc) (url-http-debug "Marking connection as free: %s:%d %S" host port proc) - (set-process-buffer proc nil) - (set-process-sentinel proc 'url-http-idle-sentinel) - (puthash (cons host port) - (cons proc (gethash (cons host port) url-http-open-connections)) - url-http-open-connections) + (when (memq (process-status proc) '(open run)) + (set-process-buffer proc nil) + (set-process-sentinel proc 'url-http-idle-sentinel) + (puthash (cons host port) + (cons proc (gethash (cons host port) url-http-open-connections)) + url-http-open-connections)) nil) (defun url-http-find-free-connection (host port) @@ -336,8 +337,8 @@ This allows us to use `mail-fetch-field', etc." (let ((url-request-method url-http-method) (url-request-data url-http-data) (url-request-extra-headers url-http-extra-headers)) - (url-retrieve url url-callback-function - url-callback-arguments))))))) + (url-retrieve-internal url url-callback-function + url-callback-arguments))))))) (defun url-http-parse-response () "Parse just the response code." @@ -520,18 +521,21 @@ should be shown to the user." (let ((url-request-method url-http-method) (url-request-data url-http-data) (url-request-extra-headers url-http-extra-headers)) - ;; Put in the current buffer a forwarding pointer to the new - ;; destination buffer. - ;; FIXME: This is a hack to fix url-retrieve-synchronously - ;; without changing the API. Instead url-retrieve should - ;; either simply not return the "destination" buffer, or it - ;; should take an optional `dest-buf' argument. - (set (make-local-variable 'url-redirect-buffer) - (url-retrieve redirect-uri url-callback-function - (cons :redirect - (cons redirect-uri - url-callback-arguments)))) - (url-mark-buffer-as-dead (current-buffer)))))) + ;; Remember that the request was redirected. + (setf (car url-callback-arguments) + (nconc (list :redirect redirect-uri) + (car url-callback-arguments))) + ;; Put in the current buffer a forwarding pointer to the new + ;; destination buffer. + ;; FIXME: This is a hack to fix url-retrieve-synchronously + ;; without changing the API. Instead url-retrieve should + ;; either simply not return the "destination" buffer, or it + ;; should take an optional `dest-buf' argument. + (set (make-local-variable 'url-redirect-buffer) + (url-retrieve-internal + redirect-uri url-callback-function + url-callback-arguments) + (url-mark-buffer-as-dead (current-buffer))))))) (4 ; Client error ;; 400 Bad Request ;; 401 Unauthorized @@ -653,7 +657,13 @@ should be shown to the user." ;; The request could not be understood by the server due to ;; malformed syntax. The client SHOULD NOT repeat the ;; request without modifications. - (setq success t)))) + (setq success t))) + ;; Tell the callback that an error occurred, and what the + ;; status code was. + (when success + (setf (car url-callback-arguments) + (nconc (list :error (list 'error 'http url-http-response-status)) + (car url-callback-arguments))))) (5 ;; 500 Internal server error ;; 501 Not implemented @@ -702,7 +712,13 @@ should be shown to the user." ;; which received this status code was the result of a user ;; action, the request MUST NOT be repeated until it is ;; requested by a separate user action. - nil))) + nil)) + ;; Tell the callback that an error occurred, and what the + ;; status code was. + (when success + (setf (car url-callback-arguments) + (nconc (list :error (list 'error 'http url-http-response-status)) + (car url-callback-arguments))))) (otherwise (error "Unknown class of HTTP response code: %d (%d)" class url-http-response-status))) @@ -1089,11 +1105,38 @@ CBARGS as the arguments." url-current-object)) (set-process-buffer connection buffer) - (set-process-sentinel connection 'url-http-end-of-document-sentinel) (set-process-filter connection 'url-http-generic-filter) - (process-send-string connection (url-http-create-request url)))) + (let ((status (process-status connection))) + (cond + ((eq status 'connect) + ;; Asynchronous connection + (set-process-sentinel connection 'url-http-async-sentinel)) + ((eq status 'failed) + ;; Asynchronous connection failed + (error "Could not create connection to %s:%d" (url-host url) + (url-port url))) + (t + (set-process-sentinel connection 'url-http-end-of-document-sentinel) + (process-send-string connection (url-http-create-request url))))))) buffer)) +(defun url-http-async-sentinel (proc why) + (declare (special url-callback-arguments)) + ;; We are performing an asynchronous connection, and a status change + ;; has occurred. + (with-current-buffer (process-buffer proc) + (cond + ((string= (substring why 0 4) "open") + (set-process-sentinel proc 'url-http-end-of-document-sentinel) + (process-send-string proc (url-http-create-request url-current-object))) + (t + (setf (car url-callback-arguments) + (nconc (list :error (list 'error 'connection-failed why + :host (url-host url-current-object) + :service (url-port url-current-object))) + (car url-callback-arguments))) + (url-http-activate-callback))))) + ;; Since Emacs 19/20 does not allow you to change the ;; `after-change-functions' hook in the midst of running them, we fake ;; an after change by hooking into the process filter and inserting diff --git a/lisp/url/url.el b/lisp/url/url.el index 07ac55dcd3d..f20c0a6d48e 100644 --- a/lisp/url/url.el +++ b/lisp/url/url.el @@ -128,13 +128,39 @@ URL is either a string or a parsed URL. CALLBACK is called when the object has been completely retrieved, with the current buffer containing the object, and any MIME headers associated -with it. Normally it gets the arguments in the list CBARGS. -However, if what we find is a redirect, CALLBACK is given -two additional args, `:redirect' and the redirected URL, -followed by CBARGS. +with it. It is called as (apply CALLBACK STATUS CBARGS), where STATUS +is a list with an even number of elements representing what happened +during the request, with most recent events first. Each pair is one +of: + +\(:redirect REDIRECTED-TO) - the request was redirected to this URL +\(:error (ERROR-SYMBOL . DATA)) - an error occurred. The error can be +signaled with (signal ERROR-SYMBOL DATA). Return the buffer URL will load into, or nil if the process has -already completed." +already completed (i.e. URL was a mailto URL or similar; in this case +the callback is not called). + +The variables `url-request-data', `url-request-method' and +`url-request-extra-headers' can be dynamically bound around the +request; dynamic binding of other variables doesn't necessarily +take effect." +;;; XXX: There is code in Emacs that does dynamic binding +;;; of the following variables around url-retrieve: +;;; url-standalone-mode, url-gateway-unplugged, w3-honor-stylesheets, +;;; url-confirmation-func, url-cookie-multiple-line, +;;; url-cookie-{{,secure-}storage,confirmation} +;;; url-standalone-mode and url-gateway-unplugged should work as +;;; usual. url-confirmation-func is only used in nnwarchive.el and +;;; webmail.el; the latter should be updated. Is +;;; url-cookie-multiple-line needed anymore? The other url-cookie-* +;;; are (for now) only used in synchronous retrievals. + (url-retrieve-internal url callback (cons nil cbargs))) + +(defun url-retrieve-internal (url callback cbargs) + "Internal function; external interface is `url-retrieve'. +CBARGS is what the callback will actually receive - the first item is +the list of events, as described in the docstring of `url-retrieve'." (url-do-setup) (url-gc-dead-buffers) (if (stringp url) @@ -211,6 +237,9 @@ no further processing). URL is either a string or a parsed URL." ;; clear that it's a bug, but even then we need to decide how ;; url-http can then warn us that the download has completed. ;; In the mean time, we use this here workaround. + ;; XXX: The callback must always be called. Any + ;; exception is a bug that should be fixed, not worked + ;; around. (setq retrieval-done t)) ;; We used to use `sit-for' here, but in some cases it wouldn't ;; work because apparently pending keyboard input would always From 1b244f6177a8003bad8b9b297ae90e7e64488414 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 14:46:59 +0000 Subject: [PATCH 70/78] * url.el (url-retrieve): Minor doc clarification. --- lisp/url/url.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/url/url.el b/lisp/url/url.el index f20c0a6d48e..6e4dfa089e7 100644 --- a/lisp/url/url.el +++ b/lisp/url/url.el @@ -128,10 +128,10 @@ URL is either a string or a parsed URL. CALLBACK is called when the object has been completely retrieved, with the current buffer containing the object, and any MIME headers associated -with it. It is called as (apply CALLBACK STATUS CBARGS), where STATUS -is a list with an even number of elements representing what happened -during the request, with most recent events first. Each pair is one -of: +with it. It is called as (apply CALLBACK STATUS CBARGS). +STATUS is a list with an even number of elements representing +what happened during the request, with most recent events first, +or an empty list if no events have occurred. Each pair is one of: \(:redirect REDIRECTED-TO) - the request was redirected to this URL \(:error (ERROR-SYMBOL . DATA)) - an error occurred. The error can be From 4f2c863870e5e9e13f270d6e1187bf6a3ba81afe Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 15:39:24 +0000 Subject: [PATCH 71/78] * README: Bump version number to 22.0.90. * AUTHORS: Regenerate. * configure: Regenerate. --- AUTHORS | 348 +++++++++++++++++++----------- ChangeLog | 8 + README | 2 +- configure | 615 ++++++++++++++++++++---------------------------------- 4 files changed, 453 insertions(+), 520 deletions(-) diff --git a/AUTHORS b/AUTHORS index 58dc3ad08d5..845cf9633a9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -13,10 +13,11 @@ Abramo Bagnara: changed term.c Adrian Aichner: changed erc-log.el erc.el erc-autojoin.el erc-backend.el erc-dcc.el erc-members.el erc-nets.el erc-sound.el etags.c + gnus-score.el Adrian Colley: changed aix3-2.h -Adrian Lanz: changed mail-source.el +Adrian Lanz: changed mail-source.el spam.el Agustin Martin: changed flyspell.el ispell.el @@ -57,7 +58,7 @@ and changed erc.el erc-track.el erc-button.el erc-stamp.el erc-match.el erc-autoaway.el erc-nickserv.el Makefile erc-autojoin.el erc-fill.el erc-pcomplete.el erc-complete.el erc-ibuffer.el erc-members.el rcirc.texi comint.el custom.el erc-bbdb.el erc-chess.el erc-ezbounce.el - erc-imenu.el and 24 other files + erc-imenu.el and 26 other files Alexander Klimov: changed man.el @@ -94,7 +95,10 @@ Andre Spiegel: changed vc.el vc-hooks.el vc-cvs.el vc-rcs.el vc-sccs.el parse-time.el startup.el tramp-vc.el vc-arch.el vc-mcvs.el vc-svn.el vcdiff viper-util.el -Andre Srinivasan: changed gnus.texi +Andre Srinivasan: changed gnus-group.el gnus-sum.el gnus.texi + mm-decode.el mml.el nnmail.el + +Andrea Russo: changed info-look.el Andreas B,A|(Bsching: changed emacsclient.c @@ -103,9 +107,11 @@ Andreas Fuchs: wrote erc-ezbounce.el erc-fill.el erc-match.el and changed erc.el erc-bbdb.el erc-button.el erc-log.el erc-stamp.el erc-autoaway.el erc-autojoin.el erc-dcc.el erc-imenu.el erc-list.el erc-members.el erc-menu.el erc-netsplit.el erc-notify.el erc-ring.el - erc-speedbar.el erc-track.el erc-xdcc.el mml-sec.el + erc-speedbar.el erc-track.el erc-xdcc.el gnus-registry.el mml-sec.el + mml2015.el Andreas Jaeger: changed gnus-msg.el gnus-start.el gnus-xmas.el + nnfolder.el nnml.el Andreas Leue: changed artist.el @@ -116,9 +122,9 @@ Andreas Schwab: changed Makefile.in files.el lisp.h xdisp.c alloc.c fileio.c simple.el buffer.c minibuf.c xterm.c emacs.c keyboard.c process.c and 444 other files -Andreas Seltenreich: changed nnweb.el gnus-art.el gnus-ml.el gnus-srvr.el - gnus-start.el gnus-util.el gnus.el gnus.texi mm-url.el nnslashdot.el - url-cookie.el url-http.el +Andreas Seltenreich: changed nnweb.el gnus.texi gnus-art.el gnus-ml.el + gnus-srvr.el gnus-start.el gnus-util.el gnus.el mm-url.el mm-uu.el + nnslashdot.el url-cookie.el url-http.el Andrew Choi: wrote mac-win.el and changed macterm.c mac.c macfns.c INSTALL macmenu.c darwin.h macterm.h @@ -189,8 +195,8 @@ Benjamin Drieu: wrote pong.el Benjamin Riefenstahl: changed emacs.c mac-win.el macterm.c ms-w32.h mule-cmds.el runemacs.c tcl.el w32.c w32.h w32select.c -Benjamin Rutt: changed vc.el diff-mode.el ffap.el nnmbox.el simple.el - vc-cvs.el +Benjamin Rutt: changed vc.el gnus-msg.el message.el diff-mode.el ffap.el + gnus-dired.el nnimap.el nnmbox.el simple.el vc-cvs.el Bill Atkins: changed wdired.el @@ -210,6 +216,8 @@ Bill Rosenblatt: wrote float.el Bill Rozas: wrote scheme.el and changed xscheme.el +Bill White: changed gnus-start.el + Bill Wohler: wrote mh-buffers.el mh-comp.el mh-compat.el mh-e.el mh-folder.el mh-funcs.el mh-letter.el mh-loaddefs.el mh-mime.el mh-scan.el mh-seq.el mh-show.el mh-utils.el mh-xface.el @@ -227,6 +235,8 @@ Bj,Av(Brn Torkelsson: changed gnus-art.el gnus-group.el gnus-srvr.el gnus-agent.el gnus-cus.el gnus-gl.el gnus-nocem.el gnus-score.el gnus-topic.el gnus.el mail-source.el nnmail.el +Bj,Ax(Brn Mork: changed gnus-agent.el message.el mml2015.el + Blitz Product Development Corporation: wrote ispell.el Boaz Ben-Zvi: wrote profile.el @@ -311,11 +321,11 @@ Charlie Martin: wrote autoinsert.el Cheng Gao: changed MORE.STUFF flymake.el tips.texi url-dired.el url-file.el url-handlers.el url-http.el url-nfs.el -Chong Yidong: changed cus-edit.el custom.el simple.el display.texi - longlines.el files.el text.texi custom.texi files.texi wid-edit.el - cus-theme.el info.el keyboard.c xterm.c compile.el frames.texi +Chong Yidong: changed cus-edit.el simple.el custom.el display.texi + longlines.el files.el text.texi custom.texi files.texi keyboard.c + wid-edit.el cus-theme.el frames.texi info.el xterm.c compile.el image-mode.el keymaps.texi misc.texi mouse.el sendmail.el - and 156 other files + and 162 other files Chris Hanson: changed xscheme.el scheme.el xterm.c hpux.h x11term.c hp9000s300.h keyboard.c process.c texinfmt.el emacsclient.c sort.el @@ -341,7 +351,7 @@ Christian Von Roques: changed gnus-start.el Christoph Bauer: changed configure.in -Christoph Conrad: changed qp.el +Christoph Conrad: changed gnus-agent.el gnus-score.el qp.el Christoph Wedler: wrote antlr-mode.el and changed format.el gnus-art.el gnus-picon.el message.el register.el @@ -350,7 +360,7 @@ and changed format.el gnus-art.el gnus-picon.el message.el register.el Christopher J. Madsen: wrote decipher.el and changed files.el ispell.el replace.el time.el -Chunyu Wang: changed pcl-cvs.texi +Chunyu Wang: changed gnus-art.el pcl-cvs.texi Claudio Fontana: changed Makefile.in @@ -369,7 +379,7 @@ Craig Mcdaniel: changed sheap.c Daiki Ueno: wrote pgg-def.el pgg-gpg.el pgg-parse.el pgg-pgp.el pgg-pgp5.el pgg.el starttls.el -and changed mml2015.el gnus-agent.el mml1991.el +and changed mml2015.el gnus-agent.el gnus-srvr.el gnus-sum.el mml1991.el Dale Hagglund: changed unexelf.c @@ -383,7 +393,7 @@ Damien Elmes: changed erc.el erc-dcc.el erc-track.el erc-log.el Damon Anton Permezel: wrote hanoi.el (public domain) Dan Christensen: changed gnus-sum.el nnfolder.el gnus-art.el - gnus-group.el gnus-score.el nnmail.el + gnus-group.el gnus-registry.el gnus-score.el nndoc.el nnmail.el Dan Nicolaescu: wrote iris-ansi.el romanian.el and changed term.el xterm.el hideshow.el isearch.el icon.el lisp.h @@ -411,7 +421,7 @@ and changed compile.el files.el make-mode.el apropos.el buff-menu.el bindings.el button.el cc-fonts.el cc-mode.el and 12 other files Daniel Pittman: wrote tramp-vc.el -and changed gnus-sum.el nnimap.el +and changed gnus-spec.el gnus-sum.el nnimap.el Daniel Quinlan: changed dired.el info.el @@ -449,6 +459,7 @@ David Byers: changed minibuf.c David Casperson: changed menu-bar.el tex-mode.el David Edmondson: changed message.el gnus-cite.el imap.el mm-view.el + nnfolder.el nnml.el David Gillespie: wrote calc-aent.el calc-alg.el calc-arith.el calc-bin.el calc-comb.el calc-cplx.el calc-embed.el calc-ext.el calc-fin.el @@ -479,8 +490,8 @@ David J. Mackenzie: changed configure.in etags.c fakemail.c movemail.c David Kastrup: changed greek.el replace.el search.c ange-ftp.el faq.texi help.el mouse.el Makefile.in calc.el desktop.el keymaps.texi - meta-mode.el process.c search.texi DEBUG MAILINGLISTS autoload.el - browse-url.el buffer.c building.texi calc-alg.el and 30 other files + meta-mode.el process.c search.texi DEBUG DEVEL.HUMOR MAILINGLISTS + autoload.el browse-url.el buffer.c building.texi and 32 other files David K,Ae(Bgedal: wrote tempo.el and changed sendmail.el xmenu.c @@ -523,8 +534,12 @@ and changed commands.h easy-mmode.el emacsbug.el keymap.c macterm.c David Robinson: changed menu-bar.el x-win.el +David S Goldberg: changed message.el + David S. Goldberg: changed gnus-art.el +David Z Maze: changed nnml.el + David Z. Maze: changed nnrss.el Decklin Foster: changed nngateway.el @@ -608,9 +623,9 @@ Eli Barzilay: wrote calculator.el Eli Tziperman: wrote rmail-spam-filter.el Eli Zaretskii: wrote codepage.el rxvt.el tty-colors.el -and changed msdos.c Makefile.in files.el makefile.w32-in info.el fileio.c +and changed msdos.c Makefile.in makefile.w32-in files.el info.el fileio.c startup.el mainmake.v2 config.bat menu-bar.el pc-win.el simple.el - internal.el msdos.h xfaces.c frame.c rmail.el dosfns.c faces.el + internal.el msdos.h rmail.el xfaces.c frame.c dosfns.c faces.el frame.el emacs.c and 517 other files Emanuele Giaquinta: changed rxvt.el configure.in etags.c frame.el @@ -637,9 +652,15 @@ Eric Decker: changed hp9000s800.h hpux.h sysdep.c Eric Ding: wrote goto-addr.el and changed mh-utils.el mh-e.el mh-comp.el mh-mime.el +Eric Eide: changed gnus-xmas.el + Eric Hanchrow: changed TUTORIAL.es abbrev.el autorevert.el delphi.el dired.el emacsclient.c ispell.el make-dist +,AI(Bric Jacoboni: changed fr-refcard.tex + +Eric Knauel: changed gnus.el spam-report.el spam.el + Eric M. Ludlam: wrote checkdoc.el dframe.el ezimage.el sb-image.el speedbar.el and changed info.el rmail.el speedbspec.el gud.el Makefile.in comint.el @@ -648,7 +669,7 @@ and changed info.el rmail.el speedbspec.el gud.el Makefile.in comint.el sb-file.xpm sb-mail.xpm sb-pg-minus.xpm sb-pg-plus.xpm and 10 other files -Eric Marsden: changed url-util.el +Eric Marsden: changed gnus-cache.el url-util.el Eric S. Raymond: wrote AT386.el asm-mode.el cookie1.el finder.el gud.el keyswap.el lisp-mnt.el loadhist.el @@ -685,6 +706,8 @@ Fabrice Bauzac: changed dired-aux.el Fabrice Popineau: changed etags.c gnus-cache.el +Faried Nawaz: changed message.el + Felix Lee: changed flyspell.el outline.el compile.el data.c gud.el nntp.el process.c vc.el xdisp.c @@ -692,8 +715,7 @@ Ferenc Wagner: changed nnweb.el Flemming Hoejstrup Hansen: changed forms.el -Florian Weimer: changed message.el coding.c gnus-art.el gnus.el gnus.texi - mm-util.el +Florian Weimer: changed message.el gnus.el coding.c gnus.texi mm-util.el Francesc Rocher: changed cus-start.el macterm.c w32term.c xdisp.c xterm.c @@ -709,8 +731,8 @@ and changed dired.el comint.el files.el Francis Litterio: changed erc.el erc-list.el erc-dcc.el erc-notify.el erc-button.el erc-goodies.el erc-nets.el erc-ring.el Makefile erc-pcomplete.el erc-backend.el erc-ibuffer.el erc-match.el - erc-nickserv.el erc-page.el erc-speedbar.el keymaps.texi message.el - os.texi saveplace.el w32term.c and 3 other files + erc-nickserv.el erc-page.el erc-speedbar.el gnus-util.el keymaps.texi + message.el os.texi saveplace.el and 4 other files Francois Felix Ingrand: changed gnus-salt.el @@ -718,7 +740,7 @@ Frank Bennett: changed nnmail.el Frank Bresz: wrote diff.el -Frank Schmitt: changed gnus-sum.el +Frank Schmitt: changed gnus-sum.el gnus-util.el Frank Weinberg: changed gnus-art.el @@ -768,7 +790,11 @@ Gary Oberbrunner: changed gud.el Gary Wong: changed termcap.c tparam.c -Gaute B Strokkenes: changed process.c +Gaute B Strokkenes: changed imap.el gnus-fun.el process.c + +Gaute Strokkenes: changed mail-source.el + +Geoff Greene: changed message.el Geoff Voelker: wrote lisp/makefile.nt nt.c nt.h ntheap.c ntheap.h ntinevt.c ntproc.c ntterm.c src/makefile.nt w32-fns.el windowsnt.h @@ -788,7 +814,9 @@ Gerd Moellmann: wrote authors.el ebrowse.el jit-lock.el rx.el tooltip.el and changed xdisp.c xterm.c dispnew.c dispextern.h xfns.c xfaces.c window.c keyboard.c lisp.h Makefile.in faces.el alloc.c buffer.c startup.el xterm.h fns.c simple.el term.c configure.in frame.c xmenu.c - and 618 other files + and 619 other files + +Gerd M,Av(Bllmann: changed gnus-ems.el gnus-srvr.el mm-uu.el Gergely Nagy: changed erc.el @@ -796,8 +824,8 @@ Germano Caronni: changed ralloc.c Gernot Heiser: changed refer.el -Giorgos Keramidas: changed amdx86-64.h configure.in display.texi fringe.c - fringe.el lisp.h windows.texi +Giorgos Keramidas: changed amdx86-64.h apropos.el configure.in + display.texi fringe.c fringe.el lisp.h windows.texi Giuseppe Scrivano: changed buffer.c configure configure.in sysdep.c xsmfns.c @@ -851,15 +879,21 @@ Han-Wen Nienhuys: changed emacsclient.c server.el Hans Chalupsky: wrote advice.el trace.el and changed bytecomp.el +Hans De Graaff: changed mml.el + Hans Henrik Eriksen: wrote simula.el Harald Maier: changed w32heap.c +Harald Meland: changed gnus-art.el gnus-salt.el gnus-score.el + gnus-util.el gnus-win.el + Heiko Muenkel: changed b2m.c Helmut Waitzmann: changed gnus-sum.el gnus.texi -Henrik Enberg: changed lread.c rmailout.el xfaces.c +Henrik Enberg: changed gnus-art.el gnus-msg.el lread.c rmailout.el + xfaces.c Henry Guillaume: wrote find-file.el @@ -878,6 +912,7 @@ Hiroshi Nakano: changed ralloc.c unexelf.c Hoan Ton-That: changed erc-log.el Holger Schauer: wrote fortune.el +and changed message-utils.el Hovav Shacham: wrote windmove.el @@ -909,7 +944,7 @@ Ilja Weis: wrote gnus-topic.el Ilya N. Golubev: changed mm-util.el shell.el Ilya Zakharevich: wrote tmm.el -and changed syntax.c cperl-mode.el syntax.h textprop.c dired.c +and changed cperl-mode.el syntax.c syntax.h textprop.c dired.c font-lock.el interval.c intervals.c intervals.h regex.c regex.h search.c @@ -931,6 +966,8 @@ Ishikawa Chiaki: changed aviion.h dgux.h Istvan Marko: changed gnus-agent.el xfns.c +Ivan Boldyrev: changed mml1991.el + Ivan Zakharyaschev: changed codepage.el lread.c Ivar Rummelhoff: wrote winner.el @@ -941,6 +978,8 @@ J.D. Smith: changed idlwave.el idlw-shell.el idlw-rinfo.el idlw-toolbar.el idlw-help.el vc.el bibtex.el comint.el files.texi idlw-complete-structtag.el idlwave.texi misc.texi mouse.el +Jaap-Henk Hoepman: changed mm-decode.el + Jack Repenning: changed unexelfsgi.c Jack Twilley: changed message.el @@ -970,13 +1009,15 @@ and changed bytecode.c mail-extr.el subr.el Jan Dj,Ad(Brv: wrote dnd.el x-dnd.el and changed gtkutil.c xterm.c xfns.c xmenu.c xterm.h gtkutil.h - configure.in keyboard.c Makefile.in config.in frames.texi configure - x-win.el emacs.c xselect.c alloc.c xlwmenu.c startup.el xdisp.c + configure.in keyboard.c Makefile.in config.in frames.texi x-win.el + configure xselect.c emacs.c alloc.c xlwmenu.c startup.el xdisp.c xresources.texi cus-start.el and 172 other files Jan Nieuwenhuizen: changed info.el TUTORIAL.nl emacs.c emacsclient.c gnus-start.el gud.el nnmh.el server.el startup.el +Jan Rychter: changed gnus-msg.el + Jan Schormann: wrote solitaire.el Jan Vroonhof: changed gnus-cite.el gnus-msg.el nntp.el @@ -988,7 +1029,7 @@ Jari Aalto: changed add-log.el filecache.el gnus-art.el lisp-mnt.el executable.el files.el finder.el font-lock.el gnus.texi grep.el ls-lisp.el man.el sendmail.el terminal.el -Jason Merrill: changed imap.el +Jason Merrill: changed gnus-sum.el gnus-salt.el imap.el nnfolder.el Jason Rumney: wrote w32-vars.el and changed w32fns.c w32term.c w32menu.c w32-win.el w32term.h @@ -1040,13 +1081,13 @@ Jeremy Bertram Maitin-Shepard: changed erc.el erc-backend.el Jerry Frain: changed systime.h usg5-4.h -Jerry James: changed format.el +Jerry James: changed format.el dns.el gnus-util.el gnus-xmas.el Jesper Harder: wrote yenc.el and changed gnus-art.el gnus-sum.el message.el gnus-msg.el gnus.el - gnus-group.el mm-bodies.el gnus-util.el mm-decode.el mm-util.el - rfc2047.el mml.el mml1991.el mailcap.el mm-uu.el pgg-gpg.el smtpmail.el - gnus-srvr.el gnus-uu.el info.el nnmail.el and 179 other files + gnus-group.el mm-bodies.el gnus-util.el mm-util.el mm-decode.el mml.el + rfc2047.el mailcap.el mm-uu.el mml1991.el pgg-gpg.el smtpmail.el + gnus-srvr.el info.el nnmail.el pgg.el and 178 other files Jhair Tocancipa Triana: changed gnus-audio.el @@ -1079,6 +1120,8 @@ Joakim Verona: changed nnrss.el Joanna Pluta: changed TUTORIAL.pl +Jochen Hein: changed gnus-art.el + Jochen K,A|(Bpper: changed calc-units.el gnus.texi Joe Buehler: changed Makefile.in cygwin.h MACHINES browse-url.el @@ -1087,6 +1130,8 @@ Joe Buehler: changed Makefile.in cygwin.h MACHINES browse-url.el gnus-util.el hippie-exp.el keyboard.c lastfile.c loadup.el and 12 other files +Joe Casadonte: changed gnus-srvr.el + Joe Corneli: changed subr.el Joe Edmonds: changed lisp-mode.el @@ -1110,7 +1155,7 @@ Johan Bockg,Ae(Brd: changed erc.el erc-backend.el cl-macs.el erc-match.el erc-nickserv.el erc-ring.el erc-speak.el erc-track.el simple.el align.el calendar.el cl.texi custom.el dired-aux.el display.texi erc-bbdb.el erc-button.el erc-compat.el erc-dcc.el erc-list.el - erc-log.el and 10 other files + erc-log.el and 11 other files Johan Vromans: wrote forms-d2.el forms.el iso-acc.el and changed complete.el @@ -1121,6 +1166,8 @@ John F. Carr: changed dired.c John F. Whitehead: changed mule-cmds.el mule-diag.el +John Fremlin: changed gnus-msg.el message.el + John Grabowski: changed xfaces.c xfns.c John H. Palmieri: changed gnus-fun.el @@ -1156,10 +1203,12 @@ and changed erc-chess.el erc.el iswitchb.el Makefile.in allout.el cal-menu.el calendar.el compile.el desktop.el diary-lib.el erc-bbdb.el erc-button.el erc-complete.el erc-fill.el erc-ibuffer.el erc-list.el erc-match.el erc-menu.el erc-nets.el erc-replace.el erc-speak.el - and 9 other files + and 11 other files John Williams: changed etags.el +Jon Ericson: changed gnus.el spam-report.el + Jon K Hellan: wrote utf7.el Jonathan I. Kamens: changed pop.c movemail.c rmail.el configure.in @@ -1197,7 +1246,7 @@ Josh Huber: changed mml-sec.el gnus-msg.el message.el mml.el mml2015.el nnmail.el ChangeLog ChangeLog.1 gnus-cite.el gnus-delay.el gnus-spec.el mml1991.el nnultimate.el nnwfm.el gnus-cus.el gnus-smiley.el gnus-start.el gnus-topic.el gnus.el nnbabyl.el nndiary.el - and 7 other files + and 8 other files Joshua Varner: changed intro.texi @@ -1208,13 +1257,15 @@ and changed files.el perl-mode.el Juanma Barranquero: changed makefile.w32-in help-fns.el subr.el faces.el files.el w32fns.c cperl-mode.el replace.el simple.el eval.c - sh-script.el vhdl-mode.el comint.el org.el xdisp.c allout.el bs.el - desktop.el idlwave.el keyboard.c process.c and 550 other files + sh-script.el vhdl-mode.el ada-mode.el comint.el org.el w32-win.el + xdisp.c allout.el bs.el desktop.el idlwave.el and 554 other files Juergen Hoetzel: changed url-handlers.el Juergen Nickelsen: wrote ws-mode.el +Julien Avarre: changed gnus-fun.el + Julien Gilles: wrote gnus-ml.el Junio Hamano: changed window.el @@ -1242,14 +1293,16 @@ Kahlil Hodgson: changed timeclock.el Kai Gro,A_(Bjohann: wrote gnus-delay.el tramp-util.el tramp-uu.el tramp.el trampver.el -and changed message.el gnus-agent.el gnus-sum.el gnus-art.el nnmail.el - files.el tramp.texi gnus.el simple.el ange-ftp.el gnus-group.el - gnus-msg.el Makefile.in dired.el nnml.el paragraphs.el bindings.el - files.texi gnus-start.el imap.el man.el and 56 other files +and changed gnus-agent.el message.el gnus-sum.el files.el nnmail.el + tramp.texi gnus.el simple.el ange-ftp.el Makefile.in dired.el + paragraphs.el bindings.el files.texi gnus-art.el gnus-group.el man.el + nntp.el INSTALL crisp.el fileio.c and 45 other files Kailash C. Chowksey: changed HELLO Makefile.in ind-util.el kannada.el knd-util.el loadup.el makefile.w32-in +Kanematsu Daiji: changed nnimap.el + Karl Berry: changed info.texi emacs.texi elisp.texi emacs-xtra.texi filelock.c anti.texi building.texi cmdargs.texi copyright.el custom.texi customize.texi dired.c display.texi faq.texi frames.texi @@ -1272,20 +1325,21 @@ Karl Heuer: changed keyboard.c lisp.h xdisp.c buffer.c xfns.c xterm.c editfns.c fns.c process.c fileio.c simple.el keymap.c indent.c sysdep.c and 444 other files -Karl Kleinpaste: changed gnus-art.el gnus-picon.el gnus-score.el - gnus-sum.el gnus-uu.el gnus-xmas.el mm-uu.el mml.el nnmail.el smiley.el +Karl Kleinpaste: changed gnus-sum.el gnus-art.el gnus-picon.el + gnus-score.el gnus-uu.el gnus-xmas.el gnus.el mm-uu.el mml.el nnmail.el + smiley.el Karl M. Hegbloom: changed gnus.el -Karl Pfl,Ad(Bsterer: changed spam-stat.el +Karl Pfl,Ad(Bsterer: changed gnus-art.el gnus-score.el spam-stat.el -Katsuhiro Hermit Endo: changed gnus-spec.el +Katsuhiro Hermit Endo: changed gnus-group.el gnus-spec.el Katsumi Yamaoka: wrote canlock.el and changed gnus-art.el message.el gnus-sum.el gnus.texi mm-decode.el - mm-view.el gnus-util.el gnus-msg.el gnus.el mm-util.el lpath.el - gnus-start.el rfc2047.el gnus-group.el mm-uu.el dgnushack.el - gnus-agent.el nntp.el mml.el nnrss.el nnheader.el and 71 other files + mm-view.el gnus-util.el gnus-msg.el mm-util.el gnus.el lpath.el + gnus-group.el gnus-start.el rfc2047.el dgnushack.el mm-uu.el + gnus-agent.el nntp.el mml.el nnrss.el rfc2231.el and 71 other files Kaveh R. Ghazi: changed delta88k.h xterm.c @@ -1324,7 +1378,7 @@ Kenichi Handa: wrote cyrillic.el isearch-x.el py-punct.el pypunct-b5.el and changed coding.c mule-cmds.el mule.el charset.c fileio.c xterm.c fns.c ccl.c Makefile.in mule-conf.el fontset.c charset.h coding.h fontset.el mule-diag.el xdisp.c editfns.c process.c insdel.c - japanese.el characters.el and 277 other files + japanese.el characters.el and 278 other files Kenneth Stailey: changed alpha.h configure.in ns32000.h openbsd.h pmax.h sparc.h unexalpha.c unexelf.c @@ -1347,7 +1401,7 @@ and changed dispnew.c addpm.c config.nt dispextern.h emacs.c facemenu.el Kevin Greiner: changed gnus-agent.el gnus-start.el gnus-sum.el gnus-int.el gnus.el nntp.el gnus-util.el gnus-group.el gnus-cus.el - legacy-gnus-agent.el gnus-art.el gnus-cache.el gnus-range.el + gnus-range.el legacy-gnus-agent.el gnus-art.el gnus-cache.el gnus-srvr.el nnagent.el nnheader.el dgnushack.el gnus-async.el gnus-draft.el gnus-registry.el gnus-salt.el and 4 other files @@ -1363,14 +1417,14 @@ and changed info-look.el info.el gnus-art.el gnus-sum.el mailcap.el os.texi text.texi MORE.STUFF cc-align.el cmdargs.texi compile.texi display.texi em-alias.el em-dirs.el em-hist.el em-unix.el emacs-lisp-intro.texi ffap.el frames.texi glossary.texi gnus.texi - and 12 other files + and 14 other files -Kim F. Storm: wrote bindat.el cua-base.el cua-gmrk.el cua-rect.el - ido.el keypad.el kmacro.el +Kim F. Storm: wrote bindat.el cua-base.el cua-gmrk.el cua-rect.el ido.el + keypad.el kmacro.el and changed xdisp.c dispextern.h simple.el window.c xterm.c keyboard.c - process.c w32term.c dispnew.c subr.el lisp.h fringe.c macterm.c + process.c subr.el w32term.c dispnew.c lisp.h fringe.c macterm.c display.texi fns.c alloc.c xfaces.c xfns.c xterm.h keymap.c .gdbinit - and 238 other files + and 240 other files Kim-Minh Kaplan: changed gnus-picon.el gnus-sum.el gnus-start.el gnus-win.el gnus-xmas.el gnus.texi message.el nndraft.el nnml.el @@ -1393,6 +1447,8 @@ Kohtala Marko: changed info.el Koseki Yoshinori: wrote iimage.el and changed nnmail.el +Kurt B. Kaiser: changed message.el + Kurt Hornik: wrote octave-hlp.el octave-inf.el octave-mod.el and changed battery.el ielm.el term.el @@ -1443,6 +1499,8 @@ and changed gnus.el gnus-msg.el gnus-score.el gnus-topic.el gnus-xmas.el Lasse Rasinen: changed gnus-start.el +Laurent Martelli: changed mm-decode.el + Lawrence Mitchell: wrote erc-backend.el erc-log.el erc-nicklist.el and changed erc.el erc-match.el erc-nets.el erc-nickserv.el erc-button.el erc-compat.el erc-dcc.el erc-fill.el erc-list.el erc-track.el Makefile @@ -1457,8 +1515,8 @@ and changed fortran.el ispell.el sendmail.el cmuscheme.el comint.el Leigh Stoller: changed emacsclient.c emacsserver.c server.el -Lennart Borgman: changed window.el mouse.el recentf.el texinfmt.el - w32term.c w32term.h +Lennart Borgman: changed window.el ada-xref.el filesets.el flymake.el + mouse.el recentf.el shell.el texinfmt.el w32term.c w32term.h Lennart Staflin: changed dired.el diary-ins.el diary-lib.el tq.el xdisp.c @@ -1485,6 +1543,8 @@ Lute Kamstra: changed modes.texi generic.el debug.el generic-x.el Lynn Slater: wrote help-macro.el +L,Bu(Brentey K,Ba(Broly: changed spam.el gnus-sum.el + MCC: wrote xmenu.c and changed emacsclient.c emacsserver.c etags.c lisp.h movemail.c rmail.el rmailedit.el rmailkwd.el rmailmsc.el rmailout.el rmailsum.el @@ -1492,7 +1552,8 @@ and changed emacsclient.c emacsserver.c etags.c lisp.h movemail.c Maciek Pasternacki: changed nnrss.el -Magnus Henoch: changed ispell.el rcirc.el +Magnus Henoch: changed ispell.el url-http.el autoinsert.el rcirc.el + url-gw.el url-https.el url-parse.el url.el Manuel Serrano: wrote flyspell.el @@ -1500,6 +1561,8 @@ Marc Fleischeuers: changed files.el Marc Girod: changed informat.el rmail.el rmailsum.el sendmail.el +Marc Lefranc: changed gnus-art.el + Marc Shapiro: changed bibtex.el Marcelo Toledo: changed TUTORIAL.pt_BR TUTORIAL.cn TUTORIAL.cs @@ -1529,7 +1592,7 @@ and changed erc.el erc-dcc.el erc-speak.el Makefile erc-bbdb.el diff.el erc-ezbounce.el erc-identd.el erc-lang.el erc-log.el erc-macs.el and 5 other files -Mark A. Hershberger: changed xml.el nnrss.el cperl-mode.el mm-url.el +Mark A. Hershberger: changed xml.el nnrss.el mm-url.el cperl-mode.el gnus-group.el Mark D. Baushke: changed mh-e.el mh-utils.el mh-mime.el mh-comp.el @@ -1541,6 +1604,8 @@ Mark Diekhans: changed compile.el Mark H. Weaver: changed comint.el +Mark Hood: changed gnus-uu.el + Mark Lambert: changed process.c process.h Mark Mitchell: changed font-lock.el @@ -1551,6 +1616,8 @@ Mark Osbourne: changed hexl-mode.el Mark Plaksin: changed nnrss.el term.el +Mark Thomas: changed gnus-util.el nnmail.el + Mark W Maimone: changed mpuz.el Mark W. Eichin: changed keyboard.c xterm.c @@ -1581,7 +1648,7 @@ Martin Buchholz: changed etags.c Martin J. Reed: changed ldap.el -Martin Kretzschmar: changed gnus-spec.el +Martin Kretzschmar: changed gnus-spec.el gnus-sum.el Martin Larose: changed message.el @@ -1590,10 +1657,10 @@ Martin Lorentzon: changed vc.el vc-cvs.el vc-hooks.el vc-rcs.el Martin Neitzel: changed sc.el -Martin Rudalics: changed cus-edit.el wid-edit.el cus-start.el files.el - font-lock.el insdel.c syntax.c buffer.c buffer.h casefiddle.c custom.el - dispextern.h editfns.c eldoc.el fileio.c find-func.el hideif.el info.el - jit-lock.el lisp-mode.el lisp.h and 13 other files +Martin Rudalics: changed cus-edit.el wid-edit.el flyspell.el cus-start.el + files.el font-lock.el insdel.c syntax.c buffer.c buffer.h casefiddle.c + cperl-mode.el custom.el dispextern.h dnd.el editfns.c eldoc.el fileio.c + find-func.el help-at-pt.el hideif.el and 20 other files Martin Stjernholm: wrote cc-bytecomp.el and changed cc-engine.el cc-cmds.el cc-langs.el cc-defs.el cc-mode.el @@ -1601,6 +1668,8 @@ and changed cc-engine.el cc-cmds.el cc-langs.el cc-defs.el cc-mode.el cc-mode.texi Makefile.in cc-guess.el cc-mode-19.el ack.texi awk-mode.el cc-awk.el cc-lobotomy.el cc-make.el cc-style.el and 5 other files +Martin Thornquist: changed gnus-group.el gnus-topic.el + Masahiko Sato: wrote vip.el Masanobu Umeda: wrote gnus-kill.el gnus-mh.el gnus-msg.el gnus.el @@ -1612,7 +1681,7 @@ Masatake Yamato: wrote cc-subword.el ld-script.el and changed etags.el asm-mode.el xdisp.c bindings.el hexl.el man.el simple.el wid-edit.el add-log.el compile.el faces.el pcvs.el register.el ruler-mode.el buffer.c cus-face.el dired-x.el display.texi - etags.c font-lock.el gdb-ui.el and 57 other files + etags.c font-lock.el gdb-ui.el and 58 other files Masayuki Ataka: changed texinfmt.el texinfo.el characters.el make-mode.el @@ -1623,7 +1692,7 @@ and changed dired.el dired.texi Mathias Megyei: changed Makefile.in -Mats Lidell: changed TUTORIAL.sv european.el +Mats Lidell: changed TUTORIAL.sv european.el gnus-art.el Matt Hodges: changed em-pred.el icon.el paragraphs.el simple.el table.el telnet.el @@ -1647,21 +1716,23 @@ Matthias Wiehl: changed gnus.el Matthieu Devin: wrote delsel.el -Matthieu Moy: changed message.el +Matthieu Moy: changed gnus-msg.el message.el Max Froumentin: changed gnus-art.el mml.el Michael Albinus: wrote tramp-ftp.el tramp-smb.el and changed tramp.el tramp.texi tramp-vc.el tramp-util.el ange-ftp.el - files.el files.texi tramp-uu.el vc.el dired-x.el dired.el faq.texi - find-dired.el locate.el mini.texi rcompile.el tramp*.el trampver.el - woman.el + files.el files.texi nnml.el tramp-uu.el vc.el dired-x.el dired.el + faq.texi find-dired.el locate.el mini.texi rcompile.el tramp*.el + trampver.el woman.el Michael Ben-Gershon: changed acorn.h configure.in riscix1-1.h riscix1-2.h unexec.c Michael Cadilhac: changed blackbox.el rect.el subr.el zone.el +Michael Cook: changed gnus-sum.el + Michael D. Ernst: wrote reposition.el and changed dired-x.el uniquify.el ispell.el bibtex.el rmail.el dired.el simple.el dired-aux.el gud.el rmailsum.el bytecomp.el compare-w.el @@ -1697,9 +1768,9 @@ Michael Olson: changed erc.el erc-backend.el Makefile erc.texi erc-stamp.el erc-log.el erc-autoaway.el erc-identd.el erc-track.el erc-match.el erc-dcc.el erc-notify.el erc-goodies.el erc-ibuffer.el erc-list.el erc-pcomplete.el erc-spelling.el erc-bbdb.el erc-compat.el - erc-nicklist.el and 42 other files + erc-nicklist.el erc-*.el and 42 other files -Michael Piotrowski: changed ps-print.el +Michael Piotrowski: changed gnus-sum.el ps-print.el Michael R. Cook: changed gnus-topic.el gnus-art.el gnus-sum.el @@ -1712,8 +1783,8 @@ Michael Schierl: changed pgg-pgp.el Michael Schmidt: wrote modula2.el (public domain) -Michael Shields: changed gnus-art.el gnus-cite.el gnus-sum.el intel386.h - nndraft.el +Michael Shields: changed spam.el gnus-art.el gnus-sum.el gnus-cite.el + gnus-group.el gnus.el intel386.h nndraft.el pgg-def.el Michael Sperber [Mr. Preprocessor]: changed aix3-1.h aix4-2.h @@ -1727,7 +1798,7 @@ Michal Jankowski: changed insdel.c keyboard.c Michal Nazarewicz: changed ispell.el -Micha,Ak(Bl Cadilhac: changed ispell.el cus-edit.el dispnew.c ido.el info.el +Micha,Ak(Bl Cadilhac: changed ido.el ispell.el cus-edit.el dispnew.c info.el life.el lpr.el make-mode.el pong.el print.c process.c startup.el uni-input.el @@ -1794,7 +1865,7 @@ N. Raghavendra: changed timezone.el Nachum Dershowitz: wrote cal-hebrew.el Nagy Andras: wrote gnus-sieve.el -and changed imap.el +and changed imap.el gnus.el Nakaji Hiroyuki: changed mm-util.el @@ -1812,19 +1883,21 @@ Nelson H. F. Beebe: changed configure.in Nelson Jose Dos Santos Ferreira: changed nnsoup.el -Nevin Kapur: changed nnmail.el gnus-group.el gnus-sum.el gnus.el - nnbabyl.el nnfolder.el nnimap.el nnmbox.el nnmh.el nnml.el +Nevin Kapur: changed nnmail.el gnus-sum.el nnimap.el gnus-group.el + gnus.el nnbabyl.el nnfolder.el nnmbox.el nnmh.el nnml.el Niall Mansfield: changed etags.c Nick Roberts: wrote gdb-ui.el -and changed gud.el building.texi tooltip.el speedbar.el thumbs.el DEBUG - cc-mode.el frames.texi subr.el xt-mouse.el .gdbinit bindings.el +and changed gud.el building.texi tooltip.el speedbar.el bindings.el + thumbs.el DEBUG cc-mode.el frames.texi subr.el xt-mouse.el .gdbinit comint.el display.texi help-mode.el descr-text.el gud-display.pbm speedbar.texi tumme.el xdisp.c byte-run.el and 112 other files Nico Francois: changed w32fns.c w32inevt.c w32menu.c +Niklas Morberg: changed nnweb.el gnus-art.el nnimap.el spam.el + Noah Friedman: wrote eldoc.el rlogin.el rsz-mini.el type-break.el and changed comint.el emacs-buffer.gdb files.el mailabbrev.el sendmail.el subr.el timer.el yow.el battery.el complete.el config.in configure.in @@ -1838,7 +1911,7 @@ Noel Cragg: changed mh-junk.el Nozomu Ando: changed buffer.c mips.h pmax.h smtpmail.el sysselect.h unexelf.c unexmacosx.c -Nuutti Kotivuori: changed gnus-cache.el +Nuutti Kotivuori: changed gnus-sum.el flow-fill.el gnus-cache.el Odd Gripenstam: wrote dcl-mode.el @@ -1920,7 +1993,7 @@ Paul Stodghill: changed gnus-agent.el Pavel Jan,Bm(Bk: changed COPYING keyboard.c xterm.c xdisp.c Makefile.in process.c emacs.c lisp.h menu-bar.el ldap.el make-dist xfns.c buffer.c coding.c eval.c fileio.c flyspell.el fns.c indent.c callint.c - cus-start.el and 693 other files + cus-start.el and 703 other files Pavel Kobiakov: wrote flymake.el and changed flymake.texi @@ -1980,6 +2053,8 @@ Peter Seibel: changed cl-indent.el lisp-mode.el Peter Stephenson: wrote vcursor.el +Peter Von Der Ahe: changed gnus-ems.el + Peter Whaite: changed data.c Petri Kaurinkoski: changed configure.in iris4d.h irix6-0.h irix6-5.h @@ -2010,6 +2085,8 @@ and changed osf1.h alloc.c buffer.c callint.c data.c dispextern.h doc.c Raja R Harinath: changed nnml.el +Raja R. Harinath: changed gnus-salt.el + Rajappa Iyer: changed gnus-salt.el Rajesh Vaidheeswarran: wrote whitespace.el @@ -2037,16 +2114,19 @@ Ray Blaak: wrote delphi.el Raymond Scholz: wrote deuglify.el and changed gnus-art.el gnus-msg.el gnus.texi message.el nnmail.el + pgg-gpg.el Reiner Steib: wrote gmm-utils.el and changed gnus-art.el message.el gnus.texi gnus-sum.el gnus.el - gnus-group.el mml.el gnus-faq.texi gnus-score.el gnus-start.el - gnus-util.el gnus-msg.el message.texi gnus-agent.el mm-util.el files.el - spam-report.el nnweb.el spam.el deuglify.el mm-decode.el - and 161 other files + gnus-group.el gnus-faq.texi mml.el gnus-start.el gnus-util.el + gnus-msg.el gnus-score.el message.texi mm-util.el files.el + gnus-agent.el spam-report.el mm-decode.el nnweb.el spam.el deuglify.el + and 162 other files Remek Trzaska: changed gnus-ems.el +Remi Letot: changed nnmaildir.el + Renaud Rioboo: changed nnmail.el Ren,Ai(B Kyllingstad: changed pcomplete.el @@ -2072,7 +2152,7 @@ Richard M. Stallman: wrote [The original GNU emacs and numerous files] and changed keyboard.c files.el simple.el xterm.c xdisp.c rmail.el fileio.c process.c sysdep.c xfns.c buffer.c Makefile.in window.c configure.in subr.el startup.el emacs.c editfns.c sendmail.el info.el - dispnew.c and 1334 other files + dispnew.c and 1335 other files Richard Mlynarik: wrote cl-indent.el ebuff-menu.el ehelp.el env.c rfc822.el terminal.el yow.el @@ -2108,6 +2188,8 @@ and changed texinfmt.el page-ext.el emacs.tex emacs-lisp-intro.texi Robert Thorpe: changed cus-start.el +Roberto Rodr,Am(Bguez: changed ada-mode.texi widget.texi + Roderick Schertler: changed dgux.h dgux4.h gud.el sysdep.c Rodrigo Real: changed pt-br-refcard.tex pt-br-refcard.ps @@ -2137,7 +2219,7 @@ Romain Francoise: changed faq.texi dired-x.el ibuf-ext.el compile.el message.el puresize.h replace.el files.texi gnus-fun.el gnus.texi help-fns.el make-dist rcirc.el subr.el Makefile.in antlr-mode.el bookmark.el buffer.c comint.el diary-lib.el dired.el - and 121 other files + and 124 other files Roman Belenov: changed which-func.el @@ -2171,7 +2253,9 @@ Sam Steingold: wrote gulp.el midnight.el and changed cl-indent.el font-lock.el ange-ftp.el mouse.el tex-mode.el vc-cvs.el add-log.el bindings.el bookmark.el debug.el diary-lib.el dired.el pcvs.el sgml-mode.el simple.el browse-url.el buff-menu.el - bytecomp.el cc-mode.el compile.el etags.el and 94 other files + bytecomp.el cc-mode.el compile.el etags.el and 95 other files + +Samuel Tardieu: changed smime.el Sanghyuk Suh: changed mac-win.el macterm.c @@ -2190,12 +2274,16 @@ and changed mh-e.el mh-utils.el mh-seq.el mh-index.el mh-comp.el Schlumberger Technology Corporation: changed gud.el +Scott A Crosby: changed gnus-logic.el + Scott Byer: changed gnus-sum.el Scott Draves: wrote tq.el Scott M. Meyers: changed cmacexp.el +Sean Neakums: changed gnus-msg.el gnus-uu.el + Sean O'rourke: changed ibuf-ext.el Sebastian Kremer: wrote dired-aux.el dired-x.el dired.el ls-lisp.el @@ -2216,11 +2304,11 @@ Shawn M. Carey: wrote freebsd.h Shenghuo Zhu: wrote binhex.el mm-extern.el mm-partial.el mm-url.el mm-uu.el mml2015.el nnrss.el nnwarchive.el rfc1843.el uudecode.el webmail.el -and changed message.el gnus-art.el gnus-sum.el gnus-msg.el gnus.el +and changed gnus-art.el message.el gnus-sum.el gnus-msg.el gnus.el gnus-agent.el mm-decode.el mm-util.el gnus-group.el mml.el - gnus-start.el gnus-util.el nnfolder.el mm-view.el nnmail.el - nnslashdot.el gnus-xmas.el nntp.el gnus-topic.el rfc2047.el - dgnushack.el and 103 other files + gnus-start.el gnus-util.el nnfolder.el mm-view.el nnslashdot.el + nnmail.el nntp.el gnus-topic.el gnus-xmas.el rfc2047.el dgnushack.el + and 101 other files Shinichirou Sugou: changed etags.c @@ -2236,10 +2324,10 @@ Simon Josefsson: wrote dig.el dns-mode.el flow-fill.el fringe.el imap.el sieve-manage.el sieve-mode.el sieve.el smime.el starttls.el tls.el url-imap.el and changed message.el gnus-sum.el gnus-art.el smtpmail.el pgg.el - pgg-gpg.el gnus-agent.el mml2015.el mml.el mm-decode.el mml1991.el - gnus-group.el gnus-msg.el gnus.el pgg-pgp5.el gnus-cache.el - gnus-sieve.el browse-url.el gnus-int.el mail-source.el pgg-parse.el - and 91 other files + mml2015.el pgg-gpg.el gnus-agent.el mml.el mm-decode.el mml1991.el + gnus-group.el gnus-msg.el pgg-pgp5.el gnus-sieve.el gnus.el + browse-url.el gnus-int.el pgg-parse.el gnus-cache.el mail-source.el + and 89 other files Simon Leinen: changed smtpmail.el Makefile Makefile.in cm.c cm.h hpux9.h indent.c process.c sc.texinfo sgml-mode.el term.c xfns.c xmenu.c @@ -2259,6 +2347,8 @@ Slawomir Nowaczyk: changed python.el TUTORIAL.pl emacs.py flyspell.el Spencer Thomas: changed dabbrev.el emacsclient.c emacsserver.c gnus.texi server.el tcp.c unexec.c +Sriram Karra: changed message.el + Stanislav Shalunov: wrote uce.el Stefan Monnier: wrote bibtex.el cvs-status.el diff-mode.el log-edit.el @@ -2266,8 +2356,10 @@ Stefan Monnier: wrote bibtex.el cvs-status.el diff-mode.el log-edit.el reveal.el smerge-mode.el and changed vc.el font-lock.el pcvs.el newcomment.el subr.el lisp.h keyboard.c keymap.c tex-mode.el fill.el alloc.c compile.el files.el - regex.c easy-mmode.el simple.el info.el syntax.c xdisp.c vc-hooks.el - sh-script.el and 511 other files + regex.c easy-mmode.el simple.el info.el syntax.c vc-hooks.el xdisp.c + sh-script.el and 512 other files + +Steinar Bang: changed imap.el Stephan Stahl: changed which-func.el buff-menu.el buffer.c dired-x.texi ediff-mult.el @@ -2296,11 +2388,13 @@ Steve Nygard: changed unexnext.c Steve Strassman: wrote spook.el Steve Youngs: changed mh-utils.el mh-xemacs-compat.el dgnushack.el - mh-customize.el mh-e.el mh-comp.el mh-mime.el Makefile gnus-xmas.el - Makefile.in browse-url.el dns.el gnus-art.el gnus-sum.el gnus-util.el - lpath.el mh-seq.el .cvsignore em-unix.el gnus-async.el mail-source.el + mh-customize.el mh-e.el mh-comp.el mh-mime.el Makefile Makefile.in + browse-url.el gnus-art.el gnus-sum.el gnus-xmas.el lpath.el mh-seq.el + .cvsignore dns.el em-unix.el gnus-async.el gnus-util.el mail-source.el and 15 other files +Steven E. Harris: changed nnheader.el + Steven Huwig: changed emacs.py python.el Steven L. Baur: wrote earcon.el footnote.el gnus-audio.el gnus-setup.el @@ -2317,7 +2411,7 @@ Steven Tamm: changed macterm.c make-package mac.c macfns.c configure.in Stewart M. Clamen: wrote cal-mayan.el -Stuart D. Herring: changed minibuf.c +Stuart D. Herring: changed minibuf.c widget.texi Stuart Herring: changed isearch.el align.el allout.el comint.el edebug.el files.el @@ -2360,10 +2454,10 @@ Ted Lemon: changed emacs.c lastfile.c puresize.h Ted Phelps: changed mh-search.el mh-tool-bar.el Teodor Zlatanov: wrote gnus-registry.el spam-report.el -and changed spam.el gnus.el gnus-sum.el nnmail.el spam-stat.el - gnus-start.el gnus.texi gnus-group.el lpath.el nnbabyl.el nnfolder.el - nnimap.el nnmbox.el nnmh.el nnml.el replace.el simple.el basic.texi - building.texi commands.texi compile.el and 11 other files +and changed spam.el gnus.el gnus-sum.el nnmail.el gnus-start.el + spam-stat.el gnus.texi lpath.el nnbabyl.el nnfolder.el nnimap.el + nnmbox.el nnmh.el nnml.el replace.el simple.el basic.texi building.texi + commands.texi compile.el dig.el and 12 other files Terje Rosten: changed xfns.c version.el xterm.c xterm.h @@ -2431,7 +2525,7 @@ and changed subr.el Tomas Abrahamsson: wrote artist.el -Tommi Vainikainen: changed gnus-sum.el +Tommi Vainikainen: changed gnus-sum.el message.el Tomohiko Morioka: changed gnus-sum.el nnfolder.el nnmail.el nnmh.el nnml.el coding.c gnus-art.el gnus-ems.el gnus-mule.el nnheader.el @@ -2455,10 +2549,10 @@ Triet Hoai Lai: changed vntelex.el viet-util.el vietnamese.el Trung Tran-Duc: changed nntp.el -Tsuchiya Masatoshi: changed gnus-art.el nneething.el mm-view.el - gnus-sum.el nnheader.el nnml.el gnus-agent.el gnus-cache.el gnus-msg.el - lpath.el nndiary.el nnfolder.el nnimap.el nnmaildir.el pgg.el - rfc2047.el +Tsuchiya Masatoshi: changed gnus-art.el gnus-sum.el nneething.el + mm-view.el gnus-group.el nnheader.el nnml.el gnus-agent.el + gnus-cache.el gnus-msg.el lpath.el nndiary.el nnfolder.el nnimap.el + nnmaildir.el pgg.el rfc2047.el Tsugutomo Enami: changed nnheader.el regex.c regex.h simple.el @@ -2479,6 +2573,8 @@ and changed files.el Vadim Nasardinov: changed allout.el +Vagn Johansen: changed gnus-cache.el + Valery Alexeev: changed cyril-util.el cyrillic.el Vasily Korytov: changed cperl-mode.el gnus-art.el gnus-dired.el @@ -2502,6 +2598,8 @@ Vivek Dasmohapatra: changed emacs.c sh-script.el xterm.c xterm.h Vladimir Alexiev: changed arc-mode.el nnvirtual.el tmm.el +Vladimir Volovich: changed smime.el + Walter C. Pelissero: changed browse-url.el url-methods.el Wayne Mesard: wrote hscroll.el @@ -2555,14 +2653,14 @@ Wolfram Fenske: changed nnimap.el Wolfram Gloger: changed emacs.c -Xavier Maillard: changed gnus-faq.texi gnus-score.el +Xavier Maillard: changed gnus-faq.texi gnus-score.el spam.el Yagi Tatsuya: changed gnus-art.el gnus-start.el Yamamoto Mitsuharu: changed macterm.c macfns.c mac-win.el mac.c macterm.h - macgui.h image.c macmenu.c macselect.c keyboard.c makefile.MPW xdisp.c + macgui.h image.c macmenu.c macselect.c keyboard.c xdisp.c makefile.MPW emacs.c config.h macos.texi xfaces.c Makefile.in darwin.h dispextern.h - w32term.c INSTALL and 66 other files + dispnew.c w32term.c and 69 other files Yann Dirson: changed imenu.el @@ -2584,8 +2682,6 @@ Zoltan Kemenczy: changed gud.el Zoran Milojevic: changed avoid.el -,AI(Bric Jacoboni: changed fr-refcard.tex - Local Variables: coding: iso-2022-7bit End: diff --git a/ChangeLog b/ChangeLog index 41296efb112..b777b1e820c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-10-27 Chong Yidong + + * README: Bump version number to 22.0.90. + + * AUTHORS: Regenerate. + + * configure: Regenerate. + 2006-10-23 Michael Kifer * viper-cmd.el (viper-prefix-arg-com): define gg as G0 diff --git a/README b/README index 927f4f98b46..507e3101839 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -This directory tree holds version 22.0.50 of GNU Emacs, the extensible, +This directory tree holds version 22.0.90 of GNU Emacs, the extensible, customizable, self-documenting real-time display editor. You may encounter bugs in this release. If you do, please report diff --git a/configure b/configure index 2fad7c5c3fa..d677e57f04f 100755 --- a/configure +++ b/configure @@ -988,7 +988,7 @@ esac else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi - cd $ac_popdir + cd "$ac_popdir" done fi @@ -3283,8 +3283,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3342,8 +3341,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3459,8 +3457,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3514,8 +3511,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3560,8 +3556,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3605,8 +3600,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -3994,8 +3988,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4623,8 +4616,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4850,8 +4842,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4880,8 +4871,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -4951,8 +4941,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5004,8 +4993,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5076,8 +5064,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5129,8 +5116,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5204,8 +5190,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5375,8 +5360,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5445,8 +5429,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5600,8 +5583,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5808,8 +5790,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -5951,8 +5932,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6071,8 +6051,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6237,8 +6216,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6301,8 +6279,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6375,8 +6352,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6462,8 +6438,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6536,8 +6511,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6607,8 +6581,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6667,8 +6640,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6737,8 +6709,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6799,8 +6770,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -6866,8 +6836,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7013,8 +6982,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7078,8 +7046,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7144,8 +7111,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7191,8 +7157,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7266,8 +7231,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7332,8 +7296,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7377,8 +7340,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7449,8 +7411,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7500,8 +7461,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7572,8 +7532,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7623,8 +7582,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7695,8 +7653,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7746,8 +7703,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7818,8 +7774,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7869,8 +7824,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7941,8 +7895,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -7992,8 +7945,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -8080,8 +8032,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -8187,8 +8138,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -8248,8 +8198,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -8373,6 +8322,7 @@ fi echo "$as_me:$LINENO: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 +ac_path_x_has_been_run=yes # Check whether --with-x or --without-x was given. if test "${with_x+set}" = set; then @@ -8465,7 +8415,7 @@ ac_x_header_dirs=' /usr/openwin/share/include' if test "$ac_x_includes" = no; then - # Guess where to find include files, by looking for Intrinsic.h. + # Guess where to find include files, by looking for a specified header file. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ @@ -8473,7 +8423,7 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include +#include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 @@ -8500,7 +8450,7 @@ else sed 's/^/| /' conftest.$ac_ext >&5 for ac_dir in $ac_x_header_dirs; do - if test -r "$ac_dir/X11/Intrinsic.h"; then + if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi @@ -8514,18 +8464,18 @@ if test "$ac_x_libraries" = no; then # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS - LIBS="-lXt $LIBS" + LIBS="-lX11 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include +#include int main () { -XtMalloc (0) +XrmInitialize () ; return 0; } @@ -8539,8 +8489,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -8564,7 +8513,7 @@ for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl; do - if test -r $ac_dir/libXt.$ac_extension; then + if test -r $ac_dir/libX11.$ac_extension; then ac_x_libraries=$ac_dir break 2 fi @@ -8600,8 +8549,12 @@ else # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" - echo "$as_me:$LINENO: result: libraries $x_libraries, headers $x_includes" >&5 -echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 + # It might be that x_includes is empty (headers are found in the + # standard search path. Then output the corresponding message + ac_out_x_includes=$x_includes + test "x$x_includes" = x && ac_out_x_includes="in standard search path" + echo "$as_me:$LINENO: result: libraries $x_libraries, headers $ac_out_x_includes" >&5 +echo "${ECHO_T}libraries $x_libraries, headers $ac_out_x_includes" >&6 fi if test "$no_x" = yes; then @@ -8690,8 +8643,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -8927,8 +8879,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9023,8 +8974,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9083,8 +9033,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9168,8 +9117,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9353,8 +9301,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9606,8 +9553,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9674,8 +9620,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9744,8 +9689,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9830,8 +9774,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9908,8 +9851,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -9963,8 +9905,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10033,8 +9974,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10138,8 +10078,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10206,8 +10145,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10277,8 +10215,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10519,8 +10456,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10629,8 +10565,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10733,8 +10668,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10812,8 +10746,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -10967,8 +10900,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11042,8 +10974,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11115,8 +11046,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11198,8 +11128,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11278,8 +11207,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11350,8 +11278,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11420,8 +11347,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11494,8 +11420,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11618,8 +11543,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11721,8 +11645,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11802,8 +11725,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -11871,8 +11793,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12017,8 +11938,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12127,8 +12047,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12273,8 +12192,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12381,8 +12299,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12536,8 +12453,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12612,8 +12528,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12761,8 +12676,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12839,8 +12753,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -12987,8 +12900,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13061,8 +12973,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13263,8 +13174,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13337,8 +13247,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13483,8 +13392,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13560,8 +13468,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13624,8 +13531,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13706,8 +13612,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13848,8 +13753,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -13994,8 +13898,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -14071,8 +13974,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -14145,8 +14047,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -14301,8 +14202,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -14368,8 +14268,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -14629,8 +14528,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -14697,8 +14595,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -14850,8 +14747,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15035,8 +14931,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15363,8 +15258,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15465,8 +15359,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15539,8 +15432,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15619,8 +15511,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15689,8 +15580,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15758,8 +15648,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15833,8 +15722,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -15938,8 +15826,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -16014,8 +15901,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -16167,8 +16053,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -16236,8 +16121,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -16414,8 +16298,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -16491,8 +16374,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -16646,8 +16528,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -16798,8 +16679,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -16950,8 +16830,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17093,8 +16972,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17138,8 +17016,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17285,8 +17162,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17330,8 +17206,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17396,8 +17271,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17487,8 +17361,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17675,8 +17548,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17746,8 +17618,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17816,8 +17687,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -17949,8 +17819,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18052,8 +17921,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18122,8 +17990,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18230,8 +18097,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18334,8 +18200,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18411,8 +18276,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18516,8 +18380,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18609,8 +18472,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18675,8 +18537,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18742,8 +18603,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18853,8 +18713,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -18919,8 +18778,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19000,8 +18858,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19074,8 +18931,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19148,8 +19004,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19222,8 +19077,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19297,8 +19151,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19370,8 +19223,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19446,8 +19298,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19519,8 +19370,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19593,8 +19443,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19744,8 +19593,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -19891,8 +19739,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -20038,8 +19885,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -20196,8 +20042,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -20343,8 +20188,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -20490,8 +20334,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -20649,8 +20492,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -20808,8 +20650,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -20998,8 +20839,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21072,8 +20912,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21141,8 +20980,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21188,8 +21026,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21263,8 +21100,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21328,8 +21164,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21467,8 +21302,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21529,8 +21363,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21675,8 +21508,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -21832,8 +21664,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22004,8 +21835,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22073,8 +21903,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22259,8 +22088,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22302,18 +22130,24 @@ else ac_cv_func_fork_works=cross else cat >conftest.$ac_ext <<_ACEOF -/* By Ruediger Kuhlmann. */ - #include - #if HAVE_UNISTD_H - # include - #endif - /* Some systems only have a dummy stub for fork() */ - int main () - { - if (fork() < 0) - exit (1); - exit (0); - } +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ + + /* By Ruediger Kuhlmann. */ + if (fork() < 0) + exit (1); + exit (0); + + ; + return 0; +} _ACEOF rm -f conftest$ac_exeext if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 @@ -22553,8 +22387,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22619,8 +22452,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22683,8 +22515,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22750,8 +22581,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22792,8 +22622,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -22860,8 +22689,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? @@ -23981,11 +23809,6 @@ esac *) ac_INSTALL=$ac_top_builddir$INSTALL ;; esac - if test x"$ac_file" != x-; then - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - rm -f "$ac_file" - fi # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ @@ -24024,6 +23847,12 @@ echo "$as_me: error: cannot find input file: $f" >&2;} fi;; esac done` || { (exit 1); exit 1; } + + if test x"$ac_file" != x-; then + { echo "$as_me:$LINENO: creating $ac_file" >&5 +echo "$as_me: creating $ac_file" >&6;} + rm -f "$ac_file" + fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub From f6b88dd6b98350c3fb458ecf64a2c73e9f97f2c6 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 15:41:31 +0000 Subject: [PATCH 72/78] * version.el (emacs-version): Bump version number to 22.0.90. --- lisp/ChangeLog | 4 ++++ lisp/version.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 661a54aa4cb..896fec114bb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-10-27 Chong Yidong + + * version.el (emacs-version): Bump version number to 22.0.90. + 2006-10-26 John W. Eaton * progmodes/octave-inf.el (inferior-octave-has-built-in-variables): diff --git a/lisp/version.el b/lisp/version.el index e70bc45bf43..3a7917fb2c7 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -27,7 +27,7 @@ ;;; Code: -(defconst emacs-version "22.0.50" "\ +(defconst emacs-version "22.0.90" "\ Version numbers of this version of Emacs.") (defconst emacs-major-version From 20d9982426c9b4055dbfd9ae363f98dd7d0cd9d2 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 15:42:50 +0000 Subject: [PATCH 73/78] * emacs.texi: Bump version number to 22.0.90. --- man/emacs.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/emacs.texi b/man/emacs.texi index eb16d633d6d..838e0c4d512 100644 --- a/man/emacs.texi +++ b/man/emacs.texi @@ -5,7 +5,7 @@ @c The edition number appears in several places in this file @set EDITION Sixteenth -@set EMACSVER 22.1 +@set EMACSVER 22.0.90 @copying This is the @value{EDITION} edition of the @cite{GNU Emacs Manual}, From 5c2646312151aaa169e5b8eb07b2372c1fd82eea Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 15:43:18 +0000 Subject: [PATCH 74/78] * elisp.texi: Bump version number to 22.0.90. --- lispref/elisp.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lispref/elisp.texi b/lispref/elisp.texi index 9a047dbb332..367932ab13c 100644 --- a/lispref/elisp.texi +++ b/lispref/elisp.texi @@ -7,7 +7,7 @@ @c Version of the manual and of Emacs. @c Please remember to update the edition number in README as well. @set VERSION 2.9 -@set EMACSVER 22.1 +@set EMACSVER 22.0.90 @dircategory Emacs @direntry From fbd9dd55cd5dffd2a14534968135bfc2aeeb2d61 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 15:44:44 +0000 Subject: [PATCH 75/78] Regenerate. --- lisp/ldefs-boot.el | 2166 ++++++++++++++++++++++++-------------------- 1 file changed, 1197 insertions(+), 969 deletions(-) diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 621bfa0f066..6085aa3b1fc 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -4,7 +4,7 @@ ;;;### (autoloads (5x5-crack 5x5-crack-xor-mutate 5x5-crack-mutating-best ;;;;;; 5x5-crack-mutating-current 5x5-crack-randomly 5x5) "5x5" -;;;;;; "play/5x5.el" (17383 32181)) +;;;;;; "play/5x5.el" (17385 8495)) ;;; Generated autoloads from play/5x5.el (autoload (quote 5x5) "5x5" "\ @@ -63,14 +63,14 @@ should return a grid vector array that is the new solution. ;;;*** -;;;### (autoloads nil "abbrev" "abbrev.el" (17494 22057)) +;;;### (autoloads nil "abbrev" "abbrev.el" (17495 43953)) ;;; Generated autoloads from abbrev.el (put 'abbrev-mode 'safe-local-variable 'booleanp) ;;;*** ;;;### (autoloads (list-one-abbrev-table) "abbrevlist" "abbrevlist.el" -;;;;;; (17404 53184)) +;;;;;; (17408 40148)) ;;; Generated autoloads from abbrevlist.el (autoload (quote list-one-abbrev-table) "abbrevlist" "\ @@ -81,7 +81,7 @@ Display alphabetical listing of ABBREV-TABLE in buffer OUTPUT-BUFFER. ;;;*** ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" -;;;;;; (17578 34778)) +;;;;;; (17721 20491)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload (quote ada-add-extensions) "ada-mode" "\ @@ -142,7 +142,7 @@ If you use ada-xref.el: ;;;*** ;;;### (autoloads (ada-header) "ada-stmt" "progmodes/ada-stmt.el" -;;;;;; (17397 61560)) +;;;;;; (17394 12937)) ;;; Generated autoloads from progmodes/ada-stmt.el (autoload (quote ada-header) "ada-stmt" "\ @@ -153,7 +153,7 @@ Insert a descriptive header at the top of the file. ;;;*** ;;;### (autoloads (ada-find-file) "ada-xref" "progmodes/ada-xref.el" -;;;;;; (17397 61560)) +;;;;;; (17717 4883)) ;;; Generated autoloads from progmodes/ada-xref.el (autoload (quote ada-find-file) "ada-xref" "\ @@ -168,7 +168,7 @@ Completion is available. ;;;;;; change-log-mode 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" -;;;;;; "add-log.el" (17515 39525)) +;;;;;; "add-log.el" (17683 63309)) ;;; Generated autoloads from add-log.el (defvar add-log-current-defun-function nil "\ @@ -176,13 +176,13 @@ Completion is available. It is used by `add-log-current-defun' in preference to built-in rules. Returns function's name as a string, or nil if outside a function.") -(custom-autoload (quote add-log-current-defun-function) "add-log") +(custom-autoload (quote add-log-current-defun-function) "add-log" t) (defvar add-log-full-name nil "\ *Full name of user, for inclusion in ChangeLog daily headers. This defaults to the value returned by the function `user-full-name'.") -(custom-autoload (quote add-log-full-name) "add-log") +(custom-autoload (quote add-log-full-name) "add-log" t) (defvar add-log-mailing-address nil "\ Email addresses of user, for inclusion in ChangeLog headers. @@ -191,7 +191,7 @@ being a simple string, this value can also be a list. All elements will be recognized as referring to the same user; when creating a new ChangeLog entry, one element will be chosen at random.") -(custom-autoload (quote add-log-mailing-address) "add-log") +(custom-autoload (quote add-log-mailing-address) "add-log" t) (autoload (quote prompt-for-change-log-name) "add-log" "\ Prompt for a change log name. @@ -306,7 +306,7 @@ Fix any old-style date entries in the current log file to default format. ;;;### (autoloads (defadvice ad-activate ad-add-advice ad-disable-advice ;;;;;; ad-enable-advice ad-default-compilation-action ad-redefinition-action) -;;;;;; "advice" "emacs-lisp/advice.el" (17578 34774)) +;;;;;; "advice" "emacs-lisp/advice.el" (17701 26815)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action (quote warn) "\ @@ -320,7 +320,7 @@ old original, or keep it and raise an error. The values `accept', `discard', it additionally prints a warning message. All other values will be interpreted as `error'.") -(custom-autoload (quote ad-redefinition-action) "advice") +(custom-autoload (quote ad-redefinition-action) "advice" t) (defvar ad-default-compilation-action (quote maybe) "\ *Defines whether to compile advised definitions during activation. @@ -331,7 +331,7 @@ advised function is compiled or a built-in function. Every other value will be interpreted as `maybe'. This variable will only be considered if the COMPILE argument of `ad-activate' was supplied as nil.") -(custom-autoload (quote ad-default-compilation-action) "advice") +(custom-autoload (quote ad-default-compilation-action) "advice" t) (autoload (quote ad-enable-advice) "advice" "\ Enables the advice of FUNCTION with CLASS and NAME. @@ -434,7 +434,7 @@ See Info node `(elisp)Advising Functions' for comprehensive documentation. ;;;### (autoloads (align-newline-and-indent align-unhighlight-rule ;;;;;; align-highlight-rule align-current align-entire align-regexp -;;;;;; align) "align" "align.el" (17383 32089)) +;;;;;; align) "align" "align.el" (17385 8481)) ;;; Generated autoloads from align.el (autoload (quote align) "align" "\ @@ -524,7 +524,7 @@ A replacement function for `newline-and-indent', aligning as it goes. ;;;*** ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" -;;;;;; (17582 28845)) +;;;;;; (17707 53738)) ;;; Generated autoloads from allout.el (put (quote allout-show-bodies) (quote safe-local-variable) (if (fboundp (quote booleanp)) (quote booleanp) (quote (lambda (x) (member x (quote (t nil))))))) @@ -627,7 +627,9 @@ The bindings are dictated by the `allout-keybindings-list' and Topic-oriented Killing and Yanking: ---------------------------------- \\[allout-kill-topic] allout-kill-topic Kill current topic, including offspring. -\\[allout-kill-line] allout-kill-line Like kill-line, but reconciles numbering, etc. +\\[allout-copy-topic-as-kill] allout-copy-topic-as-kill Copy current topic, including offspring. +\\[allout-kill-line] allout-kill-line kill-line, attending to outline structure. +\\[allout-copy-line-as-kill] allout-copy-line-as-kill Copy line but don't delete it. \\[allout-yank] allout-yank Yank, adjusting depth of yanked topic to depth of heading if yanking into bare topic heading (ie, prefix sans text). @@ -778,7 +780,7 @@ setup for auto-startup. ;;;*** ;;;### (autoloads (ange-ftp-hook-function ange-ftp-reread-dir) "ange-ftp" -;;;;;; "net/ange-ftp.el" (17383 32174)) +;;;;;; "net/ange-ftp.el" (17385 8494)) ;;; Generated autoloads from net/ange-ftp.el (defalias (quote ange-ftp-re-read-dir) (quote ange-ftp-reread-dir)) @@ -800,7 +802,7 @@ Not documented ;;;*** ;;;### (autoloads (animate-birthday-present animate-sequence animate-string) -;;;;;; "animate" "play/animate.el" (17383 32181)) +;;;;;; "animate" "play/animate.el" (17385 8495)) ;;; Generated autoloads from play/animate.el (autoload (quote animate-string) "animate" "\ @@ -828,7 +830,7 @@ You can specify the one's name by NAME; the default value is \"Sarah\". ;;;*** ;;;### (autoloads (ansi-color-process-output ansi-color-for-comint-mode-on) -;;;;;; "ansi-color" "ansi-color.el" (17383 32090)) +;;;;;; "ansi-color" "ansi-color.el" (17385 8481)) ;;; Generated autoloads from ansi-color.el (autoload (quote ansi-color-for-comint-mode-on) "ansi-color" "\ @@ -854,7 +856,7 @@ This is a good function to put in `comint-output-filter-functions'. ;;;*** ;;;### (autoloads (antlr-set-tabs antlr-mode antlr-show-makefile-rules) -;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17484 52436)) +;;;;;; "antlr-mode" "progmodes/antlr-mode.el" (17485 5461)) ;;; Generated autoloads from progmodes/antlr-mode.el (autoload (quote antlr-show-makefile-rules) "antlr-mode" "\ @@ -893,7 +895,7 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. ;;;### (autoloads (appt-activate appt-make-list appt-delete appt-add ;;;;;; appt-display-diary appt-display-duration appt-display-mode-line ;;;;;; appt-msg-window appt-visible appt-audible appt-message-warning-time -;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17578 34774)) +;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17686 46252)) ;;; Generated autoloads from calendar/appt.el (defvar appt-issue-message t "\ @@ -901,47 +903,47 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. To be detected, the diary entry must have the format described in the documentation of the function `appt-check'.") -(custom-autoload (quote appt-issue-message) "appt") +(custom-autoload (quote appt-issue-message) "appt" t) (defvar appt-message-warning-time 12 "\ *Time in minutes before an appointment that the warning begins.") -(custom-autoload (quote appt-message-warning-time) "appt") +(custom-autoload (quote appt-message-warning-time) "appt" t) (defvar appt-audible t "\ *Non-nil means beep to indicate appointment.") -(custom-autoload (quote appt-audible) "appt") +(custom-autoload (quote appt-audible) "appt" t) (defvar appt-visible t "\ *Non-nil means display appointment message in echo area. This variable is only relevant if `appt-msg-window' is nil.") -(custom-autoload (quote appt-visible) "appt") +(custom-autoload (quote appt-visible) "appt" t) (defvar appt-msg-window t "\ *Non-nil means display appointment message in another window. If non-nil, this variable overrides `appt-visible'.") -(custom-autoload (quote appt-msg-window) "appt") +(custom-autoload (quote appt-msg-window) "appt" t) (defvar appt-display-mode-line t "\ *Non-nil means display minutes to appointment and time on the mode line. This is in addition to any other display of appointment messages.") -(custom-autoload (quote appt-display-mode-line) "appt") +(custom-autoload (quote appt-display-mode-line) "appt" t) (defvar appt-display-duration 10 "\ *The number of seconds an appointment message is displayed. Only relevant if reminders are to be displayed in their own window.") -(custom-autoload (quote appt-display-duration) "appt") +(custom-autoload (quote appt-display-duration) "appt" t) (defvar appt-display-diary t "\ *Non-nil displays the diary when the appointment list is first initialized. This will occur at midnight when the appointment list is updated.") -(custom-autoload (quote appt-display-diary) "appt") +(custom-autoload (quote appt-display-diary) "appt" t) (autoload (quote appt-add) "appt" "\ Add an appointment for today at NEW-APPT-TIME with message NEW-APPT-MSG. @@ -981,7 +983,7 @@ ARG is positive, otherwise off. ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property ;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos" -;;;;;; "apropos.el" (17484 52422)) +;;;;;; "apropos.el" (17712 850)) ;;; Generated autoloads from apropos.el (autoload (quote apropos-read-pattern) "apropos" "\ @@ -1077,8 +1079,8 @@ Returns list of symbols and documentation found. ;;;*** -;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17578 -;;;;;; 34770)) +;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17601 +;;;;;; 9091)) ;;; Generated autoloads from arc-mode.el (autoload (quote archive-mode) "arc-mode" "\ @@ -1098,7 +1100,7 @@ archive. ;;;*** -;;;### (autoloads (array-mode) "array" "array.el" (17358 42654)) +;;;### (autoloads (array-mode) "array" "array.el" (17360 11432)) ;;; Generated autoloads from array.el (autoload (quote array-mode) "array" "\ @@ -1169,8 +1171,8 @@ Entering array mode calls the function `array-mode-hook'. ;;;*** -;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17521 -;;;;;; 64539)) +;;;### (autoloads (artist-mode) "artist" "textmodes/artist.el" (17520 +;;;;;; 49737)) ;;; Generated autoloads from textmodes/artist.el (autoload (quote artist-mode) "artist" "\ @@ -1375,8 +1377,8 @@ Keymap summary ;;;*** -;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17487 -;;;;;; 53546)) +;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17495 +;;;;;; 43955)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload (quote asm-mode) "asm-mode" "\ @@ -1404,7 +1406,7 @@ Special commands: ;;;*** ;;;### (autoloads (auto-show-mode auto-show-mode) "auto-show" "obsolete/auto-show.el" -;;;;;; (16221 3779)) +;;;;;; (17075 55468)) ;;; Generated autoloads from obsolete/auto-show.el (defvar auto-show-mode nil "\ @@ -1420,7 +1422,7 @@ This command is obsolete. ;;;*** ;;;### (autoloads (autoarg-kp-mode autoarg-mode) "autoarg" "autoarg.el" -;;;;;; (17383 32090)) +;;;;;; (17385 8482)) ;;; Generated autoloads from autoarg.el (defvar autoarg-mode nil "\ @@ -1429,6 +1431,8 @@ See the command `autoarg-mode' for a description of this minor-mode.") (custom-autoload (quote autoarg-mode) "autoarg") +(put (quote autoarg-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote autoarg-mode) "autoarg" "\ Toggle Autoarg minor mode globally. With ARG, turn Autoarg mode on if ARG is positive, off otherwise. @@ -1459,6 +1463,8 @@ use either \\[customize] or the function `autoarg-kp-mode'.") (custom-autoload (quote autoarg-kp-mode) "autoarg") +(put (quote autoarg-kp-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote autoarg-kp-mode) "autoarg" "\ Toggle Autoarg-KP minor mode globally. With ARG, turn Autoarg mode on if ARG is positive, off otherwise. @@ -1473,7 +1479,7 @@ This is similar to \\[autoarg-mode] but rebinds the keypad keys `kp-1' ;;;*** ;;;### (autoloads (autoconf-mode) "autoconf" "progmodes/autoconf.el" -;;;;;; (17397 61561)) +;;;;;; (17394 12937)) ;;; Generated autoloads from progmodes/autoconf.el (autoload (quote autoconf-mode) "autoconf" "\ @@ -1484,7 +1490,7 @@ Major mode for editing Autoconf configure.in files. ;;;*** ;;;### (autoloads (auto-insert-mode define-auto-insert auto-insert) -;;;;;; "autoinsert" "autoinsert.el" (17383 32090)) +;;;;;; "autoinsert" "autoinsert.el" (17704 4325)) ;;; Generated autoloads from autoinsert.el (autoload (quote auto-insert) "autoinsert" "\ @@ -1504,9 +1510,10 @@ or if CONDITION had no actions, after all other CONDITIONs. Non-nil if Auto-Insert mode is enabled. See the command `auto-insert-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `auto-insert-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `auto-insert-mode'.") -(custom-autoload (quote auto-insert-mode) "autoinsert") +(custom-autoload (quote auto-insert-mode) "autoinsert" nil) (autoload (quote auto-insert-mode) "autoinsert" "\ Toggle Auto-insert mode. @@ -1522,7 +1529,7 @@ insert a template for the file depending on the mode of the buffer. ;;;### (autoloads (batch-update-autoloads update-directory-autoloads ;;;;;; update-file-autoloads) "autoload" "emacs-lisp/autoload.el" -;;;;;; (17590 36007)) +;;;;;; (17601 9092)) ;;; Generated autoloads from emacs-lisp/autoload.el (autoload (quote update-file-autoloads) "autoload" "\ @@ -1557,7 +1564,7 @@ Calls `update-directory-autoloads' on the command line arguments. ;;;### (autoloads (global-auto-revert-mode turn-on-auto-revert-tail-mode ;;;;;; auto-revert-tail-mode turn-on-auto-revert-mode auto-revert-mode) -;;;;;; "autorevert" "autorevert.el" (17503 24305)) +;;;;;; "autorevert" "autorevert.el" (17515 24179)) ;;; Generated autoloads from autorevert.el (autoload (quote auto-revert-mode) "autorevert" "\ @@ -1613,6 +1620,8 @@ use either \\[customize] or the function `global-auto-revert-mode'.") (custom-autoload (quote global-auto-revert-mode) "autorevert") +(put (quote global-auto-revert-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote global-auto-revert-mode) "autorevert" "\ Revert any buffer when file on disk changes. @@ -1625,7 +1634,7 @@ Use `auto-revert-mode' to revert a particular buffer. ;;;*** ;;;### (autoloads (mouse-avoidance-mode mouse-avoidance-mode) "avoid" -;;;;;; "avoid.el" (17503 24305)) +;;;;;; "avoid.el" (17632 41885)) ;;; Generated autoloads from avoid.el (defvar mouse-avoidance-mode nil "\ @@ -1634,7 +1643,7 @@ See function `mouse-avoidance-mode' for possible values. Setting this variable directly does not take effect; use either \\[customize] or the function `mouse-avoidance-mode'.") -(custom-autoload (quote mouse-avoidance-mode) "avoid") +(custom-autoload (quote mouse-avoidance-mode) "avoid" nil) (autoload (quote mouse-avoidance-mode) "avoid" "\ Set cursor avoidance mode to MODE. @@ -1666,7 +1675,7 @@ definition of \"random distance\".) ;;;*** ;;;### (autoloads (backquote) "backquote" "emacs-lisp/backquote.el" -;;;;;; (17383 32135)) +;;;;;; (17385 8489)) ;;; Generated autoloads from emacs-lisp/backquote.el (autoload (quote backquote) "backquote" "\ @@ -1691,7 +1700,7 @@ Vectors work just like lists. Nested backquotes are permitted. ;;;*** ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" -;;;;;; (17515 39525)) +;;;;;; (17515 24179)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1710,6 +1719,8 @@ use either \\[customize] or the function `display-battery-mode'.") (custom-autoload (quote display-battery-mode) "battery") +(put (quote display-battery-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote display-battery-mode) "battery" "\ Display battery status information in the mode line. The text being displayed in the mode line is controlled by the variables @@ -1722,7 +1733,7 @@ seconds. ;;;*** ;;;### (autoloads (benchmark benchmark-run-compiled benchmark-run) -;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17383 32135)) +;;;;;; "benchmark" "emacs-lisp/benchmark.el" (17385 8489)) ;;; Generated autoloads from emacs-lisp/benchmark.el (autoload (quote benchmark-run) "benchmark" "\ @@ -1754,8 +1765,8 @@ non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17578 -;;;;;; 34779)) +;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17531 +;;;;;; 7385)) ;;; Generated autoloads from textmodes/bibtex.el (autoload (quote bibtex-mode) "bibtex" "\ @@ -1817,7 +1828,7 @@ if that value is non-nil. ;;;### (autoloads (binhex-decode-region binhex-decode-region-external ;;;;;; binhex-decode-region-internal) "binhex" "gnus/binhex.el" -;;;;;; (17383 32153)) +;;;;;; (17385 8492)) ;;; Generated autoloads from gnus/binhex.el (defconst binhex-begin-line "^:...............................................................$") @@ -1840,8 +1851,8 @@ Binhex decode region between START and END. ;;;*** -;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17383 -;;;;;; 32181)) +;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17385 +;;;;;; 8495)) ;;; Generated autoloads from play/blackbox.el (autoload (quote blackbox) "blackbox" "\ @@ -1963,7 +1974,7 @@ a reflection. ;;;### (autoloads (bookmark-bmenu-list bookmark-load bookmark-save ;;;;;; bookmark-write bookmark-delete bookmark-insert bookmark-rename ;;;;;; bookmark-insert-location bookmark-relocate bookmark-jump -;;;;;; bookmark-set) "bookmark" "bookmark.el" (17383 32091)) +;;;;;; bookmark-set) "bookmark" "bookmark.el" (17385 8482)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-map "rb" 'bookmark-jump) (define-key ctl-x-map "rm" 'bookmark-set) @@ -2153,7 +2164,7 @@ deletion, or > if it is flagged for displaying. ;;;;;; 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-galeon-program browse-url-firefox-program browse-url-browser-function) -;;;;;; "browse-url" "net/browse-url.el" (17521 64538)) +;;;;;; "browse-url" "net/browse-url.el" (17520 49736)) ;;; Generated autoloads from net/browse-url.el (defvar browse-url-browser-function (cond ((memq system-type (quote (windows-nt ms-dos cygwin))) (quote browse-url-default-windows-browser)) ((memq system-type (quote (darwin))) (quote browse-url-default-macosx-browser)) (t (quote browse-url-default-browser))) "\ @@ -2484,8 +2495,8 @@ Default to the URL around or before point. ;;;*** -;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17383 -;;;;;; 32181)) +;;;### (autoloads (snarf-bruces bruce) "bruce" "play/bruce.el" (17385 +;;;;;; 8495)) ;;; Generated autoloads from play/bruce.el (autoload (quote bruce) "bruce" "\ @@ -2501,7 +2512,7 @@ Return a vector containing the lines from `bruce-phrases-file'. ;;;*** ;;;### (autoloads (bs-show bs-customize bs-cycle-previous bs-cycle-next) -;;;;;; "bs" "bs.el" (17397 61539)) +;;;;;; "bs" "bs.el" (17395 27411)) ;;; Generated autoloads from bs.el (autoload (quote bs-cycle-next) "bs" "\ @@ -2542,8 +2553,8 @@ name of buffer configuration. ;;;*** ;;;### (autoloads (insert-text-button make-text-button insert-button -;;;;;; make-button define-button-type) "button" "button.el" (17383 -;;;;;; 32092)) +;;;;;; make-button define-button-type) "button" "button.el" (17385 +;;;;;; 8482)) ;;; Generated autoloads from button.el (defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ @@ -2631,7 +2642,7 @@ Also see `make-text-button'. ;;;;;; batch-byte-compile-if-not-done display-call-tree byte-compile ;;;;;; compile-defun byte-compile-file byte-recompile-directory ;;;;;; byte-force-recompile byte-compile-warnings-safe-p) "bytecomp" -;;;;;; "emacs-lisp/bytecomp.el" (17582 35542)) +;;;;;; "emacs-lisp/bytecomp.el" (17582 40396)) ;;; Generated autoloads from emacs-lisp/bytecomp.el (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) (put 'byte-compile-dynamic-docstrings 'safe-local-variable 'booleanp) @@ -2735,7 +2746,7 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17397 61545)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17386 33146)) ;;; Generated autoloads from calendar/cal-dst.el (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) @@ -2745,7 +2756,7 @@ and corresponding effects. ;;;*** ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" -;;;;;; (17397 61545)) +;;;;;; (17386 33146)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ @@ -2760,13 +2771,13 @@ from the cursor position. ;;;### (autoloads (defmath calc-embedded-activate calc-embedded calc-grab-rectangle ;;;;;; calc-grab-region full-calc-keypad calc-keypad calc-eval quick-calc ;;;;;; full-calc calc calc-dispatch calc-settings-file) "calc" "calc/calc.el" -;;;;;; (17383 32134)) +;;;;;; (17671 12179)) ;;; Generated autoloads from calc/calc.el (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ *File in which to record permanent settings.") -(custom-autoload (quote calc-settings-file) "calc") +(custom-autoload (quote calc-settings-file) "calc" t) (define-key ctl-x-map "*" 'calc-dispatch) (autoload (quote calc-dispatch) "calc" "\ @@ -2838,8 +2849,8 @@ Not documented ;;;*** -;;;### (autoloads (calculator) "calculator" "calculator.el" (17383 -;;;;;; 32092)) +;;;### (autoloads (calculator) "calculator" "calculator.el" (17385 +;;;;;; 8482)) ;;; Generated autoloads from calculator.el (autoload (quote calculator) "calculator" "\ @@ -2867,7 +2878,7 @@ See the documentation for `calculator-mode' for more information. ;;;;;; mark-holidays-in-calendar view-calendar-holidays-initially ;;;;;; calendar-remove-frame-by-deleting mark-diary-entries-in-calendar ;;;;;; view-diary-entries-initially calendar-offset) "calendar" -;;;;;; "calendar/calendar.el" (17578 34774)) +;;;;;; "calendar/calendar.el" (17694 34727)) ;;; Generated autoloads from calendar/calendar.el (defvar calendar-offset 0 "\ @@ -2876,7 +2887,7 @@ The offset of the principal month from the center of the calendar window. +1 means on the right. Larger (or smaller) values push the principal month off the screen.") -(custom-autoload (quote calendar-offset) "calendar") +(custom-autoload (quote calendar-offset) "calendar" t) (defvar view-diary-entries-initially nil "\ Non-nil means display current date's diary entries on entry to calendar. @@ -2885,32 +2896,32 @@ if the current date is visible. The number of days of diary entries displayed is governed by the variable `number-of-diary-entries'. This variable can be overridden by the value of `calendar-setup'.") -(custom-autoload (quote view-diary-entries-initially) "calendar") +(custom-autoload (quote view-diary-entries-initially) "calendar" t) (defvar mark-diary-entries-in-calendar nil "\ Non-nil means mark dates with diary entries, in the calendar window. The marking symbol is specified by the variable `diary-entry-marker'.") -(custom-autoload (quote mark-diary-entries-in-calendar) "calendar") +(custom-autoload (quote mark-diary-entries-in-calendar) "calendar" t) (defvar calendar-remove-frame-by-deleting nil "\ Determine how the calendar mode removes a frame no longer needed. If nil, make an icon of the frame. If non-nil, delete the frame.") -(custom-autoload (quote calendar-remove-frame-by-deleting) "calendar") +(custom-autoload (quote calendar-remove-frame-by-deleting) "calendar" t) (defvar view-calendar-holidays-initially nil "\ Non-nil means display holidays for current three month period on entry. The holidays are displayed in another window when the calendar is first displayed.") -(custom-autoload (quote view-calendar-holidays-initially) "calendar") +(custom-autoload (quote view-calendar-holidays-initially) "calendar" t) (defvar mark-holidays-in-calendar nil "\ Non-nil means mark dates of holidays in the calendar window. The marking symbol is specified by the variable `calendar-holiday-marker'.") -(custom-autoload (quote mark-holidays-in-calendar) "calendar") +(custom-autoload (quote mark-holidays-in-calendar) "calendar" t) (defvar all-hebrew-calendar-holidays nil "\ If nil, show only major holidays from the Hebrew calendar. @@ -2918,7 +2929,7 @@ This means only those Jewish holidays that appear on secular calendars. If t, show all the holidays that would appear in a complete Hebrew calendar.") -(custom-autoload (quote all-hebrew-calendar-holidays) "calendar") +(custom-autoload (quote all-hebrew-calendar-holidays) "calendar" t) (defvar all-christian-calendar-holidays nil "\ If nil, show only major holidays from the Christian calendar. @@ -2927,7 +2938,7 @@ This means only those Christian holidays that appear on secular calendars. If t, show all the holidays that would appear in a complete Christian calendar.") -(custom-autoload (quote all-christian-calendar-holidays) "calendar") +(custom-autoload (quote all-christian-calendar-holidays) "calendar" t) (defvar all-islamic-calendar-holidays nil "\ If nil, show only major holidays from the Islamic calendar. @@ -2936,7 +2947,7 @@ This means only those Islamic holidays that appear on secular calendars. If t, show all the holidays that would appear in a complete Islamic calendar.") -(custom-autoload (quote all-islamic-calendar-holidays) "calendar") +(custom-autoload (quote all-islamic-calendar-holidays) "calendar" t) (defvar all-bahai-calendar-holidays nil "\ If nil, show only major holidays from the Baha'i calendar. @@ -2945,13 +2956,13 @@ These are the days on which work and school must be suspended. If t, show all the holidays that would appear in a complete Baha'i calendar.") -(custom-autoload (quote all-bahai-calendar-holidays) "calendar") +(custom-autoload (quote all-bahai-calendar-holidays) "calendar" t) (defvar calendar-load-hook nil "\ List of functions to be called after the calendar is first loaded. This is the place to add key bindings to `calendar-mode-map'.") -(custom-autoload (quote calendar-load-hook) "calendar") +(custom-autoload (quote calendar-load-hook) "calendar" t) (defvar initial-calendar-window-hook nil "\ List of functions to be called when the calendar window is first opened. @@ -2959,7 +2970,7 @@ The functions invoked are called after the calendar window is opened, but once opened is never called again. Leaving the calendar with the `q' command and reentering it will cause these functions to be called again.") -(custom-autoload (quote initial-calendar-window-hook) "calendar") +(custom-autoload (quote initial-calendar-window-hook) "calendar" t) (defvar today-visible-calendar-hook nil "\ List of functions called whenever the current date is visible. @@ -2978,7 +2989,7 @@ Other than the use of the provided functions, the changing of any characters in the calendar buffer by the hooks may cause the failure of the functions that move by days and weeks.") -(custom-autoload (quote today-visible-calendar-hook) "calendar") +(custom-autoload (quote today-visible-calendar-hook) "calendar" t) (defvar today-invisible-calendar-hook nil "\ List of functions called whenever the current date is not visible. @@ -2991,7 +3002,7 @@ Other than the use of the provided functions, the changing of any characters in the calendar buffer by the hooks may cause the failure of the functions that move by days and weeks.") -(custom-autoload (quote today-invisible-calendar-hook) "calendar") +(custom-autoload (quote today-invisible-calendar-hook) "calendar" t) (defvar calendar-move-hook nil "\ List of functions called whenever the cursor moves in the calendar. @@ -3002,7 +3013,7 @@ For example, redisplays the diary for whatever date the cursor is moved to.") -(custom-autoload (quote calendar-move-hook) "calendar") +(custom-autoload (quote calendar-move-hook) "calendar" t) (defvar diary-file "~/diary" "\ Name of the file in which one's personal diary of dates is kept. @@ -3109,39 +3120,39 @@ documentation for these functions for details. Diary files can contain directives to include the contents of other files; for details, see the documentation for the variable `list-diary-entries-hook'.") -(custom-autoload (quote diary-file) "calendar") +(custom-autoload (quote diary-file) "calendar" t) (defvar diary-nonmarking-symbol "&" "\ Symbol indicating that a diary entry is not to be marked in the calendar.") -(custom-autoload (quote diary-nonmarking-symbol) "calendar") +(custom-autoload (quote diary-nonmarking-symbol) "calendar" t) (defvar hebrew-diary-entry-symbol "H" "\ Symbol indicating a diary entry according to the Hebrew calendar.") -(custom-autoload (quote hebrew-diary-entry-symbol) "calendar") +(custom-autoload (quote hebrew-diary-entry-symbol) "calendar" t) (defvar islamic-diary-entry-symbol "I" "\ Symbol indicating a diary entry according to the Islamic calendar.") -(custom-autoload (quote islamic-diary-entry-symbol) "calendar") +(custom-autoload (quote islamic-diary-entry-symbol) "calendar" t) (defvar bahai-diary-entry-symbol "B" "\ Symbol indicating a diary entry according to the Baha'i calendar.") -(custom-autoload (quote bahai-diary-entry-symbol) "calendar") +(custom-autoload (quote bahai-diary-entry-symbol) "calendar" t) (defvar diary-include-string "#include" "\ The string indicating inclusion of another file of diary entries. See the documentation for the function `include-other-diary-files'.") -(custom-autoload (quote diary-include-string) "calendar") +(custom-autoload (quote diary-include-string) "calendar" t) (defvar sexp-diary-entry-symbol "%%" "\ The string used to indicate a sexp diary entry in `diary-file'. See the documentation for the function `list-sexp-diary-entries'.") -(custom-autoload (quote sexp-diary-entry-symbol) "calendar") +(custom-autoload (quote sexp-diary-entry-symbol) "calendar" t) (defvar abbreviated-calendar-year t "\ Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. @@ -3149,7 +3160,7 @@ For the Gregorian calendar; similarly for the Hebrew, Islamic and Baha'i calendars. If this variable is nil, years must be written in full.") -(custom-autoload (quote abbreviated-calendar-year) "calendar") +(custom-autoload (quote abbreviated-calendar-year) "calendar" t) (defvar european-calendar-style nil "\ Use the European style of dates in the diary and in any displays. @@ -3165,36 +3176,38 @@ are Names can be capitalized or not, written in full (as specified by the variable `calendar-day-name-array'), or abbreviated (as specified by -`calendar-day-abbrev-array') with or without a period. To take effect, -this variable should be set before the calendar package and its associates -are loaded. Otherwise, use one of the functions `european-calendar' or -`american-calendar' to force the appropriate update.") +`calendar-day-abbrev-array') with or without a period. -(custom-autoload (quote european-calendar-style) "calendar") +Setting this variable directly does not take effect (if the +calendar package is already loaded). Rather, use either +\\[customize] or the functions `european-calendar' and +`american-calendar'.") + +(custom-autoload (quote european-calendar-style) "calendar" nil) (defvar american-date-diary-pattern (quote ((month "/" day "[^/0-9]") (month "/" day "/" year "[^0-9]") (monthname " *" day "[^,0-9]") (monthname " *" day ", *" year "[^0-9]") (dayname "\\W"))) "\ List of pseudo-patterns describing the American patterns of date used. See the documentation of `diary-date-forms' for an explanation.") -(custom-autoload (quote american-date-diary-pattern) "calendar") +(custom-autoload (quote american-date-diary-pattern) "calendar" t) (defvar european-date-diary-pattern (quote ((day "/" month "[^/0-9]") (day "/" month "/" year "[^0-9]") (backup day " *" monthname "\\W+\\<\\([^*0-9]\\|\\([0-9]+[:aApP]\\)\\)") (day " *" monthname " *" year "[^0-9]") (dayname "\\W"))) "\ List of pseudo-patterns describing the European patterns of date used. See the documentation of `diary-date-forms' for an explanation.") -(custom-autoload (quote european-date-diary-pattern) "calendar") +(custom-autoload (quote european-date-diary-pattern) "calendar" t) (defvar european-calendar-display-form (quote ((if dayname (concat dayname ", ")) day " " monthname " " year)) "\ Pseudo-pattern governing the way a date appears in the European style. See the documentation of `calendar-date-display-form' for an explanation.") -(custom-autoload (quote european-calendar-display-form) "calendar") +(custom-autoload (quote european-calendar-display-form) "calendar" t) (defvar american-calendar-display-form (quote ((if dayname (concat dayname ", ")) monthname " " day ", " year)) "\ Pseudo-pattern governing the way a date appears in the American style. See the documentation of `calendar-date-display-form' for an explanation.") -(custom-autoload (quote american-calendar-display-form) "calendar") +(custom-autoload (quote american-calendar-display-form) "calendar" t) (defvar print-diary-entries-hook (quote lpr-buffer) "\ List of functions called after a temporary diary buffer is prepared. @@ -3203,7 +3216,7 @@ buffer. The default just does the printing. Other uses might include, for example, rearranging the lines into order by day and time, saving the buffer instead of deleting it, or changing the function used to do the printing.") -(custom-autoload (quote print-diary-entries-hook) "calendar") +(custom-autoload (quote print-diary-entries-hook) "calendar" t) (defvar list-diary-entries-hook nil "\ List of functions called after diary file is culled for relevant entries. @@ -3232,13 +3245,13 @@ in your `.emacs' file to cause the fancy diary buffer to be displayed with diary entries from various included files, each day's entries sorted into lexicographic order.") -(custom-autoload (quote list-diary-entries-hook) "calendar") +(custom-autoload (quote list-diary-entries-hook) "calendar" t) (defvar diary-hook nil "\ List of functions called after the display of the diary. Can be used for appointment notification.") -(custom-autoload (quote diary-hook) "calendar") +(custom-autoload (quote diary-hook) "calendar" t) (defvar diary-display-hook nil "\ List of functions that handle the display of the diary. @@ -3262,7 +3275,7 @@ diary buffer will not show days for which there are no diary entries, even if that day is a holiday; if you want such days to be shown in the fancy diary buffer, set the variable `diary-list-include-blanks' to t.") -(custom-autoload (quote diary-display-hook) "calendar") +(custom-autoload (quote diary-display-hook) "calendar" t) (defvar nongregorian-diary-listing-hook nil "\ List of functions called for listing diary file and included files. @@ -3272,7 +3285,7 @@ to cull relevant entries. You can use either or both of `list-bahai-diary-entries'. The documentation for these functions describes the style of such diary entries.") -(custom-autoload (quote nongregorian-diary-listing-hook) "calendar") +(custom-autoload (quote nongregorian-diary-listing-hook) "calendar" t) (defvar mark-diary-entries-hook nil "\ List of functions called after marking diary entries in the calendar. @@ -3288,7 +3301,7 @@ variable `diary-include-string'. When you use `mark-included-diary-files' as part of the mark-diary-entries-hook, you will probably also want to use the function `include-other-diary-files' as part of `list-diary-entries-hook'.") -(custom-autoload (quote mark-diary-entries-hook) "calendar") +(custom-autoload (quote mark-diary-entries-hook) "calendar" t) (defvar nongregorian-diary-marking-hook nil "\ List of functions called for marking diary file and included files. @@ -3298,14 +3311,14 @@ to cull relevant entries. You can use either or both of `mark-bahai-diary-entries'. The documentation for these functions describes the style of such diary entries.") -(custom-autoload (quote nongregorian-diary-marking-hook) "calendar") +(custom-autoload (quote nongregorian-diary-marking-hook) "calendar" t) (defvar diary-list-include-blanks nil "\ If nil, do not include days with no diary entry in the list of diary entries. Such days will then not be shown in the fancy diary buffer, even if they are holidays.") -(custom-autoload (quote diary-list-include-blanks) "calendar") +(custom-autoload (quote diary-list-include-blanks) "calendar" t) (defvar holidays-in-diary-buffer t "\ Non-nil means include holidays in the diary display. @@ -3313,7 +3326,7 @@ The holidays appear in the mode line of the diary buffer, or in the fancy diary buffer next to the date. This slows down the diary functions somewhat; setting it to nil makes the diary display faster.") -(custom-autoload (quote holidays-in-diary-buffer) "calendar") +(custom-autoload (quote holidays-in-diary-buffer) "calendar" t) (put (quote general-holidays) (quote risky-local-variable) t) @@ -3321,7 +3334,7 @@ somewhat; setting it to nil makes the diary display faster.") General holidays. Default value is for the United States. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote general-holidays) "calendar") +(custom-autoload (quote general-holidays) "calendar" t) (put (quote oriental-holidays) (quote risky-local-variable) t) @@ -3329,7 +3342,7 @@ See the documentation for `calendar-holidays' for details.") Oriental holidays. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote oriental-holidays) "calendar") +(custom-autoload (quote oriental-holidays) "calendar" t) (put (quote local-holidays) (quote risky-local-variable) t) @@ -3337,7 +3350,7 @@ See the documentation for `calendar-holidays' for details.") Local holidays. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote local-holidays) "calendar") +(custom-autoload (quote local-holidays) "calendar" t) (put (quote other-holidays) (quote risky-local-variable) t) @@ -3345,7 +3358,7 @@ See the documentation for `calendar-holidays' for details.") User defined holidays. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote other-holidays) "calendar") +(custom-autoload (quote other-holidays) "calendar" t) (put (quote hebrew-holidays-1) (quote risky-local-variable) t) @@ -3369,7 +3382,7 @@ See the documentation for `calendar-holidays' for details.") Jewish holidays. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote hebrew-holidays) "calendar") +(custom-autoload (quote hebrew-holidays) "calendar" t) (put (quote christian-holidays) (quote risky-local-variable) t) @@ -3377,7 +3390,7 @@ See the documentation for `calendar-holidays' for details.") Christian holidays. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote christian-holidays) "calendar") +(custom-autoload (quote christian-holidays) "calendar" t) (put (quote islamic-holidays) (quote risky-local-variable) t) @@ -3385,7 +3398,7 @@ See the documentation for `calendar-holidays' for details.") Islamic holidays. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote islamic-holidays) "calendar") +(custom-autoload (quote islamic-holidays) "calendar" t) (put (quote bahai-holidays) (quote risky-local-variable) t) @@ -3393,7 +3406,7 @@ See the documentation for `calendar-holidays' for details.") Baha'i holidays. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote bahai-holidays) "calendar") +(custom-autoload (quote bahai-holidays) "calendar" t) (put (quote solar-holidays) (quote risky-local-variable) t) @@ -3401,7 +3414,7 @@ See the documentation for `calendar-holidays' for details.") Sun-related holidays. See the documentation for `calendar-holidays' for details.") -(custom-autoload (quote solar-holidays) "calendar") +(custom-autoload (quote solar-holidays) "calendar" t) (put (quote calendar-holidays) (quote risky-local-variable) t) @@ -3413,7 +3426,7 @@ frames); `calendar-only' (calendar in a separate, dedicated frame); with any other value the current frame is used. Using any of the first three options overrides the value of `view-diary-entries-initially'.") -(custom-autoload (quote calendar-setup) "calendar") +(custom-autoload (quote calendar-setup) "calendar" t) (autoload (quote calendar) "calendar" "\ Choose between the one frame, two frame, or basic calendar displays. @@ -3433,12 +3446,12 @@ after starting `calendar', you should call `redraw-calendar' to update the calendar display to reflect the change, otherwise movement commands will not work correctly.") -(custom-autoload (quote calendar-week-start-day) "calendar") +(custom-autoload (quote calendar-week-start-day) "calendar" nil) ;;;*** ;;;### (autoloads (canlock-verify canlock-insert-header) "canlock" -;;;;;; "gnus/canlock.el" (17383 32153)) +;;;;;; "gnus/canlock.el" (17385 8492)) ;;; Generated autoloads from gnus/canlock.el (autoload (quote canlock-insert-header) "canlock" "\ @@ -3456,14 +3469,14 @@ it fails. ;;;*** ;;;### (autoloads nil "cc-compat" "progmodes/cc-compat.el" (17515 -;;;;;; 39528)) +;;;;;; 24182)) ;;; Generated autoloads from progmodes/cc-compat.el (put 'c-indent-level 'safe-local-variable 'integerp) ;;;*** ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" -;;;;;; (17420 36089)) +;;;;;; (17408 40148)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload (quote c-guess-basic-syntax) "cc-engine" "\ @@ -3475,7 +3488,7 @@ Return the syntactic context of the current line. ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" -;;;;;; (17590 36100)) +;;;;;; (17601 9092)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload (quote c-initialize-cc-mode) "cc-mode" "\ @@ -3633,7 +3646,7 @@ Key bindings: ;;;*** ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" -;;;;;; "progmodes/cc-styles.el" (17521 64538)) +;;;;;; "progmodes/cc-styles.el" (17520 49736)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload (quote c-set-style) "cc-styles" "\ @@ -3685,13 +3698,13 @@ and exists only for compatibility reasons. ;;;*** ;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17515 -;;;;;; 39528)) +;;;;;; 24182)) ;;; Generated autoloads from progmodes/cc-subword.el (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t) ;;;*** -;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (17521 64538)) +;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (17520 49736)) ;;; Generated autoloads from progmodes/cc-vars.el (put 'c-basic-offset 'safe-local-variable 'integerp) (put 'c-backslash-column 'safe-local-variable 'integerp) @@ -3701,7 +3714,7 @@ and exists only for compatibility reasons. ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program ;;;;;; declare-ccl-program ccl-dump ccl-compile) "ccl" "international/ccl.el" -;;;;;; (17097 33519)) +;;;;;; (17102 18708)) ;;; Generated autoloads from international/ccl.el (autoload (quote ccl-compile) "ccl" "\ @@ -3960,7 +3973,7 @@ See the documentation of `define-ccl-program' for the detail of CCL program. ;;;*** ;;;### (autoloads (cfengine-mode) "cfengine" "progmodes/cfengine.el" -;;;;;; (17397 61564)) +;;;;;; (17669 23128)) ;;; Generated autoloads from progmodes/cfengine.el (autoload (quote cfengine-mode) "cfengine" "\ @@ -3982,7 +3995,7 @@ to the action header. ;;;;;; checkdoc-comments checkdoc-continue checkdoc-start checkdoc-current-buffer ;;;;;; checkdoc-eval-current-buffer checkdoc-message-interactive ;;;;;; checkdoc-interactive checkdoc) "checkdoc" "emacs-lisp/checkdoc.el" -;;;;;; (17383 32136)) +;;;;;; (17651 6799)) ;;; Generated autoloads from emacs-lisp/checkdoc.el (autoload (quote checkdoc) "checkdoc" "\ @@ -4165,8 +4178,8 @@ checking of documentation strings. ;;;*** ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer -;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17097 -;;;;;; 33524)) +;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17246 +;;;;;; 40257)) ;;; Generated autoloads from language/china-util.el (autoload (quote decode-hz-region) "china-util" "\ @@ -4194,7 +4207,7 @@ Encode the text in the current buffer to HZ. ;;;*** ;;;### (autoloads (command-history list-command-history repeat-matching-complex-command) -;;;;;; "chistory" "chistory.el" (17383 32092)) +;;;;;; "chistory" "chistory.el" (17385 8482)) ;;; Generated autoloads from chistory.el (autoload (quote repeat-matching-complex-command) "chistory" "\ @@ -4233,7 +4246,7 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17383 32137)) +;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17698 30385)) ;;; Generated autoloads from emacs-lisp/cl.el (defvar custom-print-functions nil "\ @@ -4249,7 +4262,7 @@ a future Emacs interpreter will be able to use it.") ;;;*** ;;;### (autoloads (common-lisp-indent-function) "cl-indent" "emacs-lisp/cl-indent.el" -;;;;;; (17383 32136)) +;;;;;; (17729 22475)) ;;; Generated autoloads from emacs-lisp/cl-indent.el (autoload (quote common-lisp-indent-function) "cl-indent" "\ @@ -4260,7 +4273,7 @@ Not documented ;;;*** ;;;### (autoloads (c-macro-expand) "cmacexp" "progmodes/cmacexp.el" -;;;;;; (17397 61564)) +;;;;;; (17394 12937)) ;;; Generated autoloads from progmodes/cmacexp.el (autoload (quote c-macro-expand) "cmacexp" "\ @@ -4280,8 +4293,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. ;;;*** -;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17383 -;;;;;; 32092)) +;;;### (autoloads (run-scheme) "cmuscheme" "cmuscheme.el" (17385 +;;;;;; 8482)) ;;; Generated autoloads from cmuscheme.el (autoload (quote run-scheme) "cmuscheme" "\ @@ -4302,7 +4315,7 @@ is run). ;;;*** ;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el" -;;;;;; (17521 64538)) +;;;;;; (17699 53313)) ;;; Generated autoloads from international/code-pages.el (autoload (quote cp-make-coding-system) "code-pages" "\ @@ -4322,6 +4335,7 @@ Return an updated `non-iso-charset-alist'. (autoload-coding-system 'cp852 '(require 'code-pages)) (autoload-coding-system 'cp855 '(require 'code-pages)) (autoload-coding-system 'cp857 '(require 'code-pages)) +(autoload-coding-system 'cp858 '(require 'code-pages)) (autoload-coding-system 'cp860 '(require 'code-pages)) (autoload-coding-system 'cp861 '(require 'code-pages)) (autoload-coding-system 'cp862 '(require 'code-pages)) @@ -4362,7 +4376,7 @@ Return an updated `non-iso-charset-alist'. ;;;### (autoloads (codepage-setup cp-supported-codepages cp-offset-for-codepage ;;;;;; cp-language-for-codepage cp-charset-for-codepage cp-make-coding-systems-for-codepage) -;;;;;; "codepage" "international/codepage.el" (17210 47738)) +;;;;;; "codepage" "international/codepage.el" (17669 23128)) ;;; Generated autoloads from international/codepage.el (autoload (quote cp-make-coding-systems-for-codepage) "codepage" "\ @@ -4421,7 +4435,7 @@ read/written by MS-DOS software, or for display on the MS-DOS terminal. ;;;### (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" -;;;;;; (17578 34770)) +;;;;;; (17692 12587)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ @@ -4511,8 +4525,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** -;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17420 -;;;;;; 36076)) +;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17636 +;;;;;; 60569)) ;;; Generated autoloads from compare-w.el (autoload (quote compare-windows) "compare-w" "\ @@ -4549,18 +4563,18 @@ on third call it again advances points to the next difference and so on. ;;;;;; 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-mode-hook) -;;;;;; "compile" "progmodes/compile.el" (17590 36100)) +;;;;;; "compile" "progmodes/compile.el" (17686 65476)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ *List of hook functions run by `compilation-mode' (see `run-mode-hooks').") -(custom-autoload (quote compilation-mode-hook) "compile") +(custom-autoload (quote compilation-mode-hook) "compile" t) (defvar compilation-window-height nil "\ *Number of lines in a compilation window. If nil, use Emacs default.") -(custom-autoload (quote compilation-window-height) "compile") +(custom-autoload (quote compilation-window-height) "compile" t) (defvar compilation-process-setup-function nil "\ *Function to call to customize the compilation process. @@ -4590,14 +4604,14 @@ and a string describing how the process finished.") *Non-nil means \\[compile] asks which buffers to save before compiling. Otherwise, it saves all modified buffers without asking.") -(custom-autoload (quote compilation-ask-about-save) "compile") +(custom-autoload (quote compilation-ask-about-save) "compile" t) (defvar compilation-search-path (quote (nil)) "\ *List of directories to search for source files named in error messages. Elements should be directory names, not file names of directories. nil as an element means to try the default directory.") -(custom-autoload (quote compilation-search-path) "compile") +(custom-autoload (quote compilation-search-path) "compile" t) (defvar compile-command "make -k " "\ *Last shell command used to do a compilation; default for next compilation. @@ -4613,7 +4627,7 @@ You might also use mode hooks to specify it in certain modes, like this: (concat \"make -k \" (file-name-sans-extension buffer-file-name))))))") -(custom-autoload (quote compile-command) "compile") +(custom-autoload (quote compile-command) "compile" t) (put 'compile-command 'safe-local-variable 'stringp) (defvar compilation-disable-input nil "\ @@ -4621,7 +4635,7 @@ You might also use mode hooks to specify it in certain modes, like this: This only affects platforms that support asynchronous processes (see `start-process'); synchronous compilation processes never accept input.") -(custom-autoload (quote compilation-disable-input) "compile") +(custom-autoload (quote compilation-disable-input) "compile" t) (autoload (quote compile) "compile" "\ Compile the program including the current buffer. Default: run `make'. @@ -4711,16 +4725,17 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" -;;;;;; (17578 34770)) +;;;;;; (17624 52650)) ;;; Generated autoloads from complete.el (defvar partial-completion-mode nil "\ Non-nil if Partial-Completion mode is enabled. See the command `partial-completion-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `partial-completion-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `partial-completion-mode'.") -(custom-autoload (quote partial-completion-mode) "complete") +(custom-autoload (quote partial-completion-mode) "complete" nil) (autoload (quote partial-completion-mode) "complete" "\ Toggle Partial Completion mode. @@ -4752,16 +4767,17 @@ second TAB brings up the `*Completions*' buffer. ;;;*** ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" -;;;;;; (17383 32093)) +;;;;;; (17704 4325)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ Non-nil if Dynamic-Completion mode is enabled. See the command `dynamic-completion-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `dynamic-completion-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `dynamic-completion-mode'.") -(custom-autoload (quote dynamic-completion-mode) "completion") +(custom-autoload (quote dynamic-completion-mode) "completion" nil) (autoload (quote dynamic-completion-mode) "completion" "\ Enable dynamic word-completion. @@ -4773,7 +4789,7 @@ Enable dynamic word-completion. ;;;### (autoloads (decompose-composite-char compose-last-chars compose-chars-after ;;;;;; find-composition compose-chars decompose-string compose-string ;;;;;; decompose-region compose-region encode-composition-rule) -;;;;;; "composite" "composite.el" (17318 53825)) +;;;;;; "composite" "composite.el" (17321 50876)) ;;; Generated autoloads from composite.el (defconst reference-point-alist (quote ((tl . 0) (tc . 1) (tr . 2) (Bl . 3) (Bc . 4) (Br . 5) (bl . 6) (bc . 7) (br . 8) (cl . 9) (cc . 10) (cr . 11) (top-left . 0) (top-center . 1) (top-right . 2) (base-left . 3) (base-center . 4) (base-right . 5) (bottom-left . 6) (bottom-center . 7) (bottom-right . 8) (center-left . 9) (center-center . 10) (center-right . 11) (ml . 3) (mc . 10) (mr . 5) (mid-left . 3) (mid-center . 10) (mid-right . 5))) "\ @@ -4993,8 +5009,9 @@ Optional 3rd arg WITH-COMPOSITION-RULE is ignored. ;;;*** ;;;### (autoloads (conf-xdefaults-mode conf-ppd-mode conf-colon-mode -;;;;;; conf-space-mode conf-javaprop-mode conf-windows-mode conf-unix-mode -;;;;;; conf-mode) "conf-mode" "textmodes/conf-mode.el" (17383 32186)) +;;;;;; conf-space-keywords conf-space-mode conf-javaprop-mode conf-windows-mode +;;;;;; conf-unix-mode conf-mode) "conf-mode" "textmodes/conf-mode.el" +;;;;;; (17679 3707)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload (quote conf-mode) "conf-mode" "\ @@ -5083,10 +5100,11 @@ x.2.y.1.z.2.zz = (autoload (quote conf-space-mode) "conf-mode" "\ Conf Mode starter for space separated conf files. \"Assignments\" are with ` '. Keywords before the parameters are -recognized according to `conf-space-keywords'. Interactively -with a prefix ARG of `0' no keywords will be recognized. With -any other prefix arg you will be prompted for a regexp to match -the keywords. +recognized according to the variable `conf-space-keywords-alist'. +Alternatively, you can specify a value for the file local variable +`conf-space-keywords'. +Use the function `conf-space-keywords' if you want to specify keywords +in an interactive fashion instead. For details see `conf-mode'. Example: @@ -5104,6 +5122,12 @@ add /dev/mixer desktop \(fn)" t nil) +(autoload (quote conf-space-keywords) "conf-mode" "\ +Enter Conf Space mode using regexp KEYWORDS to match the keywords. +See `conf-space-mode'. + +\(fn KEYWORDS)" t nil) + (autoload (quote conf-colon-mode) "conf-mode" "\ Conf Mode starter for Colon files. \"Assignments\" are with `:'. @@ -5143,7 +5167,7 @@ For details see `conf-mode'. Example: ;;;*** ;;;### (autoloads (shuffle-vector cookie-snarf cookie-insert cookie) -;;;;;; "cookie1" "play/cookie1.el" (17578 34778)) +;;;;;; "cookie1" "play/cookie1.el" (17562 61275)) ;;; Generated autoloads from play/cookie1.el (autoload (quote cookie) "cookie1" "\ @@ -5175,7 +5199,7 @@ Randomly permute the elements of VECTOR (all permutations equally likely). ;;;*** ;;;### (autoloads (copyright copyright-fix-years copyright-update) -;;;;;; "copyright" "emacs-lisp/copyright.el" (17383 32137)) +;;;;;; "copyright" "emacs-lisp/copyright.el" (17385 8489)) ;;; Generated autoloads from emacs-lisp/copyright.el (autoload (quote copyright-update) "copyright" "\ @@ -5202,8 +5226,8 @@ Insert a copyright by $ORGANIZATION notice at cursor. ;;;*** -;;;### (autoloads (cperl-mode) "cperl-mode" "progmodes/cperl-mode.el" -;;;;;; (17578 34778)) +;;;### (autoloads (cperl-perldoc-at-point cperl-perldoc cperl-mode) +;;;;;; "cperl-mode" "progmodes/cperl-mode.el" (17723 56271)) ;;; Generated autoloads from progmodes/cperl-mode.el (autoload (quote cperl-mode) "cperl-mode" "\ @@ -5349,16 +5373,24 @@ Variables controlling indentation style: `cperl-min-label-indent' Minimal indentation for line that is a label. -Settings for K&R and BSD indentation styles are - `cperl-indent-level' 5 8 - `cperl-continued-statement-offset' 5 8 - `cperl-brace-offset' -5 -8 - `cperl-label-offset' -5 -8 +Settings for classic indent-styles: K&R BSD=C++ GNU PerlStyle=Whitesmith + `cperl-indent-level' 5 4 2 4 + `cperl-brace-offset' 0 0 0 0 + `cperl-continued-brace-offset' -5 -4 0 0 + `cperl-label-offset' -5 -4 -2 -4 + `cperl-continued-statement-offset' 5 4 2 4 CPerl knows several indentation styles, and may bulk set the corresponding variables. Use \\[cperl-set-style] to do this. Use \\[cperl-set-style-back] to restore the memorized preexisting values -\(both available from menu). +\(both available from menu). See examples in `cperl-style-examples'. + +Part of the indentation style is how different parts of if/elsif/else +statements are broken into lines; in CPerl, this is reflected on how +templates for these constructs are created (controlled by +`cperl-extra-newline-before-brace'), and how reflow-logic should treat \"continuation\" blocks of else/elsif/continue, controlled by the same variable, +and by `cperl-extra-newline-before-brace-multiline', +`cperl-merge-trailing-else', `cperl-indent-region-fix-constructs'. If `cperl-indent-level' is 0, the statement after opening brace in column 0 is indented on @@ -5373,10 +5405,20 @@ or as help on variables `cperl-tips', `cperl-problems', \(fn)" t nil) +(autoload (quote cperl-perldoc) "cperl-mode" "\ +Run `perldoc' on WORD. + +\(fn WORD)" t nil) + +(autoload (quote cperl-perldoc-at-point) "cperl-mode" "\ +Run a `perldoc' on the word around point. + +\(fn)" t nil) + ;;;*** ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" -;;;;;; (17397 61565)) +;;;;;; (17394 12937)) ;;; Generated autoloads from progmodes/cpp.el (autoload (quote cpp-highlight-buffer) "cpp" "\ @@ -5395,7 +5437,7 @@ Edit display information for cpp conditionals. ;;;*** ;;;### (autoloads (crisp-mode crisp-mode) "crisp" "emulation/crisp.el" -;;;;;; (17383 32142)) +;;;;;; (17385 8490)) ;;; Generated autoloads from emulation/crisp.el (defvar crisp-mode nil "\ @@ -5419,7 +5461,7 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise. ;;;*** ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" -;;;;;; (17515 39527)) +;;;;;; (17515 24181)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload (quote completing-read-multiple) "crm" "\ @@ -5455,16 +5497,17 @@ INHERIT-INPUT-METHOD. ;;;*** ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" -;;;;;; (17521 64537)) +;;;;;; (17663 14247)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ Non-nil if Cua mode is enabled. See the command `cua-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `cua-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `cua-mode'.") -(custom-autoload (quote cua-mode) "cua-base") +(custom-autoload (quote cua-mode) "cua-base" nil) (autoload (quote cua-mode) "cua-base" "\ Toggle CUA key-binding mode. @@ -5520,7 +5563,7 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. ;;;;;; customize-face customize-changed-options customize-option-other-window ;;;;;; customize-option customize-group-other-window customize-group ;;;;;; customize-mode customize customize-save-variable customize-set-variable -;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17590 36098)) +;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17694 37217)) ;;; Generated autoloads from cus-edit.el (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") @@ -5618,18 +5661,24 @@ Show the buffer in another window, but don't select it. \(fn SYMBOL)" t nil) (defvar customize-package-emacs-version-alist nil "\ -Alist mapping versions of Emacs to versions of a package. -These package versions are listed in the :package-version -keyword used in `defcustom', `defgroup', and `defface'. Its -elements look like this: +Alist mapping versions of a package to Emacs versions. +We use this for packages that have their own names, but are released +as part of Emacs itself. + +Each elements looks like this: (PACKAGE (PVERSION . EVERSION)...) -For each PACKAGE, which is a symbol, there are one or more -elements that contain a package version PVERSION with an -associated Emacs version EVERSION. These versions are strings. -For example, the MH-E package updates this alist with the -following: +Here PACKAGE is the name of a package, as a symbol. After +PACKAGE come one or more elements, each associating a +package version PVERSION with the first Emacs version +EVERSION in which it (or a subsequent version of PACKAGE) +was first released. Both PVERSION and EVERSION are strings. +PVERSION should be a string that this package used in +the :package-version keyword for `defcustom', `defgroup', +and `defface'. + +For example, the MH-E package updates this alist as follows: (add-to-list 'customize-package-emacs-version-alist '(MH-E (\"6.0\" . \"22.1\") (\"6.1\" . \"22.1\") @@ -5774,7 +5823,7 @@ in your init file, where CUSTOM-FILE is the actual name of the file. Otherwise, Emacs will not load the file when it starts up, and hence will not set `custom-file' to that file either.") -(custom-autoload (quote custom-file) "cus-edit") +(custom-autoload (quote custom-file) "cus-edit" t) (autoload (quote custom-save-all) "cus-edit" "\ Save all customizations in `custom-file'. @@ -5803,7 +5852,7 @@ The format is suitable for use with `easy-menu-define'. ;;;*** ;;;### (autoloads (custom-reset-faces custom-theme-reset-faces custom-set-faces -;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17383 32094)) +;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17385 8483)) ;;; Generated autoloads from cus-face.el (autoload (quote custom-declare-face) "cus-face" "\ @@ -5873,7 +5922,7 @@ This means reset FACE to its value in FROM-THEME. ;;;*** ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" -;;;;;; (17397 61539)) +;;;;;; (17632 41885)) ;;; Generated autoloads from cus-theme.el (autoload (quote customize-create-theme) "cus-theme" "\ @@ -5884,7 +5933,7 @@ Create a custom theme. ;;;*** ;;;### (autoloads (cvs-status-mode) "cvs-status" "cvs-status.el" -;;;;;; (17582 35146)) +;;;;;; (17495 43954)) ;;; Generated autoloads from cvs-status.el (autoload (quote cvs-status-mode) "cvs-status" "\ @@ -5895,7 +5944,7 @@ Mode used for cvs status output. ;;;*** ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) -;;;;;; "cwarn" "progmodes/cwarn.el" (17397 61565)) +;;;;;; "cwarn" "progmodes/cwarn.el" (17394 12937)) ;;; Generated autoloads from progmodes/cwarn.el (autoload (quote cwarn-mode) "cwarn" "\ @@ -5925,6 +5974,8 @@ use either \\[customize] or the function `global-cwarn-mode'.") (custom-autoload (quote global-cwarn-mode) "cwarn") +(put (quote global-cwarn-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote global-cwarn-mode) "cwarn" "\ Toggle Cwarn mode in every buffer. With prefix ARG, turn Global-Cwarn mode on if and only if ARG is positive. @@ -5937,7 +5988,7 @@ in which `turn-on-cwarn-mode-if-enabled' turns it on. ;;;### (autoloads (standard-display-cyrillic-translit cyrillic-encode-alternativnyj-char ;;;;;; cyrillic-encode-koi8-r-char) "cyril-util" "language/cyril-util.el" -;;;;;; (17097 33524)) +;;;;;; (17102 18767)) ;;; Generated autoloads from language/cyril-util.el (autoload (quote cyrillic-encode-koi8-r-char) "cyril-util" "\ @@ -5966,7 +6017,7 @@ If the argument is nil, we return the display table to its standard state. ;;;*** ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" -;;;;;; (17383 32095)) +;;;;;; (17385 8483)) ;;; Generated autoloads from dabbrev.el (define-key esc-map "/" 'dabbrev-expand) (define-key esc-map [?\C-/] 'dabbrev-completion) @@ -6010,8 +6061,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. ;;;*** -;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17397 -;;;;;; 61565)) +;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17394 +;;;;;; 12937)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload (quote dcl-mode) "dcl-mode" "\ @@ -6138,7 +6189,7 @@ There is some minimal font-lock support (see vars ;;;*** ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" -;;;;;; "emacs-lisp/debug.el" (17438 58633)) +;;;;;; "emacs-lisp/debug.el" (17440 13082)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger (quote debug)) @@ -6182,7 +6233,7 @@ To specify a nil argument interactively, exit with an empty minibuffer. ;;;*** ;;;### (autoloads (decipher-mode decipher) "decipher" "play/decipher.el" -;;;;;; (17383 32181)) +;;;;;; (17385 8495)) ;;; Generated autoloads from play/decipher.el (autoload (quote decipher) "decipher" "\ @@ -6211,8 +6262,8 @@ The most useful commands are: ;;;*** ;;;### (autoloads (delimit-columns-rectangle delimit-columns-region -;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17383 -;;;;;; 32095)) +;;;;;; delimit-columns-customize) "delim-col" "delim-col.el" (17682 +;;;;;; 43100)) ;;; Generated autoloads from delim-col.el (autoload (quote delimit-columns-customize) "delim-col" "\ @@ -6236,8 +6287,8 @@ START and END delimits the corners of text rectangle. ;;;*** -;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17397 -;;;;;; 61565)) +;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17604 +;;;;;; 60390)) ;;; Generated autoloads from progmodes/delphi.el (autoload (quote delphi-mode) "delphi" "\ @@ -6287,8 +6338,8 @@ no args, if that value is non-nil. ;;;*** -;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17383 -;;;;;; 32095)) +;;;### (autoloads (delete-selection-mode) "delsel" "delsel.el" (17385 +;;;;;; 8483)) ;;; Generated autoloads from delsel.el (defalias (quote pending-delete-mode) (quote delete-selection-mode)) @@ -6301,6 +6352,8 @@ use either \\[customize] or the function `delete-selection-mode'.") (custom-autoload (quote delete-selection-mode) "delsel") +(put (quote delete-selection-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote delete-selection-mode) "delsel" "\ Toggle Delete Selection mode. With prefix ARG, turn Delete Selection mode on if and only if ARG is @@ -6316,7 +6369,7 @@ any selection. ;;;*** ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) -;;;;;; "derived" "emacs-lisp/derived.el" (17383 32137)) +;;;;;; "derived" "emacs-lisp/derived.el" (17385 8489)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload (quote define-derived-mode) "derived" "\ @@ -6381,7 +6434,7 @@ the first time the mode is used. ;;;*** ;;;### (autoloads (describe-char describe-text-properties) "descr-text" -;;;;;; "descr-text.el" (17383 32095)) +;;;;;; "descr-text.el" (17385 8483)) ;;; Generated autoloads from descr-text.el (autoload (quote describe-text-properties) "descr-text" "\ @@ -6407,14 +6460,14 @@ as well as widgets, buttons, overlays, and text properties. ;;;### (autoloads (desktop-revert desktop-save-in-desktop-dir desktop-change-dir ;;;;;; desktop-load-default desktop-read desktop-remove desktop-save ;;;;;; desktop-clear desktop-locals-to-save desktop-save-mode) "desktop" -;;;;;; "desktop.el" (17578 34771)) +;;;;;; "desktop.el" (17670 57734)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ Non-nil if Desktop-Save mode is enabled. See the command `desktop-save-mode' for a description of this minor-mode.") -(custom-autoload (quote desktop-save-mode) "desktop") +(custom-autoload (quote desktop-save-mode) "desktop" nil) (autoload (quote desktop-save-mode) "desktop" "\ Toggle desktop saving mode. @@ -6430,7 +6483,7 @@ List of local variables to save for each buffer. The variables are saved only when they really are local. Conventional minor modes are restored automatically; they should not be listed here.") -(custom-autoload (quote desktop-locals-to-save) "desktop") +(custom-autoload (quote desktop-locals-to-save) "desktop" t) (defvar desktop-save-buffer nil "\ When non-nil, save buffer status in desktop file. @@ -6590,7 +6643,7 @@ Revert to the last loaded desktop. ;;;### (autoloads (gnus-article-outlook-deuglify-article gnus-outlook-deuglify-article ;;;;;; gnus-article-outlook-repair-attribution gnus-article-outlook-unwrap-lines) -;;;;;; "deuglify" "gnus/deuglify.el" (17494 22065)) +;;;;;; "deuglify" "gnus/deuglify.el" (17495 43954)) ;;; Generated autoloads from gnus/deuglify.el (autoload (quote gnus-article-outlook-unwrap-lines) "deuglify" "\ @@ -6623,7 +6676,7 @@ Deuglify broken Outlook (Express) articles and redisplay. ;;;*** ;;;### (autoloads (devanagari-post-read-conversion devanagari-compose-region) -;;;;;; "devan-util" "language/devan-util.el" (17097 33525)) +;;;;;; "devan-util" "language/devan-util.el" (17102 18768)) ;;; Generated autoloads from language/devan-util.el (defconst devanagari-consonant "[\x51ad5-\x51af9\x51b38-\x51b3f]") @@ -6641,7 +6694,7 @@ Not documented ;;;*** ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" -;;;;;; "calendar/diary-lib.el" (17521 64537)) +;;;;;; "calendar/diary-lib.el" (17520 49736)) ;;; Generated autoloads from calendar/diary-lib.el (autoload (quote diary) "diary-lib" "\ @@ -6687,18 +6740,18 @@ Major mode for editing the diary file. ;;;*** ;;;### (autoloads (diff-backup diff diff-command diff-switches) "diff" -;;;;;; "diff.el" (17578 34771)) +;;;;;; "diff.el" (17683 64071)) ;;; Generated autoloads from diff.el (defvar diff-switches "-c" "\ *A string or list of strings specifying switches to be passed to diff.") -(custom-autoload (quote diff-switches) "diff") +(custom-autoload (quote diff-switches) "diff" t) (defvar diff-command "diff" "\ *The command to use to run diff.") -(custom-autoload (quote diff-command) "diff") +(custom-autoload (quote diff-command) "diff" t) (autoload (quote diff) "diff" "\ Find and display the differences between OLD and NEW files. @@ -6721,7 +6774,7 @@ With prefix arg, prompt for diff switches. ;;;*** ;;;### (autoloads (diff-minor-mode diff-mode) "diff-mode" "diff-mode.el" -;;;;;; (17578 34771)) +;;;;;; (17670 57734)) ;;; Generated autoloads from diff-mode.el (autoload (quote diff-mode) "diff-mode" "\ @@ -6751,7 +6804,7 @@ Minor mode for viewing/editing context diffs. ;;;;;; dired dired-copy-preserve-time dired-dwim-target dired-keep-marker-symlink ;;;;;; dired-keep-marker-hardlink dired-keep-marker-copy dired-keep-marker-rename ;;;;;; dired-trivial-filenames dired-ls-F-marks-symlinks dired-listing-switches) -;;;;;; "dired" "dired.el" (17578 34771)) +;;;;;; "dired" "dired.el" (17697 23215)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches "-al" "\ @@ -6763,7 +6816,7 @@ On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp, some of the `ls' switches are not supported; see the doc string of `insert-directory' on `ls-lisp.el' for more details.") -(custom-autoload (quote dired-listing-switches) "dired") +(custom-autoload (quote dired-listing-switches) "dired" t) (defvar dired-chown-program (if (memq system-type (quote (hpux dgux usg-unix-v irix linux gnu/linux cygwin))) "chown" (if (file-exists-p "/usr/sbin/chown") "/usr/sbin/chown" "/etc/chown")) "\ Name of chown command (usually `chown' or `/etc/chown').") @@ -6782,14 +6835,14 @@ marking `ls' program on one host and a non-marking on another host, and don't care about symbolic links which really end in a @, you can always set this variable to t.") -(custom-autoload (quote dired-ls-F-marks-symlinks) "dired") +(custom-autoload (quote dired-ls-F-marks-symlinks) "dired" t) (defvar dired-trivial-filenames "^\\.\\.?$\\|^#" "\ *Regexp of files to skip when finding first file of a directory. A value of nil means move to the subdir line. A value of t means move to first file.") -(custom-autoload (quote dired-trivial-filenames) "dired") +(custom-autoload (quote dired-trivial-filenames) "dired" t) (defvar dired-keep-marker-rename t "\ *Controls marking of renamed files. @@ -6797,28 +6850,28 @@ If t, files keep their previous marks when they are renamed. If a character, renamed files (whether previously marked or not) are afterward marked with that character.") -(custom-autoload (quote dired-keep-marker-rename) "dired") +(custom-autoload (quote dired-keep-marker-rename) "dired" t) (defvar dired-keep-marker-copy 67 "\ *Controls marking of copied files. If t, copied files are marked if and as the corresponding original files were. If a character, copied files are unconditionally marked with that character.") -(custom-autoload (quote dired-keep-marker-copy) "dired") +(custom-autoload (quote dired-keep-marker-copy) "dired" t) (defvar dired-keep-marker-hardlink 72 "\ *Controls marking of newly made hard links. If t, they are marked if and as the files linked to were marked. If a character, new links are unconditionally marked with that character.") -(custom-autoload (quote dired-keep-marker-hardlink) "dired") +(custom-autoload (quote dired-keep-marker-hardlink) "dired" t) (defvar dired-keep-marker-symlink 89 "\ *Controls marking of newly made symbolic links. If t, they are marked if and as the files linked to were marked. If a character, new links are unconditionally marked with that character.") -(custom-autoload (quote dired-keep-marker-symlink) "dired") +(custom-autoload (quote dired-keep-marker-symlink) "dired" t) (defvar dired-dwim-target nil "\ *If non-nil, Dired tries to guess a default target directory. @@ -6827,13 +6880,13 @@ use its current subdir, instead of the current subdir of this dired buffer. The target is used in the prompt for file copy, rename etc.") -(custom-autoload (quote dired-dwim-target) "dired") +(custom-autoload (quote dired-dwim-target) "dired" t) (defvar dired-copy-preserve-time t "\ *If non-nil, Dired preserves the last-modified time in a file copy. \(This works on only some systems.)") -(custom-autoload (quote dired-copy-preserve-time) "dired") +(custom-autoload (quote dired-copy-preserve-time) "dired" t) (defvar dired-directory nil "\ The directory name or wildcard spec that this dired directory lists. @@ -6956,7 +7009,7 @@ Keybindings: ;;;;;; dired-run-shell-command dired-do-shell-command dired-clean-directory ;;;;;; dired-do-print dired-do-touch dired-do-chown dired-do-chgrp ;;;;;; dired-do-chmod dired-compare-directories dired-backup-diff -;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17521 64535)) +;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17718 28532)) ;;; Generated autoloads from dired-aux.el (autoload (quote dired-diff) "dired-aux" "\ @@ -7182,6 +7235,9 @@ with the same names that the files currently have. The default suggested for the target directory depends on the value of `dired-dwim-target', which see. +This command copies symbolic links by creating new ones, +like `cp -d'. + \(fn &optional ARG)" t nil) (autoload (quote dired-do-symlink) "dired-aux" "\ @@ -7365,7 +7421,7 @@ true then the type of the file linked to by FILE is printed instead. ;;;*** -;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17521 64536)) +;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17656 37701)) ;;; Generated autoloads from dired-x.el (autoload (quote dired-jump) "dired-x" "\ @@ -7379,7 +7435,7 @@ buffer and try again. ;;;*** -;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17582 31039)) +;;;### (autoloads (dirtrack) "dirtrack" "dirtrack.el" (17582 40396)) ;;; Generated autoloads from dirtrack.el (autoload (quote dirtrack) "dirtrack" "\ @@ -7398,8 +7454,8 @@ You can enable directory tracking by adding this function to ;;;*** -;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17383 -;;;;;; 32137)) +;;;### (autoloads (disassemble) "disass" "emacs-lisp/disass.el" (17385 +;;;;;; 8489)) ;;; Generated autoloads from emacs-lisp/disass.el (autoload (quote disassemble) "disass" "\ @@ -7417,7 +7473,7 @@ redefine OBJECT if it is a symbol. ;;;;;; standard-display-graphic standard-display-g1 standard-display-ascii ;;;;;; standard-display-default standard-display-8bit describe-current-display-table ;;;;;; describe-display-table set-display-table-slot display-table-slot -;;;;;; make-display-table) "disp-table" "disp-table.el" (17383 32097)) +;;;;;; make-display-table) "disp-table" "disp-table.el" (17385 8483)) ;;; Generated autoloads from disp-table.el (autoload (quote make-display-table) "disp-table" "\ @@ -7518,7 +7574,7 @@ for users who call this function in `.emacs'. ;;;*** ;;;### (autoloads (dissociated-press) "dissociate" "play/dissociate.el" -;;;;;; (17383 32181)) +;;;;;; (17385 8495)) ;;; Generated autoloads from play/dissociate.el (autoload (quote dissociated-press) "dissociate" "\ @@ -7534,10 +7590,10 @@ Default is 2. ;;;*** -;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17521 64536)) +;;;### (autoloads (dnd-protocol-alist) "dnd" "dnd.el" (17709 24917)) ;;; Generated autoloads from dnd.el -(defvar dnd-protocol-alist (quote (("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file))) "\ +(defvar dnd-protocol-alist (quote (("^file:///" . dnd-open-local-file) ("^file://" . dnd-open-file) ("^file:" . dnd-open-local-file) ("^\\(https?\\|ftp\\|file\\|nfs\\)://" . dnd-open-file))) "\ The functions to call for different protocols when a drop is made. This variable is used by `dnd-handle-one-url' and `dnd-handle-file-name'. The list contains of (REGEXP . FUNCTION) pairs. @@ -7550,12 +7606,12 @@ If no match is found, the URL is inserted as text by calling `dnd-insert-text'. The function shall return the action done (move, copy, link or private) if some action was made, or nil if the URL is ignored.") -(custom-autoload (quote dnd-protocol-alist) "dnd") +(custom-autoload (quote dnd-protocol-alist) "dnd" t) ;;;*** ;;;### (autoloads (dns-mode-soa-increment-serial dns-mode) "dns-mode" -;;;;;; "textmodes/dns-mode.el" (17383 32186)) +;;;;;; "textmodes/dns-mode.el" (17632 41886)) ;;; Generated autoloads from textmodes/dns-mode.el (autoload (quote dns-mode) "dns-mode" "\ @@ -7569,6 +7625,7 @@ table and its own syntax table. Turning on DNS mode runs `dns-mode-hook'. \(fn)" t nil) + (defalias 'zone-mode 'dns-mode) (autoload (quote dns-mode-soa-increment-serial) "dns-mode" "\ Locate SOA record and increment the serial field. @@ -7578,7 +7635,7 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17365 2741)) +;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17366 25285)) ;;; Generated autoloads from play/doctor.el (autoload (quote doctor) "doctor" "\ @@ -7589,7 +7646,7 @@ Switch to *doctor* buffer and start giving psychotherapy. ;;;*** ;;;### (autoloads (double-mode double-mode) "double" "double.el" -;;;;;; (17383 32097)) +;;;;;; (17385 8483)) ;;; Generated autoloads from double.el (defvar double-mode nil "\ @@ -7610,7 +7667,7 @@ when pressed twice. See variable `double-map' for details. ;;;*** -;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17582 28846)) +;;;### (autoloads (dunnet) "dunnet" "play/dunnet.el" (17579 53341)) ;;; Generated autoloads from play/dunnet.el (autoload (quote dunnet) "dunnet" "\ @@ -7621,7 +7678,7 @@ Switch to *dungeon* buffer and start game. ;;;*** ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el" -;;;;;; (17383 32154)) +;;;;;; (17385 8492)) ;;; Generated autoloads from gnus/earcon.el (autoload (quote gnus-earcon-display) "earcon" "\ @@ -7633,7 +7690,7 @@ Play sounds in message buffers. ;;;### (autoloads (easy-mmode-defsyntax easy-mmode-defmap easy-mmode-define-keymap ;;;;;; define-global-minor-mode define-minor-mode) "easy-mmode" -;;;;;; "emacs-lisp/easy-mmode.el" (17585 4275)) +;;;;;; "emacs-lisp/easy-mmode.el" (17656 37701)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) @@ -7725,8 +7782,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). ;;;*** ;;;### (autoloads (easy-menu-change easy-menu-create-menu easy-menu-do-define -;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17383 -;;;;;; 32138)) +;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17385 +;;;;;; 8489)) ;;; Generated autoloads from emacs-lisp/easymenu.el (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) @@ -7871,7 +7928,7 @@ To implement dynamic menus, either call this from ;;;;;; 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" (17397 61566)) +;;;;;; "progmodes/ebnf2ps.el" (17690 51743)) ;;; Generated autoloads from progmodes/ebnf2ps.el (autoload (quote ebnf-customize) "ebnf2ps" "\ @@ -8130,8 +8187,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" (17590 -;;;;;; 36100)) +;;;;;; ebrowse-tree-mode) "ebrowse" "progmodes/ebrowse.el" (17601 +;;;;;; 9092)) ;;; Generated autoloads from progmodes/ebrowse.el (autoload (quote ebrowse-tree-mode) "ebrowse" "\ @@ -8282,7 +8339,7 @@ Display statistics for a class tree. ;;;*** ;;;### (autoloads (electric-buffer-list) "ebuff-menu" "ebuff-menu.el" -;;;;;; (17383 32098)) +;;;;;; (17385 8483)) ;;; Generated autoloads from ebuff-menu.el (autoload (quote electric-buffer-list) "ebuff-menu" "\ @@ -8307,7 +8364,7 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. ;;;*** ;;;### (autoloads (Electric-command-history-redo-expression) "echistory" -;;;;;; "echistory.el" (17383 32098)) +;;;;;; "echistory.el" (17385 8483)) ;;; Generated autoloads from echistory.el (autoload (quote Electric-command-history-redo-expression) "echistory" "\ @@ -8320,7 +8377,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;### (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" (17590 36099)) +;;;;;; "emacs-lisp/edebug.el" (17632 41885)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -8334,14 +8391,14 @@ variable. You may wish to make it local to each buffer with \(make-local-variable 'edebug-all-defs) in your `emacs-lisp-mode-hook'.") -(custom-autoload (quote edebug-all-defs) "edebug") +(custom-autoload (quote edebug-all-defs) "edebug" t) (defvar edebug-all-forms nil "\ *Non-nil evaluation of all forms will instrument for Edebug. This doesn't apply to loading or evaluations in the minibuffer. Use the command `edebug-all-forms' to toggle the value of this option.") -(custom-autoload (quote edebug-all-forms) "edebug") +(custom-autoload (quote edebug-all-forms) "edebug" t) (autoload (quote edebug-basic-spec) "edebug" "\ Return t if SPEC uses only extant spec symbols. @@ -8393,7 +8450,7 @@ Toggle edebugging of all forms. ;;;;;; ediff-merge-directory-revisions ediff-merge-directories-with-ancestor ;;;;;; ediff-merge-directories ediff-directories3 ediff-directory-revisions ;;;;;; ediff-directories ediff-buffers3 ediff-buffers ediff-backup -;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17578 34771)) +;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17726 28398)) ;;; Generated autoloads from ediff.el (autoload (quote ediff-files) "ediff" "\ @@ -8631,7 +8688,7 @@ With optional NODE, goes to that node. ;;;*** ;;;### (autoloads (ediff-customize) "ediff-help" "ediff-help.el" -;;;;;; (17401 56225)) +;;;;;; (17403 27596)) ;;; Generated autoloads from ediff-help.el (autoload (quote ediff-customize) "ediff-help" "\ @@ -8641,7 +8698,7 @@ Not documented ;;;*** -;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17401 56225)) +;;;### (autoloads nil "ediff-hook" "ediff-hook.el" (17403 27596)) ;;; Generated autoloads from ediff-hook.el (defvar ediff-window-setup-function) @@ -8654,7 +8711,7 @@ Not documented ;;;*** ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" -;;;;;; (17578 34771)) +;;;;;; (17726 28398)) ;;; Generated autoloads from ediff-mult.el (autoload (quote ediff-show-registry) "ediff-mult" "\ @@ -8667,7 +8724,7 @@ Display Ediff's registry. ;;;*** ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) -;;;;;; "ediff-util" "ediff-util.el" (17401 56227)) +;;;;;; "ediff-util" "ediff-util.el" (17679 3707)) ;;; Generated autoloads from ediff-util.el (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ @@ -8688,7 +8745,7 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. ;;;### (autoloads (format-kbd-macro read-kbd-macro edit-named-kbd-macro ;;;;;; edit-last-kbd-macro edit-kbd-macro) "edmacro" "edmacro.el" -;;;;;; (17383 32100)) +;;;;;; (17618 8193)) ;;; Generated autoloads from edmacro.el (defvar edmacro-eight-bits nil "\ @@ -8741,7 +8798,7 @@ or nil, use a compact 80-column format. ;;;*** ;;;### (autoloads (edt-emulation-on edt-set-scroll-margins) "edt" -;;;;;; "emulation/edt.el" (17383 32143)) +;;;;;; "emulation/edt.el" (17385 8491)) ;;; Generated autoloads from emulation/edt.el (autoload (quote edt-set-scroll-margins) "edt" "\ @@ -8759,7 +8816,7 @@ Turn on EDT Emulation. ;;;*** ;;;### (autoloads (electric-helpify with-electric-help) "ehelp" "ehelp.el" -;;;;;; (17383 32100)) +;;;;;; (17385 8484)) ;;; Generated autoloads from ehelp.el (autoload (quote with-electric-help) "ehelp" "\ @@ -8797,13 +8854,13 @@ Not documented ;;;*** ;;;### (autoloads (turn-on-eldoc-mode eldoc-mode eldoc-minor-mode-string) -;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17383 32138)) +;;;;;; "eldoc" "emacs-lisp/eldoc.el" (17665 54136)) ;;; Generated autoloads from emacs-lisp/eldoc.el (defvar eldoc-minor-mode-string " ElDoc" "\ *String to display in mode line when Eldoc Mode is enabled; nil for none.") -(custom-autoload (quote eldoc-minor-mode-string) "eldoc") +(custom-autoload (quote eldoc-minor-mode-string) "eldoc" t) (autoload (quote eldoc-mode) "eldoc" "\ Toggle ElDoc mode on or off. @@ -8835,8 +8892,8 @@ Emacs Lisp mode) that support Eldoc.") ;;;*** -;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17383 -;;;;;; 32100)) +;;;### (autoloads (elide-head) "elide-head" "elide-head.el" (17385 +;;;;;; 8484)) ;;; Generated autoloads from elide-head.el (autoload (quote elide-head) "elide-head" "\ @@ -8852,7 +8909,7 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. ;;;*** ;;;### (autoloads (elint-initialize) "elint" "emacs-lisp/elint.el" -;;;;;; (17383 32138)) +;;;;;; (17385 8490)) ;;; Generated autoloads from emacs-lisp/elint.el (autoload (quote elint-initialize) "elint" "\ @@ -8863,8 +8920,8 @@ Initialize elint. ;;;*** ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list -;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17383 -;;;;;; 32138)) +;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17385 +;;;;;; 8490)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload (quote elp-instrument-function) "elp" "\ @@ -8898,7 +8955,7 @@ displayed. ;;;*** ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" -;;;;;; (17383 32168)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/emacsbug.el (autoload (quote report-emacs-bug) "emacsbug" "\ @@ -8913,7 +8970,7 @@ Prompts for bug subject. Leaves you in a mail buffer. ;;;;;; 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" -;;;;;; "emerge.el" (17167 12307)) +;;;;;; "emerge.el" (17167 2962)) ;;; Generated autoloads from emerge.el (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge")) @@ -8991,7 +9048,7 @@ Not documented ;;;*** ;;;### (autoloads (encoded-kbd-mode) "encoded-kb" "international/encoded-kb.el" -;;;;;; (17097 33520)) +;;;;;; (17102 18713)) ;;; Generated autoloads from international/encoded-kb.el (defvar encoded-kbd-mode nil "\ @@ -9002,6 +9059,8 @@ use either \\[customize] or the function `encoded-kbd-mode'.") (custom-autoload (quote encoded-kbd-mode) "encoded-kb") +(put (quote encoded-kbd-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote encoded-kbd-mode) "encoded-kb" "\ Toggle Encoded-kbd minor mode. With arg, turn Encoded-kbd mode on if and only if arg is positive. @@ -9019,7 +9078,7 @@ as a multilingual text encoded in a coding system set by ;;;*** ;;;### (autoloads (enriched-decode enriched-encode enriched-mode) -;;;;;; "enriched" "textmodes/enriched.el" (17383 32186)) +;;;;;; "enriched" "textmodes/enriched.el" (17385 8496)) ;;; Generated autoloads from textmodes/enriched.el (autoload (quote enriched-mode) "enriched" "\ @@ -9049,8 +9108,8 @@ Not documented ;;;*** -;;;### (autoloads (erc-select erc-select-read-args) "erc" "erc/erc.el" -;;;;;; (17484 52428)) +;;;### (autoloads (erc-handle-irc-url erc-select erc-select-read-args) +;;;;;; "erc" "erc/erc.el" (17624 52650)) ;;; Generated autoloads from erc/erc.el (autoload (quote erc-select-read-args) "erc" "\ @@ -9068,23 +9127,32 @@ Non-interactively, it takes keyword arguments (full-name (erc-compute-full-name))) That is, if called with + (erc-select :server \"irc.freenode.net\" :full-name \"Harry S Truman\") + server and full-name will be set to those values, whereas -erc-compute-port, erc-compute-nick and erc-compute-full-name will -be invoked for those parameters' values +`erc-compute-port', `erc-compute-nick' and `erc-compute-full-name' will +be invoked for the values of the other parameters. \(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) PASSWORD (FULL-NAME (erc-compute-full-name)))" t nil) +(autoload (quote erc-handle-irc-url) "erc" "\ +Use ERC to IRC on HOST:PORT in CHANNEL as USER with PASSWORD. +If ERC is already connected to HOST:PORT, simply /join CHANNEL. +Otherwise, connect to HOST:PORT as USER and /join CHANNEL. + +\(fn HOST PORT CHANNEL USER PASSWORD)" nil nil) + ;;;*** -;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17397 -;;;;;; 61550)) +;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17601 +;;;;;; 9092)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17457 37501)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17447 52274)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) @@ -9097,7 +9165,7 @@ be invoked for those parameters' values ;;;*** ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) -;;;;;; "erc-dcc" "erc/erc-dcc.el" (17397 61550)) +;;;;;; "erc-dcc" "erc/erc-dcc.el" (17393 3826)) ;;; Generated autoloads from erc/erc-dcc.el (autoload (quote erc-cmd-DCC) "erc-dcc" "\ @@ -9129,7 +9197,7 @@ that subcommand. ;;;;;; erc-ezb-add-session erc-ezb-end-of-session-list erc-ezb-init-session-list ;;;;;; erc-ezb-identify erc-ezb-notice-autodetect erc-ezb-lookup-action ;;;;;; erc-ezb-get-login erc-cmd-ezb) "erc-ezbounce" "erc/erc-ezbounce.el" -;;;;;; (17484 52428)) +;;;;;; (17468 10541)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload (quote erc-cmd-ezb) "erc-ezbounce" "\ @@ -9191,8 +9259,8 @@ Add EZBouncer convenience functions to ERC. ;;;*** -;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17397 -;;;;;; 61550)) +;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17391 +;;;;;; 39324)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -9212,8 +9280,9 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. ;;;*** ;;;### (autoloads (erc-identd-stop erc-identd-start) "erc-identd" -;;;;;; "erc/erc-identd.el" (17457 37501)) +;;;;;; "erc/erc-identd.el" (17601 9092)) ;;; Generated autoloads from erc/erc-identd.el + (autoload 'erc-identd-mode "erc-identd") (autoload (quote erc-identd-start) "erc-identd" "\ Start an identd server listening to port 8113. @@ -9233,7 +9302,7 @@ Not documented ;;;*** ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" -;;;;;; (17397 61551)) +;;;;;; (17601 9092)) ;;; Generated autoloads from erc/erc-imenu.el (autoload (quote erc-create-imenu-index) "erc-imenu" "\ @@ -9243,14 +9312,14 @@ Not documented ;;;*** -;;;### (autoloads nil "erc-join" "erc/erc-join.el" (17484 52428)) +;;;### (autoloads nil "erc-join" "erc/erc-join.el" (17468 10541)) ;;; Generated autoloads from erc/erc-join.el (autoload 'erc-autojoin-mode "erc-join" nil t) ;;;*** ;;;### (autoloads (erc-chanlist erc-list-channels) "erc-list" "erc/erc-list.el" -;;;;;; (17397 61551)) +;;;;;; (17391 39324)) ;;; Generated autoloads from erc/erc-list.el (autoload 'erc-list-mode "erc-list") @@ -9271,7 +9340,7 @@ to RFC and send the LIST header (#321) at start of list transmission. ;;;*** ;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" -;;;;;; "erc/erc-log.el" (17397 61551)) +;;;;;; "erc/erc-log.el" (17624 52650)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -9303,7 +9372,7 @@ You can save every individual message by putting this function on ;;;### (autoloads (erc-delete-dangerous-host erc-add-dangerous-host ;;;;;; erc-delete-keyword erc-add-keyword erc-delete-fool erc-add-fool ;;;;;; erc-delete-pal erc-add-pal) "erc-match" "erc/erc-match.el" -;;;;;; (17397 61551)) +;;;;;; (17632 41885)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9350,7 +9419,7 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. ;;;*** ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" -;;;;;; (17484 52428)) +;;;;;; (17468 10541)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9380,7 +9449,7 @@ Interactively select a server to connect to using `erc-server-alist'. ;;;*** ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" -;;;;;; "erc/erc-notify.el" (17397 61552)) +;;;;;; "erc/erc-notify.el" (17391 39324)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9398,26 +9467,26 @@ Not documented ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17397 61552)) +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17391 39324)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** -;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17397 -;;;;;; 61552)) +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17601 +;;;;;; 9092)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17397 61552)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17391 39324)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17397 61552)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17391 39324)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) @@ -9441,14 +9510,14 @@ When called interactively, read the password using `read-passwd'. ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17397 61552)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17391 39324)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" -;;;;;; (17397 61552)) +;;;;;; (17391 39324)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload (quote erc-speedbar-browser) "erc-speedbar" "\ @@ -9459,20 +9528,20 @@ This will add a speedbar major display mode. ;;;*** -;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17397 -;;;;;; 61552)) +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17618 +;;;;;; 8193)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17397 61552)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17395 55370)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** -;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17397 61552)) +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17601 9092)) ;;; Generated autoloads from erc/erc-track.el (autoload 'erc-track-mode "erc-track" nil t) (autoload 'erc-track-when-inactive-mode "erc-track" nil t) @@ -9480,7 +9549,7 @@ This will add a speedbar major display mode. ;;;*** ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) -;;;;;; "erc-truncate" "erc/erc-truncate.el" (17397 61552)) +;;;;;; "erc-truncate" "erc/erc-truncate.el" (17391 39324)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9500,7 +9569,7 @@ Meant to be used in hooks, like `erc-insert-post-hook'. ;;;*** ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" -;;;;;; (17397 61553)) +;;;;;; (17391 39324)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload (quote erc-xdcc-add-file) "erc-xdcc" "\ @@ -9510,8 +9579,8 @@ Add a file to `erc-xdcc-files'. ;;;*** -;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17383 -;;;;;; 32152)) +;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17385 +;;;;;; 8492)) ;;; Generated autoloads from eshell/esh-mode.el (autoload (quote eshell-mode) "esh-mode" "\ @@ -9523,8 +9592,8 @@ Emacs shell interactive mode. ;;;*** -;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17383 -;;;;;; 32152)) +;;;### (autoloads (eshell-test) "esh-test" "eshell/esh-test.el" (17385 +;;;;;; 8492)) ;;; Generated autoloads from eshell/esh-test.el (autoload (quote eshell-test) "esh-test" "\ @@ -9535,7 +9604,7 @@ Test Eshell to verify that it works as expected. ;;;*** ;;;### (autoloads (eshell-report-bug eshell-command-result eshell-command -;;;;;; eshell) "eshell" "eshell/eshell.el" (17432 37360)) +;;;;;; eshell) "eshell" "eshell/eshell.el" (17427 10521)) ;;; Generated autoloads from eshell/eshell.el (autoload (quote eshell) "eshell" "\ @@ -9581,7 +9650,7 @@ Please include any configuration details that might be involved. ;;;;;; 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" -;;;;;; (17420 36090)) +;;;;;; (17408 40149)) ;;; Generated autoloads from progmodes/etags.el (defvar tags-file-name nil "\ @@ -9883,7 +9952,7 @@ for \\[find-tag] (which see). ;;;;;; ethio-fidel-to-sera-buffer ethio-fidel-to-sera-region ethio-sera-to-fidel-marker ;;;;;; ethio-sera-to-fidel-mail ethio-sera-to-fidel-mail-or-marker ;;;;;; ethio-sera-to-fidel-buffer ethio-sera-to-fidel-region setup-ethiopic-environment-internal) -;;;;;; "ethio-util" "language/ethio-util.el" (17578 34777)) +;;;;;; "ethio-util" "language/ethio-util.el" (17551 7908)) ;;; Generated autoloads from language/ethio-util.el (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ @@ -10078,7 +10147,7 @@ Transcribe Ethiopic characters in ASCII depending on the file extension. ;;;### (autoloads (eudc-load-eudc eudc-query-form eudc-expand-inline ;;;;;; eudc-get-phone eudc-get-email eudc-set-server) "eudc" "net/eudc.el" -;;;;;; (17383 32175)) +;;;;;; (17385 8494)) ;;; Generated autoloads from net/eudc.el (autoload (quote eudc-set-server) "eudc" "\ @@ -10134,7 +10203,7 @@ This does nothing except loading eudc by autoload side-effect. ;;;### (autoloads (eudc-display-jpeg-as-button eudc-display-jpeg-inline ;;;;;; eudc-display-sound eudc-display-mail eudc-display-url eudc-display-generic-binary) -;;;;;; "eudc-bob" "net/eudc-bob.el" (17383 32175)) +;;;;;; "eudc-bob" "net/eudc-bob.el" (17385 8494)) ;;; Generated autoloads from net/eudc-bob.el (autoload (quote eudc-display-generic-binary) "eudc-bob" "\ @@ -10170,7 +10239,7 @@ Display a button for the JPEG DATA. ;;;*** ;;;### (autoloads (eudc-try-bbdb-insert eudc-insert-record-at-point-into-bbdb) -;;;;;; "eudc-export" "net/eudc-export.el" (17383 32175)) +;;;;;; "eudc-export" "net/eudc-export.el" (17385 8494)) ;;; Generated autoloads from net/eudc-export.el (autoload (quote eudc-insert-record-at-point-into-bbdb) "eudc-export" "\ @@ -10187,7 +10256,7 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. ;;;*** ;;;### (autoloads (eudc-edit-hotlist) "eudc-hotlist" "net/eudc-hotlist.el" -;;;;;; (17383 32175)) +;;;;;; (17385 8494)) ;;; Generated autoloads from net/eudc-hotlist.el (autoload (quote eudc-edit-hotlist) "eudc-hotlist" "\ @@ -10197,8 +10266,8 @@ Edit the hotlist of directory servers in a specialized buffer. ;;;*** -;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (17578 -;;;;;; 34775)) +;;;### (autoloads (ewoc-create) "ewoc" "emacs-lisp/ewoc.el" (17531 +;;;;;; 7384)) ;;; Generated autoloads from emacs-lisp/ewoc.el (autoload (quote ewoc-create) "ewoc" "\ @@ -10227,7 +10296,7 @@ fourth arg NOSEP non-nil inhibits this. ;;;### (autoloads (executable-make-buffer-file-executable-if-script-p ;;;;;; executable-self-display executable-set-magic executable-interpret ;;;;;; executable-command-find-posix-p) "executable" "progmodes/executable.el" -;;;;;; (17397 61567)) +;;;;;; (17394 12937)) ;;; Generated autoloads from progmodes/executable.el (autoload (quote executable-command-find-posix-p) "executable" "\ @@ -10269,7 +10338,7 @@ file modes. ;;;*** ;;;### (autoloads (expand-jump-to-next-slot expand-jump-to-previous-slot -;;;;;; expand-add-abbrevs) "expand" "expand.el" (17383 32101)) +;;;;;; expand-add-abbrevs) "expand" "expand.el" (17385 8484)) ;;; Generated autoloads from expand.el (autoload (quote expand-add-abbrevs) "expand" "\ @@ -10312,7 +10381,7 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17397 61567)) +;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17386 33146)) ;;; Generated autoloads from progmodes/f90.el (autoload (quote f90-mode) "f90" "\ @@ -10379,7 +10448,7 @@ with no args, if that value is non-nil. ;;;;;; facemenu-remove-all facemenu-remove-face-props facemenu-set-read-only ;;;;;; facemenu-set-intangible facemenu-set-invisible facemenu-set-face-from-menu ;;;;;; facemenu-set-background facemenu-set-foreground facemenu-set-face) -;;;;;; "facemenu" "facemenu.el" (17578 34771)) +;;;;;; "facemenu" "facemenu.el" (17718 28532)) ;;; Generated autoloads from facemenu.el (define-key global-map "\M-o" 'facemenu-keymap) (autoload 'facemenu-keymap "facemenu" "Keymap for face-changing commands." t 'keymap) @@ -10426,19 +10495,24 @@ Facemenu top-level menu keymap.") (defalias (quote facemenu-menu) facemenu-menu) (autoload (quote facemenu-set-face) "facemenu" "\ -Add FACE to the region or next character typed. -This adds FACE to the top of the face list; any faces lower on the list that -will not show through at all will be removed. +Apply FACE to the region or next character typed. -Interactively, reads the face name with the minibuffer. +If the region is active (normally true except in Transient +Mark mode) and nonempty, and there is no prefix argument, +this command applies FACE to the region. Otherwise, it applies FACE +to the faces to use for the next character +inserted. (Moving point or switching buffers before typing +a character to insert cancels the specification.) -If the region is active (normally true except in Transient Mark mode) -and there is no prefix argument, this command sets the region to the -requested face. +If FACE is `default', to \"apply\" it means clearing +the list of faces to be used. For any other value of FACE, +to \"apply\" it means putting FACE at the front of the list +of faces to be used, and removing any faces further +along in the list that would be completely overridden by +preceding faces (including FACE). -Otherwise, this command specifies the face for the next character -inserted. Moving point or switching buffers before -typing a character to insert cancels the specification. +This command can also add FACE to the menu of faces, +if `facemenu-listed-faces' says to do that. \(fn FACE &optional START END)" t nil) @@ -10542,7 +10616,7 @@ argument BUFFER-NAME is nil, it defaults to *Colors*. ;;;*** ;;;### (autoloads (turn-on-fast-lock fast-lock-mode) "fast-lock" -;;;;;; "obsolete/fast-lock.el" (17383 32179)) +;;;;;; "obsolete/fast-lock.el" (17676 15926)) ;;; Generated autoloads from obsolete/fast-lock.el (autoload (quote fast-lock-mode) "fast-lock" "\ @@ -10583,7 +10657,7 @@ Unconditionally turn on Fast Lock mode. ;;;### (autoloads (feedmail-queue-reminder feedmail-run-the-queue ;;;;;; feedmail-run-the-queue-global-prompt feedmail-run-the-queue-no-prompts -;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17259 50162)) +;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17660 25612)) ;;; Generated autoloads from mail/feedmail.el (autoload (quote feedmail-send-it) "feedmail" "\ @@ -10637,7 +10711,7 @@ you can set feedmail-queue-reminder-alist to nil. ;;;*** ;;;### (autoloads (ffap-bindings dired-at-point ffap-at-mouse ffap-menu -;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17401 56228)) +;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17697 23215)) ;;; Generated autoloads from ffap.el (autoload (quote ffap-next) "ffap" "\ @@ -10693,10 +10767,53 @@ Evaluate the forms in variable `ffap-bindings'. ;;;*** -;;;### (autoloads (file-cache-minibuffer-complete) "filecache" "filecache.el" -;;;;;; (17383 32101)) +;;;### (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" (17669 23128)) ;;; Generated autoloads from filecache.el +(autoload (quote file-cache-add-directory) "filecache" "\ +Add DIRECTORY to the file cache. +If the optional REGEXP argument is non-nil, only files which match it will +be added to the cache. + +\(fn DIRECTORY &optional REGEXP)" t nil) + +(autoload (quote file-cache-add-directory-list) "filecache" "\ +Add DIRECTORY-LIST (a list of directory names) to the file cache. +If the optional REGEXP argument is non-nil, only files which match it +will be added to the cache. Note that the REGEXP is applied to the files +in each directory, not to the directory list itself. + +\(fn DIRECTORY-LIST &optional REGEXP)" t nil) + +(autoload (quote file-cache-add-file) "filecache" "\ +Add FILE to the file cache. + +\(fn FILE)" t nil) + +(autoload (quote file-cache-add-directory-using-find) "filecache" "\ +Use the `find' command to add files to the file cache. +Find is run in DIRECTORY. + +\(fn DIRECTORY)" t nil) + +(autoload (quote file-cache-add-directory-using-locate) "filecache" "\ +Use the `locate' command to add files to the file cache. +STRING is passed as an argument to the locate command. + +\(fn STRING)" t nil) + +(autoload (quote file-cache-add-directory-recursively) "filecache" "\ +Adds DIR and any subdirectories to the file-cache. +This function does not use any external programs +If the optional REGEXP argument is non-nil, only files which match it +will be added to the cache. Note that the REGEXP is applied to the files +in each directory, not to the directory list itself. + +\(fn DIR &optional REGEXP)" t nil) + (autoload (quote file-cache-minibuffer-complete) "filecache" "\ Complete a filename in the minibuffer using a preloaded cache. Filecache does two kinds of substitution: it completes on names in @@ -10712,8 +10829,8 @@ the name is considered already unique; only the second substitution ;;;*** -;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17383 -;;;;;; 32102)) +;;;### (autoloads (filesets-init) "filesets" "filesets.el" (17714 +;;;;;; 34817)) ;;; Generated autoloads from filesets.el (autoload (quote filesets-init) "filesets" "\ @@ -10724,7 +10841,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;*** -;;;### (autoloads nil "fill" "textmodes/fill.el" (17585 4276)) +;;;### (autoloads nil "fill" "textmodes/fill.el" (17665 54136)) ;;; Generated autoloads from textmodes/fill.el (put 'colon-double-space 'safe-local-variable 'booleanp) @@ -10732,7 +10849,7 @@ Set up hooks, load the cache file -- if existing -- and build the menu. ;;;### (autoloads (find-grep-dired find-name-dired find-dired find-grep-options ;;;;;; find-ls-subdir-switches find-ls-option) "find-dired" "find-dired.el" -;;;;;; (17383 32102)) +;;;;;; (17651 3608)) ;;; Generated autoloads from find-dired.el (defvar find-ls-option (if (eq system-type (quote berkeley-unix)) (quote ("-ls" . "-gilsb")) (quote ("-exec ls -ld {} \\;" . "-ld"))) "\ @@ -10741,7 +10858,7 @@ This is a cons of two strings (FIND-OPTION . LS-SWITCHES). FIND-OPTION gives the option (or options) to `find' that produce the desired output. LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.") -(custom-autoload (quote find-ls-option) "find-dired") +(custom-autoload (quote find-ls-option) "find-dired" t) (defvar find-ls-subdir-switches "-al" "\ `ls' switches for inserting subdirectories in `*Find*' buffers. @@ -10749,14 +10866,14 @@ This should contain the \"-l\" switch. Use the \"-F\" or \"-b\" switches if and only if you also use them for `find-ls-option'.") -(custom-autoload (quote find-ls-subdir-switches) "find-dired") +(custom-autoload (quote find-ls-subdir-switches) "find-dired" t) (defvar find-grep-options (if (or (eq system-type (quote berkeley-unix)) (string-match "solaris2" system-configuration) (string-match "irix" system-configuration)) "-s" "-q") "\ *Option to grep to be as silent as possible. On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it. On other systems, the closest you can come is to use `-l'.") -(custom-autoload (quote find-grep-options) "find-dired") +(custom-autoload (quote find-grep-options) "find-dired" t) (autoload (quote find-dired) "find-dired" "\ Run `find' and go into Dired mode on a buffer of the output. @@ -10793,14 +10910,16 @@ Thus ARG can also contain additional grep options. ;;;### (autoloads (ff-mouse-find-other-file-other-window ff-mouse-find-other-file ;;;;;; ff-find-other-file ff-get-other-file) "find-file" "find-file.el" -;;;;;; (17383 32102)) +;;;;;; (17601 9091)) ;;; Generated autoloads from find-file.el -(defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (setq fname (buffer-substring (match-beginning 2) (match-end 2)))))) "\ -*A list of regular expressions for `ff-find-file'. -Specifies how to recognize special constructs such as include files -etc. and an associated method for extracting the filename from that -construct.") +(defvar ff-special-constructs (quote (("^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]" lambda nil (buffer-substring (match-beginning 2) (match-end 2))))) "\ +*List of special constructs for `ff-treat-as-special' to recognize. +Each element, tried in order, has the form (REGEXP . EXTRACT). +If REGEXP matches the current line (from the beginning of the line), +`ff-treat-as-special' calls function EXTRACT with no args. +If EXTRACT returns nil, keep trying. Otherwise, return the +filename that EXTRACT returned.") (autoload (quote ff-get-other-file) "find-file" "\ Find the header or source file corresponding to this file. @@ -10885,7 +11004,7 @@ Visit the file you click on in another window. ;;;;;; 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" (17590 36099)) +;;;;;; "emacs-lisp/find-func.el" (17697 23215)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload (quote find-library) "find-func" "\ @@ -11039,7 +11158,7 @@ Define some key bindings for the find-function family of functions. ;;;*** ;;;### (autoloads (find-lisp-find-dired-filter find-lisp-find-dired-subdirectories -;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17397 61540)) +;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17394 12936)) ;;; Generated autoloads from find-lisp.el (autoload (quote find-lisp-find-dired) "find-lisp" "\ @@ -11060,7 +11179,7 @@ Change the filter on a find-lisp-find-dired buffer to REGEXP. ;;;*** ;;;### (autoloads (finder-by-keyword finder-commentary finder-list-keywords) -;;;;;; "finder" "finder.el" (17466 42705)) +;;;;;; "finder" "finder.el" (17476 4797)) ;;; Generated autoloads from finder.el (autoload (quote finder-list-keywords) "finder" "\ @@ -11082,7 +11201,7 @@ Find packages matching a given keyword. ;;;*** ;;;### (autoloads (enable-flow-control-on enable-flow-control) "flow-ctrl" -;;;;;; "flow-ctrl.el" (17383 32103)) +;;;;;; "flow-ctrl.el" (17385 8484)) ;;; Generated autoloads from flow-ctrl.el (autoload (quote enable-flow-control) "flow-ctrl" "\ @@ -11104,7 +11223,7 @@ to get the effect of a C-q. ;;;*** ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" -;;;;;; (17484 52429)) +;;;;;; (17476 4798)) ;;; Generated autoloads from gnus/flow-fill.el (autoload (quote fill-flowed-encode) "flow-fill" "\ @@ -11120,7 +11239,7 @@ Not documented ;;;*** ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) -;;;;;; "flymake" "progmodes/flymake.el" (17397 61567)) +;;;;;; "flymake" "progmodes/flymake.el" (17717 4883)) ;;; Generated autoloads from progmodes/flymake.el (autoload (quote flymake-mode) "flymake" "\ @@ -11144,7 +11263,7 @@ Turn flymake mode off. ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off ;;;;;; turn-off-flyspell turn-on-flyspell flyspell-mode flyspell-prog-mode) -;;;;;; "flyspell" "textmodes/flyspell.el" (17578 34779)) +;;;;;; "flyspell" "textmodes/flyspell.el" (17724 51883)) ;;; Generated autoloads from textmodes/flyspell.el (autoload (quote flyspell-prog-mode) "flyspell" "\ @@ -11213,7 +11332,7 @@ Flyspell whole buffer. ;;;### (autoloads (follow-delete-other-windows-and-split follow-mode ;;;;;; turn-off-follow-mode turn-on-follow-mode) "follow" "follow.el" -;;;;;; (17487 53545)) +;;;;;; (17495 43954)) ;;; Generated autoloads from follow.el (autoload (quote turn-on-follow-mode) "follow" "\ @@ -11287,8 +11406,8 @@ in your `~/.emacs' file, replacing [f7] by your favourite key: ;;;*** -;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17383 -;;;;;; 32168)) +;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17385 +;;;;;; 8494)) ;;; Generated autoloads from mail/footnote.el (autoload (quote footnote-mode) "footnote" "\ @@ -11309,7 +11428,7 @@ key binding ;;;*** ;;;### (autoloads (forms-find-file-other-window forms-find-file forms-mode) -;;;;;; "forms" "forms.el" (17383 32104)) +;;;;;; "forms" "forms.el" (17385 8485)) ;;; Generated autoloads from forms.el (autoload (quote forms-mode) "forms" "\ @@ -11346,7 +11465,7 @@ Visit a file in Forms mode in other window. ;;;*** ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" -;;;;;; "progmodes/fortran.el" (17358 25800)) +;;;;;; "progmodes/fortran.el" (17360 11434)) ;;; Generated autoloads from progmodes/fortran.el (defvar fortran-tab-mode-default nil "\ @@ -11432,7 +11551,7 @@ with no args, if that value is non-nil. ;;;*** ;;;### (autoloads (fortune fortune-to-signature fortune-compile fortune-from-region -;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17383 32182)) +;;;;;; fortune-add-fortune) "fortune" "play/fortune.el" (17385 8495)) ;;; Generated autoloads from play/fortune.el (autoload (quote fortune-add-fortune) "fortune" "\ @@ -11482,7 +11601,7 @@ and choose the directory as the fortune-file. ;;;*** ;;;### (autoloads (gdb-enable-debug gdba) "gdb-ui" "progmodes/gdb-ui.el" -;;;;;; (17578 34779)) +;;;;;; (17723 56210)) ;;; Generated autoloads from progmodes/gdb-ui.el (autoload (quote gdba) "gdb-ui" "\ @@ -11540,13 +11659,13 @@ detailed description of this mode. (defvar gdb-enable-debug nil "\ Non-nil means record the process input and output in `gdb-debug-ring'.") -(custom-autoload (quote gdb-enable-debug) "gdb-ui") +(custom-autoload (quote gdb-enable-debug) "gdb-ui" t) ;;;*** ;;;### (autoloads (generic-make-keywords-list generic-mode generic-mode-internal -;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17383 -;;;;;; 32139)) +;;;;;; define-generic-mode) "generic" "emacs-lisp/generic.el" (17385 +;;;;;; 8490)) ;;; Generated autoloads from emacs-lisp/generic.el (defvar generic-mode-list nil "\ @@ -11621,7 +11740,7 @@ regular expression that can be used as an element of ;;;*** ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" -;;;;;; (17420 36091)) +;;;;;; (17408 40149)) ;;; Generated autoloads from progmodes/glasses.el (autoload (quote glasses-mode) "glasses" "\ @@ -11634,7 +11753,7 @@ at places they belong to. ;;;*** ;;;### (autoloads (gmm-tool-bar-from-list gmm-widget-p gmm-error -;;;;;; gmm-message) "gmm-utils" "gnus/gmm-utils.el" (17521 64537)) +;;;;;; gmm-message) "gmm-utils" "gnus/gmm-utils.el" (17714 34817)) ;;; Generated autoloads from gnus/gmm-utils.el (autoload (quote gmm-message) "gmm-utils" "\ @@ -11681,9 +11800,38 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. ;;;*** ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server -;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17432 37362)) +;;;;;; gnus-slave-no-server gnus-select-method gnus-getenv-nntpserver) +;;;;;; "gnus" "gnus/gnus.el" (17726 28398)) ;;; Generated autoloads from gnus/gnus.el +(autoload (quote gnus-getenv-nntpserver) "gnus" "\ +Find default nntp server. +Check the NNTPSERVER environment variable and the +`gnus-nntpserver-file' file. + +\(fn)" nil nil) + +(defvar gnus-select-method (condition-case nil (nconc (list (quote nntp) (or (condition-case nil (gnus-getenv-nntpserver) (error nil)) (when (and gnus-default-nntp-server (not (string= gnus-default-nntp-server ""))) gnus-default-nntp-server) "news")) (if (or (null gnus-nntp-service) (equal gnus-nntp-service "nntp")) nil (list gnus-nntp-service))) (error nil)) "\ +Default method for selecting a newsgroup. +This variable should be a list, where the first element is how the +news is to be fetched, the second is the address. + +For instance, if you want to get your news via \"flab.flab.edu\" using +NNTP, you could say: + +\(setq gnus-select-method '(nntp \"flab.flab.edu\")) + +If you want to use your local spool, say: + +\(setq gnus-select-method (list 'nnspool (system-name))) + +If you use this variable, you must set `gnus-nntp-server' to nil. + +There is a lot more to know about select methods and virtual servers - +see the manual for details.") + +(custom-autoload (quote gnus-select-method) "gnus" t) + (autoload (quote gnus-slave-no-server) "gnus" "\ Read network news as a slave, without connecting to the local server. @@ -11732,7 +11880,7 @@ prompt the user for the name of an NNTP server to use. ;;;;;; 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" (17578 34776)) +;;;;;; "gnus/gnus-agent.el" (17551 7908)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload (quote gnus-unplugged) "gnus-agent" "\ @@ -11823,7 +11971,7 @@ If CLEAN, obsolete (ignore). ;;;*** ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" -;;;;;; (17578 34776)) +;;;;;; (17663 14247)) ;;; Generated autoloads from gnus/gnus-art.el (autoload (quote gnus-article-prepare-display) "gnus-art" "\ @@ -11834,7 +11982,7 @@ Make the current buffer look like a nice article. ;;;*** ;;;### (autoloads (gnus-audio-play) "gnus-audio" "gnus/gnus-audio.el" -;;;;;; (17383 32155)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-audio.el (autoload (quote gnus-audio-play) "gnus-audio" "\ @@ -11846,8 +11994,8 @@ Play a sound FILE through the speaker. ;;;### (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" (17383 -;;;;;; 32155)) +;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17385 +;;;;;; 8493)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload (quote gnus-jog-cache) "gnus-cache" "\ @@ -11889,7 +12037,7 @@ supported. ;;;*** ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) -;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17383 32155)) +;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17385 8493)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload (quote gnus-delay-article) "gnus-delay" "\ @@ -11925,7 +12073,7 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. ;;;*** ;;;### (autoloads (gnus-user-format-function-D gnus-user-format-function-d) -;;;;;; "gnus-diary" "gnus/gnus-diary.el" (17578 34776)) +;;;;;; "gnus-diary" "gnus/gnus-diary.el" (17577 7322)) ;;; Generated autoloads from gnus/gnus-diary.el (autoload (quote gnus-user-format-function-d) "gnus-diary" "\ @@ -11941,7 +12089,7 @@ Not documented ;;;*** ;;;### (autoloads (turn-on-gnus-dired-mode) "gnus-dired" "gnus/gnus-dired.el" -;;;;;; (17383 32155)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-dired.el (autoload (quote turn-on-gnus-dired-mode) "gnus-dired" "\ @@ -11952,7 +12100,7 @@ Convenience method to turn on gnus-dired-mode. ;;;*** ;;;### (autoloads (gnus-draft-reminder) "gnus-draft" "gnus/gnus-draft.el" -;;;;;; (17420 36082)) +;;;;;; (17698 30385)) ;;; Generated autoloads from gnus/gnus-draft.el (autoload (quote gnus-draft-reminder) "gnus-draft" "\ @@ -11964,8 +12112,8 @@ Reminder user if there are unsent drafts. ;;;### (autoloads (gnus-convert-png-to-face gnus-convert-face-to-png ;;;;;; gnus-face-from-file gnus-x-face-from-file gnus-insert-random-x-face-header -;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17466 -;;;;;; 42710)) +;;;;;; gnus-random-x-face) "gnus-fun" "gnus/gnus-fun.el" (17476 +;;;;;; 4800)) ;;; Generated autoloads from gnus/gnus-fun.el (autoload (quote gnus-random-x-face) "gnus-fun" "\ @@ -12004,7 +12152,7 @@ FILE should be a PNG file that's 48x48 and smaller than or equal to ;;;*** ;;;### (autoloads (gnus-fetch-group-other-frame gnus-fetch-group) -;;;;;; "gnus-group" "gnus/gnus-group.el" (17578 34776)) +;;;;;; "gnus-group" "gnus/gnus-group.el" (17726 28398)) ;;; Generated autoloads from gnus/gnus-group.el (autoload (quote gnus-fetch-group) "gnus-group" "\ @@ -12021,7 +12169,7 @@ Pop up a frame and enter GROUP. ;;;*** ;;;### (autoloads (gnus-batch-score) "gnus-kill" "gnus/gnus-kill.el" -;;;;;; (17383 32156)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-kill.el (defalias (quote gnus-batch-kill) (quote gnus-batch-score)) @@ -12036,7 +12184,7 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score ;;;### (autoloads (gnus-mailing-list-mode gnus-mailing-list-insinuate ;;;;;; turn-on-gnus-mailing-list-mode) "gnus-ml" "gnus/gnus-ml.el" -;;;;;; (17578 34776)) +;;;;;; (17551 7908)) ;;; Generated autoloads from gnus/gnus-ml.el (autoload (quote turn-on-gnus-mailing-list-mode) "gnus-ml" "\ @@ -12061,7 +12209,7 @@ Minor mode for providing mailing-list commands. ;;;### (autoloads (gnus-group-split-fancy gnus-group-split gnus-group-split-update ;;;;;; gnus-group-split-setup) "gnus-mlspl" "gnus/gnus-mlspl.el" -;;;;;; (17383 32157)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-mlspl.el (autoload (quote gnus-group-split-setup) "gnus-mlspl" "\ @@ -12162,7 +12310,7 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: ;;;*** ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el" -;;;;;; (17383 32157)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-move.el (autoload (quote gnus-change-server) "gnus-move" "\ @@ -12174,7 +12322,7 @@ Update the .newsrc.eld file to reflect the change of nntp server. ;;;*** ;;;### (autoloads (gnus-button-reply gnus-button-mailto gnus-msg-mail) -;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17383 32157)) +;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17385 8493)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload (quote gnus-msg-mail) "gnus-msg" "\ @@ -12199,7 +12347,7 @@ Like `message-reply'. ;;;*** ;;;### (autoloads (gnus-nocem-load-cache gnus-nocem-scan-groups) -;;;;;; "gnus-nocem" "gnus/gnus-nocem.el" (17432 37361)) +;;;;;; "gnus-nocem" "gnus/gnus-nocem.el" (17427 10521)) ;;; Generated autoloads from gnus/gnus-nocem.el (autoload (quote gnus-nocem-scan-groups) "gnus-nocem" "\ @@ -12216,7 +12364,7 @@ Load the NoCeM cache. ;;;### (autoloads (gnus-treat-newsgroups-picon gnus-treat-mail-picon ;;;;;; gnus-treat-from-picon) "gnus-picon" "gnus/gnus-picon.el" -;;;;;; (17383 32157)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-picon.el (autoload (quote gnus-treat-from-picon) "gnus-picon" "\ @@ -12243,7 +12391,7 @@ If picons are already displayed, remove them. ;;;;;; gnus-sorted-nintersection gnus-sorted-range-intersection ;;;;;; gnus-sorted-intersection gnus-intersection gnus-sorted-complement ;;;;;; gnus-sorted-ndifference gnus-sorted-difference) "gnus-range" -;;;;;; "gnus/gnus-range.el" (17383 32157)) +;;;;;; "gnus/gnus-range.el" (17385 8493)) ;;; Generated autoloads from gnus/gnus-range.el (autoload (quote gnus-sorted-difference) "gnus-range" "\ @@ -12311,7 +12459,7 @@ Add NUM into sorted LIST by side effect. ;;;*** ;;;### (autoloads (gnus-registry-install-hooks gnus-registry-initialize) -;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17383 32157)) +;;;;;; "gnus-registry" "gnus/gnus-registry.el" (17704 4325)) ;;; Generated autoloads from gnus/gnus-registry.el (autoload (quote gnus-registry-initialize) "gnus-registry" "\ @@ -12327,8 +12475,8 @@ Install the registry hooks. ;;;*** ;;;### (autoloads (gnus-sieve-article-add-rule gnus-sieve-generate -;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17484 -;;;;;; 52430)) +;;;;;; gnus-sieve-update) "gnus-sieve" "gnus/gnus-sieve.el" (17476 +;;;;;; 4800)) ;;; Generated autoloads from gnus/gnus-sieve.el (autoload (quote gnus-sieve-update) "gnus-sieve" "\ @@ -12356,7 +12504,7 @@ Not documented ;;;*** ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el" -;;;;;; (17383 32158)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-soup.el (autoload (quote gnus-batch-brew-soup) "gnus-soup" "\ @@ -12376,7 +12524,7 @@ Note -- this function hasn't been implemented yet. ;;;*** ;;;### (autoloads (gnus-update-format) "gnus-spec" "gnus/gnus-spec.el" -;;;;;; (17383 32158)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-spec.el (autoload (quote gnus-update-format) "gnus-spec" "\ @@ -12387,8 +12535,8 @@ Update the format specification near point. ;;;*** ;;;### (autoloads (gnus-fixup-nnimap-unread-after-getting-new-news -;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17432 -;;;;;; 37361)) +;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17601 +;;;;;; 9092)) ;;; Generated autoloads from gnus/gnus-start.el (autoload (quote gnus-declare-backend) "gnus-start" "\ @@ -12404,7 +12552,7 @@ Not documented ;;;*** ;;;### (autoloads (gnus-add-configuration) "gnus-win" "gnus/gnus-win.el" -;;;;;; (17383 32159)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/gnus-win.el (autoload (quote gnus-add-configuration) "gnus-win" "\ @@ -12414,7 +12562,7 @@ Add the window configuration CONF to `gnus-buffer-configuration'. ;;;*** -;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17383 32182)) +;;;### (autoloads (gomoku) "gomoku" "play/gomoku.el" (17385 8495)) ;;; Generated autoloads from play/gomoku.el (autoload (quote gomoku) "gomoku" "\ @@ -12441,7 +12589,7 @@ Use \\[describe-mode] for more info. ;;;*** ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" -;;;;;; "net/goto-addr.el" (17582 28846)) +;;;;;; "net/goto-addr.el" (17579 53341)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") @@ -12471,13 +12619,13 @@ Also fontifies the buffer appropriately (see `goto-address-fontify-p' and ;;;### (autoloads (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" (17590 36100)) +;;;;;; grep-window-height) "grep" "progmodes/grep.el" (17645 64048)) ;;; Generated autoloads from progmodes/grep.el (defvar grep-window-height nil "\ *Number of lines in a grep window. If nil, use `compilation-window-height'.") -(custom-autoload (quote grep-window-height) "grep") +(custom-autoload (quote grep-window-height) "grep" t) (defvar grep-command nil "\ The default grep command for \\[grep]. @@ -12488,19 +12636,19 @@ include it when specifying `grep-command'. The default value of this variable is set up by `grep-compute-defaults'; call that function before using this variable in your program.") -(custom-autoload (quote grep-command) "grep") +(custom-autoload (quote grep-command) "grep" t) (defvar grep-find-command nil "\ The default find command for \\[grep-find]. The default value of this variable is set up by `grep-compute-defaults'; call that function before using this variable in your program.") -(custom-autoload (quote grep-find-command) "grep") +(custom-autoload (quote grep-find-command) "grep" t) (defvar grep-setup-hook nil "\ List of hook functions run by `grep-process-setup' (see `run-hooks').") -(custom-autoload (quote grep-setup-hook) "grep") +(custom-autoload (quote grep-setup-hook) "grep" t) (defvar grep-regexp-alist (quote (("^\\(.+?\\)\\(:[ ]*\\)\\([0-9]+\\)\\2" 1 3) ("^\\(\\(.+?\\):\\([0-9]+\\):\\).*?\\(\\[01;31m\\(?:\\[K\\)?\\)\\(.*?\\)\\(\\[[0-9]*m\\)" 2 3 ((lambda nil (setq compilation-error-screen-columns nil) (- (match-beginning 4) (match-end 1))) lambda nil (- (match-end 5) (match-end 1) (- (match-end 4) (match-beginning 4)))) nil 1) ("^Binary file \\(.+\\) matches$" 1 nil nil 0 1))) "\ Regexp used to match grep hits. See `compilation-error-regexp-alist'.") @@ -12516,7 +12664,7 @@ This variable's value takes effect when `grep-compute-defaults' is called.") (defvar grep-find-use-xargs nil "\ Whether \\[grep-find] uses the `xargs' utility by default. -If nil, it uses `find -exec'; if `gnu', it uses `find -print0' and `xargs -0'; +If `exec', it uses `find -exec'; if `gnu', it uses `find -print0' and `xargs -0'; if not nil and not `gnu', it uses `find -print' and `xargs'. This variable's value takes effect when `grep-compute-defaults' is called.") @@ -12608,7 +12756,7 @@ This command shares argument histories with \\[lgrep] and \\[grep-find]. ;;;*** -;;;### (autoloads (gs-load-image) "gs" "gs.el" (17383 32104)) +;;;### (autoloads (gs-load-image) "gs" "gs.el" (17385 8485)) ;;; Generated autoloads from gs.el (autoload (quote gs-load-image) "gs" "\ @@ -12622,7 +12770,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** ;;;### (autoloads (gdb-script-mode bashdb jdb pdb perldb xdb dbx -;;;;;; sdb gdb) "gud" "progmodes/gud.el" (17578 34779)) +;;;;;; sdb gdb) "gud" "progmodes/gud.el" (17661 55157)) ;;; Generated autoloads from progmodes/gud.el (autoload (quote gdb) "gud" "\ @@ -12708,8 +12856,8 @@ Major mode for editing GDB scripts ;;;*** -;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17383 -;;;;;; 32182)) +;;;### (autoloads (handwrite) "handwrite" "play/handwrite.el" (17385 +;;;;;; 8495)) ;;; Generated autoloads from play/handwrite.el (autoload (quote handwrite) "handwrite" "\ @@ -12727,7 +12875,7 @@ Variables: handwrite-linespace (default 12) ;;;*** ;;;### (autoloads (hanoi-unix-64 hanoi-unix hanoi) "hanoi" "play/hanoi.el" -;;;;;; (17590 36100)) +;;;;;; (17586 30575)) ;;; Generated autoloads from play/hanoi.el (autoload (quote hanoi) "hanoi" "\ @@ -12757,7 +12905,7 @@ to be updated. ;;;### (autoloads (scan-buf-previous-region scan-buf-next-region ;;;;;; scan-buf-move-to-region help-at-pt-display-when-idle help-at-pt-set-timer ;;;;;; help-at-pt-cancel-timer display-local-help help-at-pt-kbd-string -;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17383 32104)) +;;;;;; help-at-pt-string) "help-at-pt" "help-at-pt.el" (17709 24917)) ;;; Generated autoloads from help-at-pt.el (autoload (quote help-at-pt-string) "help-at-pt" "\ @@ -12830,12 +12978,12 @@ Thus, Custom distinguishes between a nil value and other values that disable the feature, which Custom identifies with `never'. The default is `never'.") -(custom-autoload (quote help-at-pt-display-when-idle) "help-at-pt") +(custom-autoload (quote help-at-pt-display-when-idle) "help-at-pt" nil) (autoload (quote scan-buf-move-to-region) "help-at-pt" "\ Go to the start of the next region with non-nil PROP property. Then run HOOK, which should be a quoted symbol that is a normal -hook.variable, or an expression evaluating to such a symbol. +hook variable, or an expression evaluating to such a symbol. Adjacent areas with different non-nil PROP properties are considered different regions. @@ -12887,7 +13035,7 @@ different regions. With numeric argument ARG, behaves like ;;;### (autoloads (describe-categories describe-syntax describe-variable ;;;;;; variable-at-point describe-function-1 describe-simplify-lib-file-name ;;;;;; help-C-file-name describe-function help-with-tutorial) "help-fns" -;;;;;; "help-fns.el" (17590 36098)) +;;;;;; "help-fns.el" (17717 4883)) ;;; Generated autoloads from help-fns.el (autoload (quote help-with-tutorial) "help-fns" "\ @@ -12953,7 +13101,7 @@ BUFFER should be a buffer or a buffer name. ;;;*** ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" -;;;;;; (17383 32105)) +;;;;;; (17385 8485)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -12969,7 +13117,7 @@ A value of nil means skip the middle step, so that ;;;### (autoloads (help-xref-on-pp help-insert-xref-button help-xref-button ;;;;;; help-make-xrefs help-setup-xref help-mode-finish help-mode-setup -;;;;;; help-mode) "help-mode" "help-mode.el" (17590 36098)) +;;;;;; help-mode) "help-mode" "help-mode.el" (17604 60389)) ;;; Generated autoloads from help-mode.el (autoload (quote help-mode) "help-mode" "\ @@ -13052,7 +13200,7 @@ Add xrefs for symbols in `pp's output between FROM and TO. ;;;*** ;;;### (autoloads (Helper-help Helper-describe-bindings) "helper" -;;;;;; "emacs-lisp/helper.el" (17590 36099)) +;;;;;; "emacs-lisp/helper.el" (17585 27776)) ;;; Generated autoloads from emacs-lisp/helper.el (autoload (quote Helper-describe-bindings) "helper" "\ @@ -13068,7 +13216,7 @@ Provide help for current mode. ;;;*** ;;;### (autoloads (hexlify-buffer hexl-find-file hexl-mode) "hexl" -;;;;;; "hexl.el" (17585 4275)) +;;;;;; "hexl.el" (17585 27774)) ;;; Generated autoloads from hexl.el (autoload (quote hexl-mode) "hexl" "\ @@ -13165,7 +13313,7 @@ This discards the buffer's undo information. ;;;### (autoloads (hi-lock-write-interactive-patterns hi-lock-unface-buffer ;;;;;; hi-lock-face-phrase-buffer hi-lock-face-buffer hi-lock-line-face-buffer ;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" -;;;;;; (17383 32105)) +;;;;;; (17385 8485)) ;;; Generated autoloads from hi-lock.el (autoload (quote hi-lock-mode) "hi-lock" "\ @@ -13222,6 +13370,8 @@ use either \\[customize] or the function `global-hi-lock-mode'.") (custom-autoload (quote global-hi-lock-mode) "hi-lock") +(put (quote global-hi-lock-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote global-hi-lock-mode) "hi-lock" "\ Toggle Hi-Lock mode in every buffer. With prefix ARG, turn Global-Hi-Lock mode on if and only if ARG is positive. @@ -13289,7 +13439,7 @@ be found in variable `hi-lock-interactive-patterns'. ;;;*** ;;;### (autoloads (hide-ifdef-lines hide-ifdef-read-only hide-ifdef-initially -;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17521 64539)) +;;;;;; hide-ifdef-mode) "hideif" "progmodes/hideif.el" (17520 49736)) ;;; Generated autoloads from progmodes/hideif.el (autoload (quote hide-ifdef-mode) "hideif" "\ @@ -13344,7 +13494,7 @@ how the hiding is done: ;;;*** ;;;### (autoloads (hs-minor-mode) "hideshow" "progmodes/hideshow.el" -;;;;;; (17397 61568)) +;;;;;; (17394 12938)) ;;; Generated autoloads from progmodes/hideshow.el (defvar hs-special-modes-alist (quote ((c-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (c++-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning) (bibtex-mode ("^@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil hs-c-like-adjust-block-beginning))) "\ @@ -13402,7 +13552,7 @@ Key bindings: ;;;;;; highlight-compare-buffers highlight-changes-rotate-faces ;;;;;; highlight-changes-previous-change highlight-changes-next-change ;;;;;; highlight-changes-mode highlight-changes-remove-highlight) -;;;;;; "hilit-chg" "hilit-chg.el" (17397 61541)) +;;;;;; "hilit-chg" "hilit-chg.el" (17394 12936)) ;;; Generated autoloads from hilit-chg.el (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ @@ -13532,7 +13682,7 @@ variable `highlight-changes-global-changes-existing-buffers' is non-nil). ;;;;;; 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" (17383 32106)) +;;;;;; "hippie-exp.el" (17385 8485)) ;;; Generated autoloads from hippie-exp.el (defvar hippie-expand-try-functions-list (quote (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)) "\ @@ -13605,7 +13755,7 @@ argument VERBOSE non-nil makes the function verbose. ;;;*** ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" -;;;;;; (17365 2729)) +;;;;;; (17656 37701)) ;;; Generated autoloads from hl-line.el (autoload (quote hl-line-mode) "hl-line" "\ @@ -13629,9 +13779,10 @@ addition to `hl-line-highlight' on `post-command-hook'. Non-nil if Global-Hl-Line mode is enabled. See the command `global-hl-line-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `global-hl-line-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `global-hl-line-mode'.") -(custom-autoload (quote global-hl-line-mode) "hl-line") +(custom-autoload (quote global-hl-line-mode) "hl-line" nil) (autoload (quote global-hl-line-mode) "hl-line" "\ Global minor mode to highlight the line about point in the current window. @@ -13645,7 +13796,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" -;;;;;; (17432 37359)) +;;;;;; (17427 10521)) ;;; Generated autoloads from calendar/holidays.el (autoload (quote holidays) "holidays" "\ @@ -13682,7 +13833,7 @@ The optional LABEL is used to label the buffer created. ;;;*** ;;;### (autoloads (hscroll-global-mode hscroll-mode turn-on-hscroll) -;;;;;; "hscroll" "obsolete/hscroll.el" (17383 32179)) +;;;;;; "hscroll" "obsolete/hscroll.el" (17385 8495)) ;;; Generated autoloads from obsolete/hscroll.el (autoload (quote turn-on-hscroll) "hscroll" "\ @@ -13708,8 +13859,8 @@ Also see `automatic-hscrolling'. ;;;*** -;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17397 -;;;;;; 61555)) +;;;### (autoloads (html2text) "html2text" "gnus/html2text.el" (17403 +;;;;;; 27598)) ;;; Generated autoloads from gnus/html2text.el (autoload (quote html2text) "html2text" "\ @@ -13741,7 +13892,7 @@ Convert HTML to plain text in the current buffer. ;;;;;; ibuffer-backward-filter-group ibuffer-forward-filter-group ;;;;;; ibuffer-toggle-filter-group ibuffer-mouse-toggle-filter-group ;;;;;; ibuffer-interactive-filter-by-mode ibuffer-mouse-filter-by-mode -;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17457 37498)) +;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17698 30385)) ;;; Generated autoloads from ibuf-ext.el (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ @@ -14107,8 +14258,8 @@ defaults to one. ;;;*** ;;;### (autoloads (define-ibuffer-filter define-ibuffer-op define-ibuffer-sorter -;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17457 -;;;;;; 37498)) +;;;;;; define-ibuffer-column) "ibuf-macs" "ibuf-macs.el" (17476 +;;;;;; 4797)) ;;; Generated autoloads from ibuf-macs.el (autoload (quote define-ibuffer-column) "ibuf-macs" "\ @@ -14197,7 +14348,7 @@ bound to the current value of the filter. ;;;*** ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) -;;;;;; "ibuffer" "ibuffer.el" (17578 34772)) +;;;;;; "ibuffer" "ibuffer.el" (17647 30728)) ;;; Generated autoloads from ibuffer.el (autoload (quote ibuffer-list-buffers) "ibuffer" "\ @@ -14238,7 +14389,7 @@ FORMATS is the value to use for `ibuffer-formats'. ;;;### (autoloads (icalendar-import-buffer icalendar-import-file ;;;;;; icalendar-export-region icalendar-export-file) "icalendar" -;;;;;; "calendar/icalendar.el" (17397 61548)) +;;;;;; "calendar/icalendar.el" (17403 27597)) ;;; Generated autoloads from calendar/icalendar.el (autoload (quote icalendar-export-file) "icalendar" "\ @@ -14290,17 +14441,18 @@ buffer `*icalendar-errors*'. ;;;*** -;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17401 -;;;;;; 56228)) +;;;### (autoloads (icomplete-mode) "icomplete" "icomplete.el" (17686 +;;;;;; 46252)) ;;; Generated autoloads from icomplete.el (defvar icomplete-mode nil "\ Non-nil if Icomplete mode is enabled. See the command `icomplete-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `icomplete-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `icomplete-mode'.") -(custom-autoload (quote icomplete-mode) "icomplete") +(custom-autoload (quote icomplete-mode) "icomplete" nil) (autoload (quote icomplete-mode) "icomplete" "\ Toggle incremental minibuffer completion for this Emacs session. @@ -14310,7 +14462,7 @@ With a numeric argument, turn Icomplete mode on iff ARG is positive. ;;;*** -;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17397 61568)) +;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17394 12938)) ;;; Generated autoloads from progmodes/icon.el (autoload (quote icon-mode) "icon" "\ @@ -14351,7 +14503,7 @@ with no args, if that value is non-nil. ;;;*** ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" -;;;;;; (17515 39529)) +;;;;;; (17601 9092)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload (quote idlwave-shell) "idlw-shell" "\ @@ -14377,7 +14529,7 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" -;;;;;; (17515 39529)) +;;;;;; (17670 58701)) ;;; Generated autoloads from progmodes/idlwave.el (autoload (quote idlwave-mode) "idlwave" "\ @@ -14460,7 +14612,7 @@ The main features of this mode are \\i IF statement template \\elif IF-ELSE statement template \\b BEGIN - + For a full list, use \\[idlwave-list-abbrevs]. Some templates also have direct keybindings - see the list of keybindings below. @@ -14512,8 +14664,8 @@ The main features of this mode are ;;;;;; ido-find-alternate-file ido-find-file-other-window ido-find-file ;;;;;; ido-find-file-in-dir ido-switch-buffer-other-frame ido-insert-buffer ;;;;;; ido-kill-buffer ido-display-buffer ido-switch-buffer-other-window -;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17590 -;;;;;; 36098)) +;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17717 +;;;;;; 4883)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -14528,7 +14680,7 @@ should be enabled. The following values are possible: Setting this variable directly does not take effect; use either \\[customize] or the function `ido-mode'.") -(custom-autoload (quote ido-mode) "ido") +(custom-autoload (quote ido-mode) "ido" nil) (autoload (quote ido-mode) "ido" "\ Toggle ido speed-ups on or off. @@ -14774,7 +14926,7 @@ DEF, if non-nil, is the default value. ;;;*** -;;;### (autoloads (ielm) "ielm" "ielm.el" (17383 32107)) +;;;### (autoloads (ielm) "ielm" "ielm.el" (17385 8485)) ;;; Generated autoloads from ielm.el (add-hook 'same-window-buffer-names "*ielm*") @@ -14787,7 +14939,7 @@ Switches to the buffer `*ielm*', or creates it if it does not exist. ;;;*** ;;;### (autoloads (iimage-mode turn-on-iimage-mode) "iimage" "iimage.el" -;;;;;; (17383 32107)) +;;;;;; (17385 8485)) ;;; Generated autoloads from iimage.el (autoload (quote turn-on-iimage-mode) "iimage" "\ @@ -14806,7 +14958,7 @@ Toggle inline image minor mode. ;;;;;; insert-image put-image create-image 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" -;;;;;; (17484 52424)) +;;;;;; (17485 5460)) ;;; Generated autoloads from image.el (autoload (quote image-type-from-data) "image" "\ @@ -14968,7 +15120,7 @@ Example: ;;;### (autoloads (auto-image-file-mode insert-image-file image-file-name-regexp ;;;;;; image-file-name-regexps image-file-name-extensions) "image-file" -;;;;;; "image-file.el" (17383 32107)) +;;;;;; "image-file.el" (17385 8485)) ;;; Generated autoloads from image-file.el (defvar image-file-name-extensions (quote ("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm")) "\ @@ -15015,6 +15167,8 @@ use either \\[customize] or the function `auto-image-file-mode'.") (custom-autoload (quote auto-image-file-mode) "image-file") +(put (quote auto-image-file-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote auto-image-file-mode) "image-file" "\ Toggle visiting of image files as images. With prefix argument ARG, turn on if positive, otherwise off. @@ -15029,7 +15183,7 @@ Image files are those whose name has an extension in ;;;*** ;;;### (autoloads (image-mode-maybe image-minor-mode image-mode) -;;;;;; "image-mode" "image-mode.el" (17578 34772)) +;;;;;; "image-mode" "image-mode.el" (17656 37701)) ;;; Generated autoloads from image-mode.el (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) (push '("\\.png\\'" . image-mode) auto-mode-alist) @@ -15067,7 +15221,7 @@ information on these modes. ;;;*** ;;;### (autoloads (imenu imenu-add-menubar-index imenu-add-to-menubar -;;;;;; imenu-sort-function) "imenu" "imenu.el" (17585 4275)) +;;;;;; imenu-sort-function) "imenu" "imenu.el" (17656 38154)) ;;; Generated autoloads from imenu.el (defvar imenu-sort-function nil "\ @@ -15085,7 +15239,7 @@ The function should take two arguments and return t if the first element should come before the second. The arguments are cons cells; \(NAME . POSITION). Look at `imenu--sort-by-name' for an example.") -(custom-autoload (quote imenu-sort-function) "imenu") +(custom-autoload (quote imenu-sort-function) "imenu" t) (defvar imenu-generic-expression nil "\ The regex pattern to use for creating a buffer index. @@ -15182,7 +15336,7 @@ for more information. ;;;### (autoloads (indian-char-glyph indian-glyph-char in-is13194-pre-write-conversion ;;;;;; in-is13194-post-read-conversion indian-compose-string indian-compose-region) -;;;;;; "ind-util" "language/ind-util.el" (17346 38886)) +;;;;;; "ind-util" "language/ind-util.el" (17340 11482)) ;;; Generated autoloads from language/ind-util.el (autoload (quote indian-compose-region) "ind-util" "\ @@ -15225,7 +15379,7 @@ See also the function `indian-glyph-char'. ;;;### (autoloads (inferior-lisp inferior-lisp-prompt inferior-lisp-load-command ;;;;;; inferior-lisp-program inferior-lisp-filter-regexp) "inf-lisp" -;;;;;; "progmodes/inf-lisp.el" (17578 34779)) +;;;;;; "progmodes/inf-lisp.el" (17536 30816)) ;;; Generated autoloads from progmodes/inf-lisp.el (defvar inferior-lisp-filter-regexp "\\`\\s *\\(:\\(\\w\\|\\s_\\)\\)?\\s *\\'" "\ @@ -15292,7 +15446,7 @@ of `inferior-lisp-program'). Runs the hooks from ;;;### (autoloads (Info-speedbar-browser Info-goto-emacs-key-command-node ;;;;;; Info-goto-emacs-command-node Info-mode info-apropos Info-index ;;;;;; Info-directory Info-on-current-buffer info-standalone info-emacs-manual -;;;;;; info info-other-window) "info" "info.el" (17590 36099)) +;;;;;; info info-other-window) "info" "info.el" (17664 34046)) ;;; Generated autoloads from info.el (autoload (quote info-other-window) "info" "\ @@ -15458,7 +15612,7 @@ This will add a speedbar major display mode. ;;;### (autoloads (info-complete-file info-complete-symbol info-lookup-file ;;;;;; info-lookup-symbol info-lookup-reset) "info-look" "info-look.el" -;;;;;; (17383 32108)) +;;;;;; (17712 850)) ;;; Generated autoloads from info-look.el (autoload (quote info-lookup-reset) "info-look" "\ @@ -15506,7 +15660,7 @@ Perform completion on file preceding point. ;;;*** ;;;### (autoloads (info-xref-check-all-custom info-xref-check-all -;;;;;; info-xref-check) "info-xref" "info-xref.el" (17521 64536)) +;;;;;; info-xref-check) "info-xref" "info-xref.el" (17520 49736)) ;;; Generated autoloads from info-xref.el (autoload (quote info-xref-check) "info-xref" "\ @@ -15533,7 +15687,7 @@ quite a while. ;;;*** ;;;### (autoloads (batch-info-validate Info-validate Info-split Info-tagify) -;;;;;; "informat" "informat.el" (17383 32108)) +;;;;;; "informat" "informat.el" (17385 8485)) ;;; Generated autoloads from informat.el (autoload (quote Info-tagify) "informat" "\ @@ -15574,7 +15728,7 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" ;;;### (autoloads (isearch-process-search-multibyte-characters isearch-toggle-input-method ;;;;;; isearch-toggle-specified-input-method) "isearch-x" "international/isearch-x.el" -;;;;;; (17116 6720)) +;;;;;; (17120 44797)) ;;; Generated autoloads from international/isearch-x.el (autoload (quote isearch-toggle-specified-input-method) "isearch-x" "\ @@ -15594,8 +15748,8 @@ Not documented ;;;*** -;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (17383 -;;;;;; 32108)) +;;;### (autoloads (isearchb-activate) "isearchb" "isearchb.el" (17385 +;;;;;; 8485)) ;;; Generated autoloads from isearchb.el (autoload (quote isearchb-activate) "isearchb" "\ @@ -15609,7 +15763,7 @@ accessed via isearchb. ;;;*** ;;;### (autoloads (iso-accents-mode) "iso-acc" "obsolete/iso-acc.el" -;;;;;; (17383 32179)) +;;;;;; (17385 8495)) ;;; Generated autoloads from obsolete/iso-acc.el (autoload (quote iso-accents-mode) "iso-acc" "\ @@ -15642,7 +15796,7 @@ and a negative argument disables it. ;;;### (autoloads (iso-cvt-define-menu iso-cvt-write-only iso-cvt-read-only ;;;;;; iso-sgml2iso iso-iso2sgml iso-iso2duden iso-iso2gtex iso-gtex2iso ;;;;;; iso-tex2iso iso-iso2tex iso-german iso-spanish) "iso-cvt" -;;;;;; "international/iso-cvt.el" (17097 33520)) +;;;;;; "international/iso-cvt.el" (17102 18714)) ;;; Generated autoloads from international/iso-cvt.el (autoload (quote iso-spanish) "iso-cvt" "\ @@ -15726,7 +15880,7 @@ Add submenus to the File menu, to convert to and from various formats. ;;;*** ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" -;;;;;; (17097 33521)) +;;;;;; (17102 18715)) ;;; Generated autoloads from international/iso-transl.el (or key-translation-map (setq key-translation-map (make-sparse-keymap))) (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) @@ -15739,7 +15893,7 @@ Add submenus to the File menu, to convert to and from various formats. ;;;;;; ispell-region ispell-change-dictionary ispell-kill-ispell ;;;;;; ispell-help ispell-pdict-save ispell-word ispell-local-dictionary-alist ;;;;;; ispell-personal-dictionary) "ispell" "textmodes/ispell.el" -;;;;;; (17578 34779)) +;;;;;; (17685 33972)) ;;; Generated autoloads from textmodes/ispell.el (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) @@ -15748,7 +15902,7 @@ Add submenus to the File menu, to convert to and from various formats. If nil, the default personal dictionary, \"~/.ispell_DICTNAME\" is used, where DICTNAME is the name of your default dictionary.") -(custom-autoload (quote ispell-personal-dictionary) "ispell") +(custom-autoload (quote ispell-personal-dictionary) "ispell" t) (put 'ispell-local-dictionary 'safe-local-variable 'string-or-null-p) (defvar ispell-local-dictionary-alist nil "\ @@ -15759,7 +15913,7 @@ To make permanent changes to your dictionary definitions, you will need to make your changes in this variable, save, and then re-start emacs.") -(custom-autoload (quote ispell-local-dictionary-alist) "ispell") +(custom-autoload (quote ispell-local-dictionary-alist) "ispell" t) (setq ispell-dictionary-alist-1 (quote ((nil "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("american" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("brasileiro" "[A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[^A-Z\301\311\315\323\332\300\310\314\322\331\303\325\307\334\302\312\324a-z\341\351\355\363\372\340\350\354\362\371\343\365\347\374\342\352\364]" "[']" nil nil nil iso-8859-1) ("british" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1) ("castellano" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B") "~tex" iso-8859-1) ("castellano8" "[A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[^A-Z\301\311\315\321\323\332\334a-z\341\351\355\361\363\372\374]" "[-]" nil ("-B" "-d" "castellano") "~latin1" iso-8859-1)))) @@ -16027,8 +16181,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to ;;;*** -;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17438 -;;;;;; 58632)) +;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17440 +;;;;;; 13082)) ;;; Generated autoloads from iswitchb.el (defvar iswitchb-mode nil "\ @@ -16039,6 +16193,8 @@ use either \\[customize] or the function `iswitchb-mode'.") (custom-autoload (quote iswitchb-mode) "iswitchb") +(put (quote iswitchb-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote iswitchb-mode) "iswitchb" "\ Toggle Iswitchb global minor mode. With arg, turn Iswitchb mode on if and only iff ARG is positive. @@ -16052,7 +16208,7 @@ This mode enables switching between buffers using substrings. See ;;;### (autoloads (read-hiragana-string japanese-zenkaku-region japanese-hankaku-region ;;;;;; japanese-hiragana-region japanese-katakana-region japanese-zenkaku ;;;;;; japanese-hankaku japanese-hiragana japanese-katakana setup-japanese-environment-internal) -;;;;;; "japan-util" "language/japan-util.el" (17097 33526)) +;;;;;; "japan-util" "language/japan-util.el" (17102 18773)) ;;; Generated autoloads from language/japan-util.el (autoload (quote setup-japanese-environment-internal) "japan-util" "\ @@ -16130,7 +16286,7 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. ;;;*** ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" -;;;;;; "jka-compr.el" (17420 36078)) +;;;;;; "jka-compr.el" (17411 10839)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16155,7 +16311,7 @@ by `jka-compr-installed'. ;;;### (autoloads (keypad-setup keypad-numlock-shifted-setup keypad-shifted-setup ;;;;;; keypad-numlock-setup keypad-setup) "keypad" "emulation/keypad.el" -;;;;;; (17383 32143)) +;;;;;; (17385 8491)) ;;; Generated autoloads from emulation/keypad.el (defvar keypad-setup nil "\ @@ -16211,7 +16367,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' ;;;*** ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" -;;;;;; (17301 45595)) +;;;;;; (17304 45460)) ;;; Generated autoloads from international/kinsoku.el (autoload (quote kinsoku) "kinsoku" "\ @@ -16232,8 +16388,8 @@ the context of text formatting. ;;;*** -;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17097 -;;;;;; 33521)) +;;;### (autoloads (kkc-region) "kkc" "international/kkc.el" (17721 +;;;;;; 20491)) ;;; Generated autoloads from international/kkc.el (defvar kkc-after-update-conversion-functions nil "\ @@ -16258,7 +16414,7 @@ and the return value is the length of the conversion. ;;;### (autoloads (kmacro-end-call-mouse kmacro-end-and-call-macro ;;;;;; kmacro-end-or-call-macro kmacro-start-macro-or-insert-counter ;;;;;; kmacro-call-macro kmacro-end-macro kmacro-start-macro) "kmacro" -;;;;;; "kmacro.el" (17503 24306)) +;;;;;; "kmacro.el" (17651 3608)) ;;; Generated autoloads from kmacro.el (global-set-key "\C-x(" 'kmacro-start-macro) (global-set-key "\C-x)" 'kmacro-end-macro) @@ -16365,7 +16521,7 @@ If kbd macro currently being defined end it before activating it. ;;;### (autoloads (kannada-post-read-conversion kannada-compose-string ;;;;;; kannada-compose-region) "knd-util" "language/knd-util.el" -;;;;;; (17097 33526)) +;;;;;; (17102 18774)) ;;; Generated autoloads from language/knd-util.el (defconst kannada-consonant "[\x51f75-\x51fb9]") @@ -16388,7 +16544,7 @@ Not documented ;;;*** ;;;### (autoloads (setup-korean-environment-internal) "korea-util" -;;;;;; "language/korea-util.el" (17097 33526)) +;;;;;; "language/korea-util.el" (17102 18775)) ;;; Generated autoloads from language/korea-util.el (defvar default-korean-keyboard (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "") "\ @@ -16403,7 +16559,7 @@ Not documented ;;;*** ;;;### (autoloads (lm lm-test-run) "landmark" "play/landmark.el" -;;;;;; (17582 28846)) +;;;;;; (17579 53341)) ;;; Generated autoloads from play/landmark.el (defalias (quote landmark-repeat) (quote lm-test-run)) @@ -16437,8 +16593,8 @@ Use \\[describe-mode] for more info. ;;;### (autoloads (lao-compose-region lao-composition-function lao-post-read-conversion ;;;;;; lao-transcribe-roman-to-lao-string lao-transcribe-single-roman-syllable-to-lao -;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17097 -;;;;;; 33526)) +;;;;;; lao-compose-string) "lao-util" "language/lao-util.el" (17102 +;;;;;; 18775)) ;;; Generated autoloads from language/lao-util.el (autoload (quote lao-compose-string) "lao-util" "\ @@ -16487,15 +16643,15 @@ Not documented ;;;### (autoloads (latexenc-find-file-coding-system latexenc-coding-system-to-inputenc ;;;;;; latexenc-inputenc-to-coding-system latex-inputenc-coding-alist) -;;;;;; "latexenc" "international/latexenc.el" (17383 32167)) +;;;;;; "latexenc" "international/latexenc.el" (17664 20313)) ;;; Generated autoloads from international/latexenc.el -(defvar latex-inputenc-coding-alist (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ +(defvar latex-inputenc-coding-alist (quote (("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ Mapping from LaTeX encodings in \"inputenc.sty\" to Emacs coding systems. LaTeX encodings are specified with \"\\usepackage[encoding]{inputenc}\". Used by the function `latexenc-find-file-coding-system'.") -(custom-autoload (quote latex-inputenc-coding-alist) "latexenc") +(custom-autoload (quote latex-inputenc-coding-alist) "latexenc" t) (autoload (quote latexenc-inputenc-to-coding-system) "latexenc" "\ Return the corresponding coding-system for the specified input encoding. @@ -16519,7 +16675,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. ;;;*** ;;;### (autoloads (latin1-display-ucs-per-lynx latin1-display latin1-display) -;;;;;; "latin1-disp" "international/latin1-disp.el" (17097 33522)) +;;;;;; "latin1-disp" "international/latin1-disp.el" (17102 18720)) ;;; Generated autoloads from international/latin1-disp.el (defvar latin1-display nil "\ @@ -16563,7 +16719,7 @@ use either \\[customize] or the function `latin1-display'.") ;;;*** ;;;### (autoloads (turn-on-lazy-lock lazy-lock-mode) "lazy-lock" -;;;;;; "obsolete/lazy-lock.el" (17383 32179)) +;;;;;; "obsolete/lazy-lock.el" (17385 8495)) ;;; Generated autoloads from obsolete/lazy-lock.el (autoload (quote lazy-lock-mode) "lazy-lock" "\ @@ -16631,7 +16787,7 @@ Unconditionally turn on Lazy Lock mode. ;;;*** ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" -;;;;;; (17397 61570)) +;;;;;; (17607 45513)) ;;; Generated autoloads from progmodes/ld-script.el (add-to-list (quote auto-mode-alist) (quote ("\\.ld[si]?\\>" . ld-script-mode))) @@ -16646,7 +16802,7 @@ A major mode to edit GNU ld script files ;;;*** ;;;### (autoloads (ledit-from-lisp-mode ledit-mode) "ledit" "ledit.el" -;;;;;; (17383 32110)) +;;;;;; (17385 8486)) ;;; Generated autoloads from ledit.el (defconst ledit-save-files t "\ @@ -16680,7 +16836,7 @@ Not documented ;;;*** -;;;### (autoloads (life) "life" "play/life.el" (17383 32182)) +;;;### (autoloads (life) "life" "play/life.el" (17674 51268)) ;;; Generated autoloads from play/life.el (autoload (quote life) "life" "\ @@ -16693,8 +16849,8 @@ generations (this defaults to 1). ;;;*** -;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (17484 -;;;;;; 52424)) +;;;### (autoloads (unload-feature) "loadhist" "loadhist.el" (17613 +;;;;;; 21909)) ;;; Generated autoloads from loadhist.el (autoload (quote unload-feature) "loadhist" "\ @@ -16717,14 +16873,14 @@ such as redefining an Emacs function. ;;;*** ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) -;;;;;; "locate" "locate.el" (17578 34772)) +;;;;;; "locate" "locate.el" (17669 23128)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches "-al" "\ `ls' switches for inserting subdirectories in `*Locate*' buffers. This should contain the \"-l\" switch, but not the \"-F\" or \"-b\" switches.") -(custom-autoload (quote locate-ls-subdir-switches) "locate") +(custom-autoload (quote locate-ls-subdir-switches) "locate" t) (autoload (quote locate) "locate" "\ Run the program `locate', putting results in `*Locate*' buffer. @@ -16764,7 +16920,7 @@ except that FILTER is not optional. ;;;*** -;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17494 22059)) +;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17495 43954)) ;;; Generated autoloads from log-edit.el (autoload (quote log-edit) "log-edit" "\ @@ -16785,8 +16941,8 @@ If BUFFER is non-nil `log-edit' will jump to that buffer, use it to edit the ;;;*** -;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17494 -;;;;;; 22059)) +;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17587 +;;;;;; 57939)) ;;; Generated autoloads from log-view.el (autoload (quote log-view-mode) "log-view" "\ @@ -16796,8 +16952,8 @@ Major mode for browsing CVS log output. ;;;*** -;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17590 -;;;;;; 36099)) +;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17709 +;;;;;; 24917)) ;;; Generated autoloads from longlines.el (autoload (quote longlines-mode) "longlines" "\ @@ -16818,8 +16974,8 @@ are indicated with a symbol. ;;;*** ;;;### (autoloads (print-region lpr-region print-buffer lpr-buffer -;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17383 -;;;;;; 32111)) +;;;;;; lpr-command lpr-switches printer-name) "lpr" "lpr.el" (17682 +;;;;;; 43101)) ;;; Generated autoloads from lpr.el (defvar lpr-windows-system (memq system-type (quote (emx win32 w32 mswindows ms-dos windows-nt)))) @@ -16841,7 +16997,7 @@ printers, or \"COM1\" to \"COM4\" or \"AUX\" for serial printers, or it to the name of a file, in which case the output gets appended to that file. If you want to discard the printed output, set this to \"NUL\".") -(custom-autoload (quote printer-name) "lpr") +(custom-autoload (quote printer-name) "lpr" t) (defvar lpr-switches nil "\ *List of strings to pass as extra options for the printer program. @@ -16849,7 +17005,7 @@ It is recommended to set `printer-name' instead of including an explicit switch on this list. See `lpr-command'.") -(custom-autoload (quote lpr-switches) "lpr") +(custom-autoload (quote lpr-switches) "lpr" t) (defvar lpr-command (cond (lpr-windows-system "") (lpr-lp-system "lp") (t "lpr")) "\ *Name of program for printing a file. @@ -16862,7 +17018,7 @@ Windows NT and Novell Netware respectively) are handled specially, using treated like `lpr' except that an explicit filename is given as the last argument.") -(custom-autoload (quote lpr-command) "lpr") +(custom-autoload (quote lpr-command) "lpr" t) (autoload (quote lpr-buffer) "lpr" "\ Print buffer contents without pagination or page headers. @@ -16913,7 +17069,7 @@ for further customization of the printer command. ;;;*** ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" -;;;;;; (17383 32111)) +;;;;;; (17385 8487)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -16924,8 +17080,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** -;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17397 -;;;;;; 61548)) +;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17386 +;;;;;; 33146)) ;;; Generated autoloads from calendar/lunar.el (autoload (quote phases-of-moon) "lunar" "\ @@ -16938,8 +17094,8 @@ This function is suitable for execution in a .emacs file. ;;;*** -;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17397 -;;;;;; 61570)) +;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17394 +;;;;;; 12938)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload (quote m4-mode) "m4-mode" "\ @@ -16951,7 +17107,7 @@ A major mode to edit m4 macro files. ;;;*** ;;;### (autoloads (macroexpand-all) "macroexp" "emacs-lisp/macroexp.el" -;;;;;; (17383 32140)) +;;;;;; (17385 8490)) ;;; Generated autoloads from emacs-lisp/macroexp.el (autoload (quote macroexpand-all) "macroexp" "\ @@ -16965,7 +17121,7 @@ definitions to shadow the loaded ones for use in file byte-compilation. ;;;*** ;;;### (autoloads (apply-macro-to-region-lines kbd-macro-query insert-kbd-macro -;;;;;; name-last-kbd-macro) "macros" "macros.el" (17383 32112)) +;;;;;; name-last-kbd-macro) "macros" "macros.el" (17385 8487)) ;;; Generated autoloads from macros.el (autoload (quote name-last-kbd-macro) "macros" "\ @@ -17054,7 +17210,7 @@ and then select the region of un-tablified names and use ;;;*** ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" -;;;;;; "mail/mail-extr.el" (17383 32168)) +;;;;;; "mail/mail-extr.el" (17385 8494)) ;;; Generated autoloads from mail/mail-extr.el (autoload (quote mail-extract-address-components) "mail-extr" "\ @@ -17086,7 +17242,7 @@ Convert mail domain DOMAIN to the country it corresponds to. ;;;### (autoloads (mail-hist-put-headers-into-history mail-hist-keep-history ;;;;;; mail-hist-enable mail-hist-define-keys) "mail-hist" "mail/mail-hist.el" -;;;;;; (17383 32168)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/mail-hist.el (autoload (quote mail-hist-define-keys) "mail-hist" "\ @@ -17117,8 +17273,8 @@ This function normally would be called when the message is sent. ;;;### (autoloads (mail-fetch-field mail-unquote-printable-region ;;;;;; mail-unquote-printable mail-quote-printable mail-file-babyl-p -;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17383 -;;;;;; 32168)) +;;;;;; mail-use-rfc822) "mail-utils" "mail/mail-utils.el" (17385 +;;;;;; 8494)) ;;; Generated autoloads from mail/mail-utils.el (defvar mail-use-rfc822 nil "\ @@ -17170,7 +17326,7 @@ If 4th arg LIST is non-nil, return a list of all such fields. ;;;*** ;;;### (autoloads (define-mail-abbrev build-mail-abbrevs mail-abbrevs-setup) -;;;;;; "mailabbrev" "mail/mailabbrev.el" (17383 32168)) +;;;;;; "mailabbrev" "mail/mailabbrev.el" (17385 8494)) ;;; Generated autoloads from mail/mailabbrev.el (autoload (quote mail-abbrevs-setup) "mailabbrev" "\ @@ -17193,8 +17349,8 @@ If DEFINITION contains multiple addresses, separate them with commas. ;;;*** ;;;### (autoloads (mail-complete define-mail-alias expand-mail-aliases -;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17383 -;;;;;; 32169)) +;;;;;; mail-complete-style) "mailalias" "mail/mailalias.el" (17385 +;;;;;; 8494)) ;;; Generated autoloads from mail/mailalias.el (defvar mail-complete-style (quote angles) "\ @@ -17240,7 +17396,7 @@ current header, calls `mail-complete-function' and passes prefix arg if any. ;;;*** ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" -;;;;;; (17383 32169)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/mailclient.el (autoload (quote mailclient-send-it) "mailclient" "\ @@ -17254,7 +17410,7 @@ The mail client is taken to be the handler of mailto URLs. ;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode ;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) -;;;;;; "make-mode" "progmodes/make-mode.el" (17578 34779)) +;;;;;; "make-mode" "progmodes/make-mode.el" (17692 12587)) ;;; Generated autoloads from progmodes/make-mode.el (autoload (quote makefile-mode) "make-mode" "\ @@ -17371,8 +17527,8 @@ An adapted `makefile-mode' that knows about imake. ;;;*** -;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17383 -;;;;;; 32112)) +;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17385 +;;;;;; 8487)) ;;; Generated autoloads from makesum.el (autoload (quote make-command-summary) "makesum" "\ @@ -17383,7 +17539,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads (man-follow man) "man" "man.el" (17466 42706)) +;;;### (autoloads (man-follow man) "man" "man.el" (17661 57057)) ;;; Generated autoloads from man.el (defalias (quote manual-entry) (quote man)) @@ -17410,7 +17566,7 @@ Get a Un*x manual page of the item under point and put it in a buffer. ;;;*** -;;;### (autoloads (master-mode) "master" "master.el" (17161 57259)) +;;;### (autoloads (master-mode) "master" "master.el" (17148 25016)) ;;; Generated autoloads from master.el (autoload (quote master-mode) "master" "\ @@ -17432,8 +17588,8 @@ yourself the value of `master-of' by calling `master-show-slave'. ;;;*** -;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17578 -;;;;;; 34772)) +;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17681 +;;;;;; 20649)) ;;; Generated autoloads from menu-bar.el (put (quote menu-bar-mode) (quote standard-value) (quote (t))) @@ -17442,9 +17598,10 @@ yourself the value of `master-of' by calling `master-show-slave'. Non-nil if Menu-Bar mode is enabled. See the command `menu-bar-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `menu-bar-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `menu-bar-mode'.") -(custom-autoload (quote menu-bar-mode) "menu-bar") +(custom-autoload (quote menu-bar-mode) "menu-bar" nil) (autoload (quote menu-bar-mode) "menu-bar" "\ Toggle display of a menu bar on each frame. @@ -17467,7 +17624,7 @@ turn on menu bars; otherwise, turn off menu bars. ;;;;;; message-cite-function message-yank-prefix message-citation-line-function ;;;;;; message-send-mail-function message-user-organization-file ;;;;;; message-signature-separator message-from-style) "message" -;;;;;; "gnus/message.el" (17578 34776)) +;;;;;; "gnus/message.el" (17726 28398)) ;;; Generated autoloads from gnus/message.el (defvar message-from-style (quote default) "\ @@ -17483,17 +17640,17 @@ If `angles', they look like: Otherwise, most addresses look like `angles', but they look like `parens' if `angles' would need quoting and `parens' would not.") -(custom-autoload (quote message-from-style) "message") +(custom-autoload (quote message-from-style) "message" t) (defvar message-signature-separator "^-- *$" "\ Regexp matching the signature separator.") -(custom-autoload (quote message-signature-separator) "message") +(custom-autoload (quote message-signature-separator) "message" t) (defvar message-user-organization-file "/usr/lib/news/organization" "\ *Local news organization file.") -(custom-autoload (quote message-user-organization-file) "message") +(custom-autoload (quote message-user-organization-file) "message" t) (defvar message-send-mail-function (quote message-send-mail-with-sendmail) "\ Function to call to send the current buffer as mail. @@ -17506,7 +17663,7 @@ Valid values include `message-send-mail-with-sendmail' (the default), See also `send-mail-function'.") -(custom-autoload (quote message-send-mail-function) "message") +(custom-autoload (quote message-send-mail-function) "message" t) (defvar message-citation-line-function (quote message-insert-citation-line) "\ *Function called to insert the \"Whomever writes:\" line. @@ -17516,14 +17673,14 @@ Note that Gnus provides a feature where the reader can click on people who read your message will have to change their Gnus configuration. See the variable `gnus-cite-attribution-suffix'.") -(custom-autoload (quote message-citation-line-function) "message") +(custom-autoload (quote message-citation-line-function) "message" t) (defvar message-yank-prefix "> " "\ *Prefix inserted on the lines of yanked messages. Fix `message-cite-prefix-regexp' if it is set to an abnormal value. See also `message-yank-cited-prefix'.") -(custom-autoload (quote message-yank-prefix) "message") +(custom-autoload (quote message-yank-prefix) "message" t) (defvar message-cite-function (quote message-cite-original) "\ *Function for citing an original message. @@ -17531,7 +17688,7 @@ Predefined functions include `message-cite-original' and `message-cite-original-without-signature'. Note that `message-cite-original' uses `mail-citation-hook' if that is non-nil.") -(custom-autoload (quote message-cite-function) "message") +(custom-autoload (quote message-cite-function) "message" t) (defvar message-indent-citation-function (quote message-indent-citation) "\ *Function for modifying a citation just inserted in the mail buffer. @@ -17539,7 +17696,7 @@ This can also be a list of functions. Each function can find the citation between (point) and (mark t). And each function should leave point and mark around the citation text as modified.") -(custom-autoload (quote message-indent-citation-function) "message") +(custom-autoload (quote message-indent-citation-function) "message" t) (defvar message-signature t "\ *String to be inserted at the end of the message buffer. @@ -17547,19 +17704,19 @@ If t, the `message-signature-file' file will be inserted instead. If a function, the result from the function will be used instead. If a form, the result from the form will be used instead.") -(custom-autoload (quote message-signature) "message") +(custom-autoload (quote message-signature) "message" t) (defvar message-signature-file "~/.signature" "\ *Name of file containing the text inserted at end of message buffer. Ignored if the named file doesn't exist. If nil, don't insert a signature.") -(custom-autoload (quote message-signature-file) "message") +(custom-autoload (quote message-signature-file) "message" t) (defvar message-signature-insert-empty-line t "\ *If non-nil, insert an empty line before the signature separator.") -(custom-autoload (quote message-signature-insert-empty-line) "message") +(custom-autoload (quote message-signature-insert-empty-line) "message" t) (define-mail-user-agent (quote message-user-agent) (quote message-mail) (quote message-send-and-exit) (quote message-kill-buffer) (quote message-send-hook)) @@ -17721,7 +17878,7 @@ which specify the range to operate on. ;;;*** ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" -;;;;;; (17397 61570)) +;;;;;; (17394 12938)) ;;; Generated autoloads from progmodes/meta-mode.el (autoload (quote metafont-mode) "meta-mode" "\ @@ -17748,7 +17905,7 @@ Turning on MetaPost mode calls the value of the variable ;;;### (autoloads (metamail-region metamail-buffer metamail-interpret-body ;;;;;; metamail-interpret-header) "metamail" "mail/metamail.el" -;;;;;; (17383 32169)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/metamail.el (autoload (quote metamail-interpret-header) "metamail" "\ @@ -17793,7 +17950,7 @@ redisplayed as output is inserted. ;;;### (autoloads (mh-fully-kill-draft mh-send-letter mh-user-agent-compose ;;;;;; mh-smail-batch mh-smail-other-window mh-smail) "mh-comp" -;;;;;; "mh-e/mh-comp.el" (17578 34777)) +;;;;;; "mh-e/mh-comp.el" (17689 24335)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload (quote mh-smail) "mh-comp" "\ @@ -17880,7 +18037,7 @@ delete the draft message. ;;;*** -;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17578 34777)) +;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17578 42698)) ;;; Generated autoloads from mh-e/mh-e.el (put (quote mh-progs) (quote risky-local-variable) t) @@ -17897,7 +18054,7 @@ Display version information about MH-E and the MH mail handling system. ;;;*** ;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" -;;;;;; "mh-e/mh-folder.el" (17484 52433)) +;;;;;; "mh-e/mh-folder.el" (17485 5461)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload (quote mh-rmail) "mh-folder" "\ @@ -17979,7 +18136,7 @@ perform the operation on all messages in that region. ;;;*** ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" -;;;;;; "midnight.el" (17420 36079)) +;;;;;; "midnight.el" (17727 28649)) ;;; Generated autoloads from midnight.el (autoload (quote clean-buffer-list) "midnight" "\ @@ -18006,7 +18163,7 @@ to its second argument TM. ;;;*** ;;;### (autoloads (minibuffer-electric-default-mode) "minibuf-eldef" -;;;;;; "minibuf-eldef.el" (17383 32112)) +;;;;;; "minibuf-eldef.el" (17385 8487)) ;;; Generated autoloads from minibuf-eldef.el (defvar minibuffer-electric-default-mode nil "\ @@ -18017,6 +18174,8 @@ use either \\[customize] or the function `minibuffer-electric-default-mode'.") (custom-autoload (quote minibuffer-electric-default-mode) "minibuf-eldef") +(put (quote minibuffer-electric-default-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote minibuffer-electric-default-mode) "minibuf-eldef" "\ Toggle Minibuffer Electric Default mode. When active, minibuffer prompts that show a default value only show the @@ -18033,7 +18192,7 @@ Returns non-nil if the new state is enabled. ;;;*** ;;;### (autoloads (mixal-mode) "mixal-mode" "progmodes/mixal-mode.el" -;;;;;; (17397 61570)) +;;;;;; (17394 12938)) ;;; Generated autoloads from progmodes/mixal-mode.el (autoload (quote mixal-mode) "mixal-mode" "\ @@ -18048,7 +18207,7 @@ Major mode for the mixal asm language. ;;;### (autoloads (malayalam-composition-function malayalam-post-read-conversion ;;;;;; malayalam-compose-region) "mlm-util" "language/mlm-util.el" -;;;;;; (17346 38886)) +;;;;;; (17340 11482)) ;;; Generated autoloads from language/mlm-util.el (autoload (quote malayalam-compose-region) "mlm-util" "\ @@ -18071,7 +18230,7 @@ PATTERN regexp. ;;;*** ;;;### (autoloads (mm-inline-external-body mm-extern-cache-contents) -;;;;;; "mm-extern" "gnus/mm-extern.el" (17484 52431)) +;;;;;; "mm-extern" "gnus/mm-extern.el" (17632 41885)) ;;; Generated autoloads from gnus/mm-extern.el (autoload (quote mm-extern-cache-contents) "mm-extern" "\ @@ -18090,7 +18249,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** ;;;### (autoloads (mm-inline-partial) "mm-partial" "gnus/mm-partial.el" -;;;;;; (17383 32161)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/mm-partial.el (autoload (quote mm-inline-partial) "mm-partial" "\ @@ -18104,7 +18263,7 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. ;;;*** ;;;### (autoloads (mm-url-insert-file-contents-external mm-url-insert-file-contents) -;;;;;; "mm-url" "gnus/mm-url.el" (17383 32161)) +;;;;;; "mm-url" "gnus/mm-url.el" (17604 60390)) ;;; Generated autoloads from gnus/mm-url.el (autoload (quote mm-url-insert-file-contents) "mm-url" "\ @@ -18121,7 +18280,7 @@ Insert file contents of URL using `mm-url-program'. ;;;*** ;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" -;;;;;; "gnus/mm-uu.el" (17498 30595)) +;;;;;; "gnus/mm-uu.el" (17714 34817)) ;;; Generated autoloads from gnus/mm-uu.el (autoload (quote mm-uu-dissect) "mm-uu" "\ @@ -18141,7 +18300,7 @@ Assume text has been decoded if DECODED is non-nil. ;;;*** ;;;### (autoloads (mml1991-sign mml1991-encrypt) "mml1991" "gnus/mml1991.el" -;;;;;; (17494 22066)) +;;;;;; (17495 43954)) ;;; Generated autoloads from gnus/mml1991.el (autoload (quote mml1991-encrypt) "mml1991" "\ @@ -18158,7 +18317,7 @@ Not documented ;;;### (autoloads (mml2015-self-encrypt mml2015-sign mml2015-encrypt ;;;;;; mml2015-verify-test mml2015-verify mml2015-decrypt-test mml2015-decrypt) -;;;;;; "mml2015" "gnus/mml2015.el" (17498 30595)) +;;;;;; "mml2015" "gnus/mml2015.el" (17495 43954)) ;;; Generated autoloads from gnus/mml2015.el (autoload (quote mml2015-decrypt) "mml2015" "\ @@ -18199,7 +18358,7 @@ Not documented ;;;*** ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" -;;;;;; (17281 61308)) +;;;;;; (17276 54295)) ;;; Generated autoloads from progmodes/modula2.el (autoload (quote modula-2-mode) "modula2" "\ @@ -18231,7 +18390,7 @@ followed by the first character of the construct. ;;;*** ;;;### (autoloads (unmorse-region morse-region) "morse" "play/morse.el" -;;;;;; (17383 32182)) +;;;;;; (17385 8495)) ;;; Generated autoloads from play/morse.el (autoload (quote morse-region) "morse" "\ @@ -18246,17 +18405,18 @@ Convert morse coded text in region to ordinary ASCII text. ;;;*** -;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17383 -;;;;;; 32113)) +;;;### (autoloads (mouse-sel-mode) "mouse-sel" "mouse-sel.el" (17704 +;;;;;; 4325)) ;;; Generated autoloads from mouse-sel.el (defvar mouse-sel-mode nil "\ Non-nil if Mouse-Sel mode is enabled. See the command `mouse-sel-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `mouse-sel-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `mouse-sel-mode'.") -(custom-autoload (quote mouse-sel-mode) "mouse-sel") +(custom-autoload (quote mouse-sel-mode) "mouse-sel" nil) (autoload (quote mouse-sel-mode) "mouse-sel" "\ Toggle Mouse Sel mode. @@ -18298,7 +18458,7 @@ primary selection and region. ;;;*** -;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (17383 32183)) +;;;### (autoloads (mpuz) "mpuz" "play/mpuz.el" (17385 8495)) ;;; Generated autoloads from play/mpuz.el (autoload (quote mpuz) "mpuz" "\ @@ -18308,7 +18468,7 @@ Multiplication puzzle with GNU Emacs. ;;;*** -;;;### (autoloads (msb-mode) "msb" "msb.el" (17578 34773)) +;;;### (autoloads (msb-mode) "msb" "msb.el" (17560 14582)) ;;; Generated autoloads from msb.el (defvar msb-mode nil "\ @@ -18319,6 +18479,8 @@ use either \\[customize] or the function `msb-mode'.") (custom-autoload (quote msb-mode) "msb") +(put (quote msb-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote msb-mode) "msb" "\ Toggle Msb mode. With arg, turn Msb mode on if and only if arg is positive. @@ -18334,7 +18496,7 @@ different buffer menu using the function `msb'. ;;;;;; describe-current-coding-system describe-current-coding-system-briefly ;;;;;; describe-coding-system describe-character-set list-charset-chars ;;;;;; read-charset list-character-sets) "mule-diag" "international/mule-diag.el" -;;;;;; (17210 47738)) +;;;;;; (17619 27480)) ;;; Generated autoloads from international/mule-diag.el (defvar non-iso-charset-alist (\` ((mac-roman (ascii latin-iso8859-1 mule-unicode-2500-33ff mule-unicode-0100-24ff mule-unicode-e000-ffff) mac-roman-decoder ((0 255))) (viscii (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-viscii-nonascii-translation-table ((0 255))) (vietnamese-tcvn (ascii vietnamese-viscii-lower vietnamese-viscii-upper) viet-tcvn-nonascii-translation-table ((0 255))) (koi8-r (ascii cyrillic-iso8859-5) cyrillic-koi8-r-nonascii-translation-table ((32 255))) (alternativnyj (ascii cyrillic-iso8859-5) cyrillic-alternativnyj-nonascii-translation-table ((32 255))) (koi8-u (ascii cyrillic-iso8859-5 mule-unicode-0100-24ff) cyrillic-koi8-u-nonascii-translation-table ((32 255))) (big5 (ascii chinese-big5-1 chinese-big5-2) decode-big5-char ((32 127) ((161 254) 64 126 161 254))) (sjis (ascii katakana-jisx0201 japanese-jisx0208) decode-sjis-char ((32 127 161 223) ((129 159 224 239) 64 126 128 252))))) "\ @@ -18467,7 +18629,8 @@ Display a list of all coding categories. \(fn)" nil nil) (autoload (quote describe-font) "mule-diag" "\ -Display information about fonts which partially match FONTNAME. +Display information about a font whose name is FONTNAME. +The font must be already used by Emacs. \(fn FONTNAME)" t nil) @@ -18507,7 +18670,7 @@ system which uses fontsets). ;;;;;; coding-system-translation-table-for-decode coding-system-pre-write-conversion ;;;;;; coding-system-post-read-conversion lookup-nested-alist set-nested-alist ;;;;;; truncate-string-to-width store-substring string-to-sequence) -;;;;;; "mule-util" "international/mule-util.el" (17097 33522)) +;;;;;; "mule-util" "international/mule-util.el" (17102 18726)) ;;; Generated autoloads from international/mule-util.el (autoload (quote string-to-sequence) "mule-util" "\ @@ -18636,7 +18799,7 @@ basis, this may not be accurate. ;;;*** ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" -;;;;;; (17494 22018)) +;;;;;; (17515 24181)) ;;; Generated autoloads from mwheel.el (defvar mouse-wheel-mode nil "\ @@ -18647,6 +18810,8 @@ use either \\[customize] or the function `mouse-wheel-mode'.") (custom-autoload (quote mouse-wheel-mode) "mwheel") +(put (quote mouse-wheel-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote mouse-wheel-mode) "mwheel" "\ Toggle mouse wheel support. With prefix argument ARG, turn on if positive, otherwise off. @@ -18664,7 +18829,7 @@ Enable mouse wheel support. ;;;### (autoloads (network-connection network-connection-to-service ;;;;;; whois-reverse-lookup whois finger ftp run-dig dns-lookup-host ;;;;;; nslookup nslookup-host route arp netstat ipconfig ping traceroute) -;;;;;; "net-utils" "net/net-utils.el" (17383 32176)) +;;;;;; "net-utils" "net/net-utils.el" (17385 8495)) ;;; Generated autoloads from net/net-utils.el (autoload (quote traceroute) "net-utils" "\ @@ -18756,11 +18921,11 @@ Open a network connection to HOST on PORT. ;;;*** ;;;### (autoloads (comment-indent-new-line comment-auto-fill-only-comments -;;;;;; comment-dwim comment-or-uncomment-region comment-region 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" -;;;;;; (17515 39526)) +;;;;;; comment-dwim comment-or-uncomment-region comment-box comment-region +;;;;;; 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" (17707 53738)) ;;; Generated autoloads from newcomment.el (defalias (quote indent-for-comment) (quote comment-indent)) @@ -18785,7 +18950,7 @@ can set the value for a particular mode using that mode's hook. Comments might be indented to a value smaller than this in order not to go beyond `comment-fill-column'.") -(custom-autoload (quote comment-column) "newcomment") +(custom-autoload (quote comment-column) "newcomment" t) (put 'comment-column 'safe-local-variable 'integerp) (defvar comment-start nil "\ @@ -18825,7 +18990,7 @@ comments always start in column zero.") Style to be used for `comment-region'. See `comment-styles' for a list of available styles.") -(custom-autoload (quote comment-style) "newcomment") +(custom-autoload (quote comment-style) "newcomment" t) (defvar comment-padding " " "\ Padding string that `comment-region' puts between comment chars and text. @@ -18835,7 +19000,7 @@ of the corresponding number of spaces. Extra spacing between the comment characters and the comment text makes the comment easier to read. Default is 1. nil means 0.") -(custom-autoload (quote comment-padding) "newcomment") +(custom-autoload (quote comment-padding) "newcomment" t) (defvar comment-multi-line nil "\ Non-nil means `comment-indent-new-line' continues comments. @@ -18846,7 +19011,7 @@ customize this variable. It also affects \\[indent-new-comment-line]. However, if you want this behavior for explicit filling, you might as well use \\[newline-and-indent].") -(custom-autoload (quote comment-multi-line) "newcomment") +(custom-autoload (quote comment-multi-line) "newcomment" t) (autoload (quote comment-normalize-vars) "newcomment" "\ Check and setup the variables needed by other commenting functions. @@ -18903,6 +19068,13 @@ The strings used as comment starts are built from \(fn BEG END &optional ARG)" t nil) +(autoload (quote comment-box) "newcomment" "\ +Comment out the BEG .. END region, putting it inside a box. +The numeric prefix ARG specifies how many characters to add to begin- and +end- comment markers additionally to what `comment-add' already specifies. + +\(fn BEG END &optional ARG)" t nil) + (autoload (quote comment-or-uncomment-region) "newcomment" "\ Call `comment-region', unless the region only consists of comments, in which case call `uncomment-region'. If a prefix arg is given, it @@ -18926,7 +19098,7 @@ You can configure `comment-style' to change the way regions are commented. Non-nil means to only auto-fill inside comments. This has no effect in modes that do not define a comment syntax.") -(custom-autoload (quote comment-auto-fill-only-comments) "newcomment") +(custom-autoload (quote comment-auto-fill-only-comments) "newcomment" t) (autoload (quote comment-indent-new-line) "newcomment" "\ Break line at point and indent, continuing comment if within one. @@ -18949,7 +19121,7 @@ unless optional argument SOFT is non-nil. ;;;### (autoloads (newsticker-show-news newsticker-start-ticker newsticker-start ;;;;;; newsticker-ticker-running-p newsticker-running-p) "newsticker" -;;;;;; "net/newsticker.el" (17383 32176)) +;;;;;; "net/newsticker.el" (17385 8495)) ;;; Generated autoloads from net/newsticker.el (autoload (quote newsticker-running-p) "newsticker" "\ @@ -18991,7 +19163,7 @@ Switch to newsticker buffer. You may want to bind this to a key. ;;;*** ;;;### (autoloads (nndiary-generate-nov-databases) "nndiary" "gnus/nndiary.el" -;;;;;; (17383 32162)) +;;;;;; (17385 8493)) ;;; Generated autoloads from gnus/nndiary.el (autoload (quote nndiary-generate-nov-databases) "nndiary" "\ @@ -19001,8 +19173,8 @@ Generate NOV databases in all nndiary directories. ;;;*** -;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17383 -;;;;;; 32162)) +;;;### (autoloads (nndoc-add-type) "nndoc" "gnus/nndoc.el" (17385 +;;;;;; 8494)) ;;; Generated autoloads from gnus/nndoc.el (autoload (quote nndoc-add-type) "nndoc" "\ @@ -19017,7 +19189,7 @@ symbol in the alist. ;;;*** ;;;### (autoloads (nnfolder-generate-active-file) "nnfolder" "gnus/nnfolder.el" -;;;;;; (17397 61556)) +;;;;;; (17394 12936)) ;;; Generated autoloads from gnus/nnfolder.el (autoload (quote nnfolder-generate-active-file) "nnfolder" "\ @@ -19029,7 +19201,7 @@ This command does not work if you use short group names. ;;;*** ;;;### (autoloads (nnkiboze-generate-groups) "nnkiboze" "gnus/nnkiboze.el" -;;;;;; (17383 32163)) +;;;;;; (17385 8494)) ;;; Generated autoloads from gnus/nnkiboze.el (autoload (quote nnkiboze-generate-groups) "nnkiboze" "\ @@ -19041,7 +19213,7 @@ Finds out what articles are to be part of the nnkiboze groups. ;;;*** ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el" -;;;;;; (17383 32164)) +;;;;;; (17385 8494)) ;;; Generated autoloads from gnus/nnml.el (autoload (quote nnml-generate-nov-databases) "nnml" "\ @@ -19052,7 +19224,7 @@ Generate NOV databases in all nnml directories. ;;;*** ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) -;;;;;; "nnsoup" "gnus/nnsoup.el" (17383 32164)) +;;;;;; "nnsoup" "gnus/nnsoup.el" (17385 8494)) ;;; Generated autoloads from gnus/nnsoup.el (autoload (quote nnsoup-pack-replies) "nnsoup" "\ @@ -19073,7 +19245,7 @@ Revert posting and mailing methods to the standard Emacs methods. ;;;*** ;;;### (autoloads (disable-command enable-command disabled-command-function) -;;;;;; "novice" "novice.el" (17383 32114)) +;;;;;; "novice" "novice.el" (17665 54136)) ;;; Generated autoloads from novice.el (defvar disabled-command-function (quote disabled-command-function) "\ @@ -19106,7 +19278,7 @@ to future sessions. ;;;*** ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" -;;;;;; (17383 55266)) +;;;;;; (17385 8496)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload (quote nroff-mode) "nroff-mode" "\ @@ -19121,7 +19293,7 @@ closing requests for requests that are used in matched pairs. ;;;*** ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" -;;;;;; (17397 61570)) +;;;;;; (17394 12938)) ;;; Generated autoloads from progmodes/octave-hlp.el (autoload (quote octave-help) "octave-hlp" "\ @@ -19135,7 +19307,7 @@ If KEY is not a string, prompt for it with completion. ;;;*** ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" -;;;;;; (17582 29242)) +;;;;;; (17730 6653)) ;;; Generated autoloads from progmodes/octave-inf.el (autoload (quote inferior-octave) "octave-inf" "\ @@ -19158,7 +19330,7 @@ startup file, `~/.emacs-octave'. ;;;*** ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" -;;;;;; (17432 37364)) +;;;;;; (17427 10522)) ;;; Generated autoloads from progmodes/octave-mod.el (autoload (quote octave-mode) "octave-mod" "\ @@ -19257,7 +19429,7 @@ including a reproducible test case and send the message. ;;;*** ;;;### (autoloads (edit-options list-options) "options" "obsolete/options.el" -;;;;;; (17578 34778)) +;;;;;; (17560 6690)) ;;; Generated autoloads from obsolete/options.el (autoload (quote list-options) "options" "\ @@ -19283,7 +19455,7 @@ The Custom feature is intended to make this obsolete. ;;;;;; org-remember-handler org-remember-apply-template org-remember-annotation ;;;;;; org-store-link org-tags-view org-diary org-todo-list org-agenda-list ;;;;;; org-agenda org-global-cycle org-cycle org-mode) "org" "textmodes/org.el" -;;;;;; (17582 28847)) +;;;;;; (17699 53313)) ;;; Generated autoloads from textmodes/org.el (autoload (quote org-mode) "org" "\ @@ -19535,7 +19707,7 @@ The file is stored under the name `org-combined-agenda-icalendar-file'. ;;;*** ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" -;;;;;; (17515 39526)) +;;;;;; (17515 24181)) ;;; Generated autoloads from outline.el (put 'outline-regexp 'safe-local-variable 'string-or-null-p) @@ -19591,8 +19763,8 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads nil "paragraphs" "textmodes/paragraphs.el" (17494 -;;;;;; 22070)) +;;;### (autoloads nil "paragraphs" "textmodes/paragraphs.el" (17495 +;;;;;; 43955)) ;;; Generated autoloads from textmodes/paragraphs.el (put 'paragraph-start 'safe-local-variable 'stringp) (put 'paragraph-separate 'safe-local-variable 'stringp) @@ -19606,7 +19778,7 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17383 32114)) +;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17385 8487)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -19617,6 +19789,8 @@ use either \\[customize] or the function `show-paren-mode'.") (custom-autoload (quote show-paren-mode) "paren") +(put (quote show-paren-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote show-paren-mode) "paren" "\ Toggle Show Paren mode. With prefix ARG, turn Show Paren mode on if and only if ARG is positive. @@ -19630,7 +19804,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time. ;;;*** ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" -;;;;;; (17397 61548)) +;;;;;; (17386 33146)) ;;; Generated autoloads from calendar/parse-time.el (autoload (quote parse-time-string) "parse-time" "\ @@ -19642,8 +19816,8 @@ unknown are returned as nil. ;;;*** -;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17397 -;;;;;; 61571)) +;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17394 +;;;;;; 12938)) ;;; Generated autoloads from progmodes/pascal.el (autoload (quote pascal-mode) "pascal" "\ @@ -19696,7 +19870,7 @@ no args, if that value is non-nil. ;;;*** ;;;### (autoloads (pc-bindings-mode) "pc-mode" "emulation/pc-mode.el" -;;;;;; (17383 32143)) +;;;;;; (17385 8491)) ;;; Generated autoloads from emulation/pc-mode.el (autoload (quote pc-bindings-mode) "pc-mode" "\ @@ -19714,7 +19888,7 @@ C-Escape does list-buffers. ;;;*** ;;;### (autoloads (pc-selection-mode pc-selection-mode) "pc-select" -;;;;;; "emulation/pc-select.el" (17383 32143)) +;;;;;; "emulation/pc-select.el" (17385 8491)) ;;; Generated autoloads from emulation/pc-select.el (defvar pc-selection-mode nil "\ @@ -19725,6 +19899,8 @@ use either \\[customize] or the function `pc-selection-mode'.") (custom-autoload (quote pc-selection-mode) "pc-select") +(put (quote pc-selection-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote pc-selection-mode) "pc-select" "\ Change mark behavior to emulate Motif, MAC or MS-Windows cut and paste style. @@ -19789,8 +19965,8 @@ you must modify it using \\[customize] or \\[pc-selection-mode].") ;;;*** -;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17383 -;;;;;; 32114)) +;;;### (autoloads (pcomplete/cvs) "pcmpl-cvs" "pcmpl-cvs.el" (17385 +;;;;;; 8487)) ;;; Generated autoloads from pcmpl-cvs.el (autoload (quote pcomplete/cvs) "pcmpl-cvs" "\ @@ -19801,7 +19977,7 @@ Completion rules for the `cvs' command. ;;;*** ;;;### (autoloads (pcomplete/tar pcomplete/make pcomplete/bzip2 pcomplete/gzip) -;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17383 32115)) +;;;;;; "pcmpl-gnu" "pcmpl-gnu.el" (17385 8487)) ;;; Generated autoloads from pcmpl-gnu.el (autoload (quote pcomplete/gzip) "pcmpl-gnu" "\ @@ -19829,7 +20005,7 @@ Completion for the GNU tar utility. ;;;*** ;;;### (autoloads (pcomplete/mount pcomplete/umount pcomplete/kill) -;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17383 32115)) +;;;;;; "pcmpl-linux" "pcmpl-linux.el" (17385 8487)) ;;; Generated autoloads from pcmpl-linux.el (autoload (quote pcomplete/kill) "pcmpl-linux" "\ @@ -19849,8 +20025,8 @@ Completion for GNU/Linux `mount'. ;;;*** -;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17383 -;;;;;; 32115)) +;;;### (autoloads (pcomplete/rpm) "pcmpl-rpm" "pcmpl-rpm.el" (17385 +;;;;;; 8487)) ;;; Generated autoloads from pcmpl-rpm.el (autoload (quote pcomplete/rpm) "pcmpl-rpm" "\ @@ -19866,7 +20042,7 @@ You can use \\[eshell-report-bug] to do so. ;;;### (autoloads (pcomplete/chgrp pcomplete/chown pcomplete/which ;;;;;; pcomplete/xargs pcomplete/rm pcomplete/rmdir pcomplete/cd) -;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17383 32115)) +;;;;;; "pcmpl-unix" "pcmpl-unix.el" (17385 8487)) ;;; Generated autoloads from pcmpl-unix.el (autoload (quote pcomplete/cd) "pcmpl-unix" "\ @@ -19912,8 +20088,8 @@ Completion for the `chgrp' command. ;;;### (autoloads (pcomplete-shell-setup pcomplete-comint-setup pcomplete-list ;;;;;; pcomplete-help pcomplete-expand pcomplete-continue pcomplete-expand-and-complete -;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17457 -;;;;;; 37500)) +;;;;;; pcomplete-reverse pcomplete) "pcomplete" "pcomplete.el" (17476 +;;;;;; 4798)) ;;; Generated autoloads from pcomplete.el (autoload (quote pcomplete) "pcomplete" "\ @@ -19972,7 +20148,7 @@ Setup shell-mode to use pcomplete. ;;;### (autoloads (cvs-dired-use-hook cvs-dired-action cvs-status ;;;;;; cvs-update cvs-examine cvs-quickdir cvs-checkout) "pcvs" -;;;;;; "pcvs.el" (17578 34773)) +;;;;;; "pcvs.el" (17697 23215)) ;;; Generated autoloads from pcvs.el (autoload (quote cvs-checkout) "pcvs" "\ @@ -20032,7 +20208,7 @@ Optional argument NOSHOW if non-nil means not to display the buffer. The action to be performed when opening a CVS directory. Sensible values are `cvs-examine', `cvs-status' and `cvs-quickdir'.") -(custom-autoload (quote cvs-dired-action) "pcvs") +(custom-autoload (quote cvs-dired-action) "pcvs" t) (defvar cvs-dired-use-hook (quote (4)) "\ Whether or not opening a CVS directory should run PCL-CVS. @@ -20041,7 +20217,7 @@ ALWAYS means to always do it unless a prefix argument is given to the command that prompted the opening of the directory. Anything else means to do it only if the prefix arg is equal to this value.") -(custom-autoload (quote cvs-dired-use-hook) "pcvs") +(custom-autoload (quote cvs-dired-use-hook) "pcvs" t) (defun cvs-dired-noselect (dir) "\ Run `cvs-examine' if DIR is a CVS administrative directory. @@ -20049,7 +20225,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** -;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17582 32791)) +;;;### (autoloads nil "pcvs-defs" "pcvs-defs.el" (17670 57734)) ;;; Generated autoloads from pcvs-defs.el (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] (quote (menu-item "Directory Status" cvs-status :help "A more verbose status of a workarea"))) (define-key m [checkout] (quote (menu-item "Checkout Module" cvs-checkout :help "Check out a module from the repository"))) (define-key m [update] (quote (menu-item "Update Directory" cvs-update :help "Fetch updates from the repository"))) (define-key m [examine] (quote (menu-item "Examine Directory" cvs-examine :help "Examine the current state of a workarea"))) (fset (quote cvs-global-menu) m))) @@ -20057,7 +20233,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" -;;;;;; (17498 30499)) +;;;;;; (17515 24182)) ;;; Generated autoloads from progmodes/perl-mode.el (autoload (quote perl-mode) "perl-mode" "\ @@ -20115,7 +20291,7 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. ;;;### (autoloads (pgg-snarf-keys pgg-snarf-keys-region pgg-insert-key ;;;;;; pgg-verify pgg-verify-region pgg-sign pgg-sign-region pgg-decrypt ;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region -;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17383 32117)) +;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17661 55157)) ;;; Generated autoloads from pgg.el (autoload (quote pgg-encrypt-region) "pgg" "\ @@ -20249,7 +20425,7 @@ Import public keys in the current buffer. ;;;*** ;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el" -;;;;;; (17466 42707)) +;;;;;; (17664 20313)) ;;; Generated autoloads from pgg-gpg.el (autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\ @@ -20260,7 +20436,7 @@ True if decoded armor MESSAGE-KEYS has symmetric encryption indicator. ;;;*** ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" -;;;;;; (17466 42716)) +;;;;;; (17476 4802)) ;;; Generated autoloads from textmodes/picture.el (autoload (quote picture-mode) "picture" "\ @@ -20341,7 +20517,7 @@ they are not defaultly assigned to keys. ;;;*** ;;;### (autoloads (po-find-file-coding-system) "po" "textmodes/po.el" -;;;;;; (17578 34780)) +;;;;;; (17601 9092)) ;;; Generated autoloads from textmodes/po.el (autoload (quote po-find-file-coding-system) "po" "\ @@ -20352,7 +20528,7 @@ Called through `file-coding-system-alist', before the file is visited for real. ;;;*** -;;;### (autoloads (pong) "pong" "play/pong.el" (17578 34778)) +;;;### (autoloads (pong) "pong" "play/pong.el" (17551 7908)) ;;; Generated autoloads from play/pong.el (autoload (quote pong) "pong" "\ @@ -20369,7 +20545,7 @@ pong-mode keybindings:\\ ;;;*** ;;;### (autoloads (pp-eval-last-sexp pp-eval-expression pp pp-buffer -;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (17383 32140)) +;;;;;; pp-to-string) "pp" "emacs-lisp/pp.el" (17718 28532)) ;;; Generated autoloads from emacs-lisp/pp.el (autoload (quote pp-to-string) "pp" "\ @@ -20393,12 +20569,15 @@ Output stream is STREAM, or value of `standard-output' (which see). \(fn OBJECT &optional STREAM)" nil nil) (autoload (quote pp-eval-expression) "pp" "\ -Evaluate EXPRESSION and pretty-print value into a new display buffer. -If the pretty-printed value fits on one line, the message line is used -instead. The value is also consed onto the front of the list +Evaluate an expression, then pretty-print value EXPVAL into a new buffer. +If pretty-printed EXPVAL fits on one line, display it in the echo +area instead. Also add EXPVAL to the front of the list in the variable `values'. -\(fn EXPRESSION)" t nil) +Non-interactively, the argument is the value, EXPVAL, not the expression +to evaluate. + +\(fn EXPVAL)" t nil) (autoload (quote pp-eval-last-sexp) "pp" "\ Run `pp-eval-expression' on sexp before point (which see). @@ -20427,7 +20606,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" -;;;;;; (17383 32117)) +;;;;;; (17682 43101)) ;;; Generated autoloads from printing.el (autoload (quote pr-interface) "printing" "\ @@ -21014,8 +21193,8 @@ are both set to t. ;;;*** -;;;### (autoloads (run-prolog prolog-mode) "prolog" "progmodes/prolog.el" -;;;;;; (17397 61571)) +;;;### (autoloads (switch-to-prolog prolog-mode) "prolog" "progmodes/prolog.el" +;;;;;; (17664 20313)) ;;; Generated autoloads from progmodes/prolog.el (autoload (quote prolog-mode) "prolog" "\ @@ -21028,14 +21207,17 @@ if that value is non-nil. \(fn)" t nil) -(autoload (quote run-prolog) "prolog" "\ -Run an inferior Prolog process, input and output via buffer *prolog*. +(defalias (quote run-prolog) (quote switch-to-prolog)) -\(fn)" t nil) +(autoload (quote switch-to-prolog) "prolog" "\ +Run an inferior Prolog process, input and output via buffer *prolog*. +With prefix argument \\[universal-prefix], prompt for the program to use. + +\(fn &optional NAME)" t nil) ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17383 32117)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17385 8487)) ;;; Generated autoloads from ps-bdf.el (defvar bdf-directory-list (if (memq system-type (quote (ms-dos windows-nt))) (list (expand-file-name "fonts/bdf" installation-directory)) (quote ("/usr/local/share/emacs/fonts/bdf"))) "\ @@ -21044,8 +21226,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17397 -;;;;;; 61571)) +;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17394 +;;;;;; 12938)) ;;; Generated autoloads from progmodes/ps-mode.el (autoload (quote ps-mode) "ps-mode" "\ @@ -21094,7 +21276,7 @@ Typing \\\\[ps-run-goto-error] when the cursor is at the number ;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-encode-header-string ;;;;;; ps-mule-initialize ps-mule-plot-composition ps-mule-plot-string ;;;;;; ps-mule-set-ascii-font ps-mule-prepare-ascii-font ps-multibyte-buffer) -;;;;;; "ps-mule" "ps-mule.el" (17383 32117)) +;;;;;; "ps-mule" "ps-mule.el" (17385 8487)) ;;; Generated autoloads from ps-mule.el (defvar ps-multibyte-buffer nil "\ @@ -21215,22 +21397,22 @@ Not documented ;;;;;; 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" (17383 -;;;;;; 32118)) +;;;;;; ps-page-dimensions-database) "ps-print" "ps-print.el" (17682 +;;;;;; 43101)) ;;; Generated autoloads from ps-print.el (defvar ps-page-dimensions-database (list (list (quote a4) (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4") (list (quote a3) (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3") (list (quote letter) (* 72 8.5) (* 72 11.0) "Letter") (list (quote legal) (* 72 8.5) (* 72 14.0) "Legal") (list (quote letter-small) (* 72 7.68) (* 72 10.16) "LetterSmall") (list (quote tabloid) (* 72 11.0) (* 72 17.0) "Tabloid") (list (quote ledger) (* 72 17.0) (* 72 11.0) "Ledger") (list (quote statement) (* 72 5.5) (* 72 8.5) "Statement") (list (quote executive) (* 72 7.5) (* 72 10.0) "Executive") (list (quote a4small) (* 72 7.47) (* 72 10.85) "A4Small") (list (quote b4) (* 72 10.125) (* 72 14.33) "B4") (list (quote b5) (* 72 7.16) (* 72 10.125) "B5")) "\ *List associating a symbolic paper type to its width, height and doc media. See `ps-paper-type'.") -(custom-autoload (quote ps-page-dimensions-database) "ps-print") +(custom-autoload (quote ps-page-dimensions-database) "ps-print" t) (defvar ps-paper-type (quote letter) "\ *Specify the size of paper to format for. Should be one of the paper types defined in `ps-page-dimensions-database', for example `letter', `legal' or `a4'.") -(custom-autoload (quote ps-paper-type) "ps-print") +(custom-autoload (quote ps-paper-type) "ps-print" t) (defvar ps-print-color-p (or (fboundp (quote x-color-values)) (fboundp (quote color-instance-rgb-components))) "\ *Specify how buffer's text color is printed. @@ -21246,7 +21428,7 @@ Valid values are: Any other value is treated as t.") -(custom-autoload (quote ps-print-color-p) "ps-print") +(custom-autoload (quote ps-print-color-p) "ps-print" t) (autoload (quote ps-print-customize) "ps-print" "\ Customization of ps-print group. @@ -21413,7 +21595,7 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" -;;;;;; (17487 53546)) +;;;;;; (17723 56210)) ;;; Generated autoloads from progmodes/python.el (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) @@ -21426,19 +21608,24 @@ If EXTENSION is any other symbol, it is ignored. 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. -If there is a process already running in `*Python*', 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. 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.) -\(fn &optional CMD NOSHOW)" t nil) +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'. + +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.) + +\(fn &optional CMD NOSHOW NEW)" t nil) (autoload (quote python-mode) "python" "\ Major mode for editing Python files. -Turns on Font Lock mode unconditionally since it is required for correct -parsing of the source. +Font Lock mode is currently required for correct parsing of the source. See also `jython-mode', which is actually invoked if the buffer appears to contain Jython code. See also `run-python' and associated Python mode commands for running Python under Emacs. @@ -21452,16 +21639,22 @@ the end of definitions at that level, when they move up a level. Colon is electric: it outdents the line if appropriate, e.g. for an else statement. \\[python-backspace] at the beginning of an indented statement deletes a level of indentation to close the current block; otherwise it -deletes a charcter backward. TAB indents the current line relative to +deletes a character backward. TAB indents the current line relative to the preceding code. Successive TABs, with no intervening command, cycle through the possibilities for indentation on the basis of enclosing blocks. -\\[fill-paragraph] fills comments and multiline strings appropriately, but has no +\\[fill-paragraph] fills comments and multi-line strings appropriately, but has no effect outside them. Supports Eldoc mode (only for functions, using a Python process), Info-Look and Imenu. In Outline minor mode, `class' and `def' -lines count as headers. +lines count as headers. Symbol completion is available in the +same way as in the Python shell using the `rlcompleter' module +and this is added to the Hippie Expand functions locally if +Hippie Expand mode is turned on. Completion of symbols of the +form x.y only works if the components are literal +module/attribute names, not variables. An abbrev table is set up +with skeleton expansions for compound statement templates. \\{python-mode-map} @@ -21477,7 +21670,7 @@ Runs `jython-mode-hook' after `python-mode-hook'. ;;;*** ;;;### (autoloads (quoted-printable-decode-region) "qp" "gnus/qp.el" -;;;;;; (17420 36085)) +;;;;;; (17408 40148)) ;;; Generated autoloads from gnus/qp.el (autoload (quote quoted-printable-decode-region) "qp" "\ @@ -21500,7 +21693,7 @@ them into characters should be done separately. ;;;;;; quail-defrule quail-install-decode-map quail-install-map ;;;;;; quail-define-rules quail-show-keyboard-layout quail-set-keyboard-layout ;;;;;; quail-define-package quail-use-package quail-title) "quail" -;;;;;; "international/quail.el" (17304 24770)) +;;;;;; "international/quail.el" (17660 25612)) ;;; Generated autoloads from international/quail.el (autoload (quote quail-title) "quail" "\ @@ -21731,8 +21924,8 @@ of each directory. ;;;### (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" (17383 -;;;;;; 32176)) +;;;;;; quickurl-ask quickurl) "quickurl" "net/quickurl.el" (17385 +;;;;;; 8495)) ;;; 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" "\ @@ -21804,7 +21997,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** ;;;### (autoloads (rcirc-track-minor-mode rcirc-connect rcirc) "rcirc" -;;;;;; "net/rcirc.el" (17578 34778)) +;;;;;; "net/rcirc.el" (17671 12161)) ;;; Generated autoloads from net/rcirc.el (autoload (quote rcirc) "rcirc" "\ @@ -21824,9 +22017,10 @@ Not documented Non-nil if Rcirc-Track minor mode is enabled. See the command `rcirc-track-minor-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `rcirc-track-minor-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `rcirc-track-minor-mode'.") -(custom-autoload (quote rcirc-track-minor-mode) "rcirc") +(custom-autoload (quote rcirc-track-minor-mode) "rcirc" nil) (autoload (quote rcirc-track-minor-mode) "rcirc" "\ Global minor mode for tracking activity in rcirc buffers. @@ -21835,8 +22029,8 @@ Global minor mode for tracking activity in rcirc buffers. ;;;*** -;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17578 -;;;;;; 34778)) +;;;### (autoloads (remote-compile) "rcompile" "net/rcompile.el" (17569 +;;;;;; 26652)) ;;; Generated autoloads from net/rcompile.el (autoload (quote remote-compile) "rcompile" "\ @@ -21848,7 +22042,7 @@ See \\[compile]. ;;;*** ;;;### (autoloads (re-builder) "re-builder" "emacs-lisp/re-builder.el" -;;;;;; (17503 24307)) +;;;;;; (17515 24181)) ;;; Generated autoloads from emacs-lisp/re-builder.el (defalias (quote regexp-builder) (quote re-builder)) @@ -21860,16 +22054,17 @@ Construct a regexp interactively. ;;;*** -;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17457 37500)) +;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17718 28532)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ Non-nil if Recentf mode is enabled. See the command `recentf-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `recentf-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `recentf-mode'.") -(custom-autoload (quote recentf-mode) "recentf") +(custom-autoload (quote recentf-mode) "recentf" nil) (autoload (quote recentf-mode) "recentf" "\ Toggle recentf mode. @@ -21879,8 +22074,6 @@ Returns non-nil if the new state is enabled. When recentf mode is enabled, it maintains a menu for visiting files that were operated on recently. -\\{recentf-mode-map} - \(fn &optional ARG)" t nil) ;;;*** @@ -21888,8 +22081,8 @@ that were operated on recently. ;;;### (autoloads (clear-rectangle string-insert-rectangle string-rectangle ;;;;;; delete-whitespace-rectangle open-rectangle insert-rectangle ;;;;;; yank-rectangle kill-rectangle extract-rectangle delete-extract-rectangle -;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17466 -;;;;;; 42707)) +;;;;;; delete-rectangle move-to-column-force) "rect" "rect.el" (17637 +;;;;;; 59300)) ;;; Generated autoloads from rect.el (autoload (quote move-to-column-force) "rect" "\ @@ -22017,8 +22210,8 @@ rectangle which were empty. ;;;*** -;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17383 -;;;;;; 32188)) +;;;### (autoloads (refill-mode) "refill" "textmodes/refill.el" (17385 +;;;;;; 8496)) ;;; Generated autoloads from textmodes/refill.el (autoload (quote refill-mode) "refill" "\ @@ -22034,7 +22227,7 @@ refilling if they would cause auto-filling. ;;;*** ;;;### (autoloads (reftex-reset-scanning-information reftex-mode -;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17404 53188)) +;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17408 40149)) ;;; Generated autoloads from textmodes/reftex.el (autoload (quote turn-on-reftex) "reftex" "\ @@ -22084,7 +22277,7 @@ This enforces rescanning the buffer on next use. ;;;*** ;;;### (autoloads (reftex-citation) "reftex-cite" "textmodes/reftex-cite.el" -;;;;;; (17404 53187)) +;;;;;; (17408 40149)) ;;; Generated autoloads from textmodes/reftex-cite.el (autoload (quote reftex-citation) "reftex-cite" "\ @@ -22114,7 +22307,7 @@ While entering the regexp, completion on knows citation keys is possible. ;;;*** ;;;### (autoloads (reftex-isearch-minor-mode) "reftex-global" "textmodes/reftex-global.el" -;;;;;; (17404 53187)) +;;;;;; (17712 850)) ;;; Generated autoloads from textmodes/reftex-global.el (autoload (quote reftex-isearch-minor-mode) "reftex-global" "\ @@ -22131,7 +22324,7 @@ With no argument, this command toggles ;;;*** ;;;### (autoloads (reftex-index-phrases-mode) "reftex-index" "textmodes/reftex-index.el" -;;;;;; (17420 36092)) +;;;;;; (17420 32031)) ;;; Generated autoloads from textmodes/reftex-index.el (autoload (quote reftex-index-phrases-mode) "reftex-index" "\ @@ -22164,7 +22357,7 @@ Here are all local bindings. ;;;*** ;;;### (autoloads (reftex-all-document-files) "reftex-parse" "textmodes/reftex-parse.el" -;;;;;; (17404 53187)) +;;;;;; (17408 40149)) ;;; Generated autoloads from textmodes/reftex-parse.el (autoload (quote reftex-all-document-files) "reftex-parse" "\ @@ -22176,8 +22369,8 @@ of master file. ;;;*** -;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (17494 -;;;;;; 22070)) +;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (17704 +;;;;;; 4326)) ;;; Generated autoloads from textmodes/reftex-vars.el (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) @@ -22187,7 +22380,7 @@ of master file. ;;;*** ;;;### (autoloads (regexp-opt-depth regexp-opt) "regexp-opt" "emacs-lisp/regexp-opt.el" -;;;;;; (17383 32141)) +;;;;;; (17385 8490)) ;;; Generated autoloads from emacs-lisp/regexp-opt.el (autoload (quote regexp-opt) "regexp-opt" "\ @@ -22214,7 +22407,7 @@ This means the number of non-shy regexp grouping constructs ;;;*** -;;;### (autoloads (repeat) "repeat" "repeat.el" (17383 32118)) +;;;### (autoloads (repeat) "repeat" "repeat.el" (17385 8487)) ;;; Generated autoloads from repeat.el (autoload (quote repeat) "repeat" "\ @@ -22232,7 +22425,7 @@ can be modified by the global variable `repeat-on-final-keystroke'. ;;;*** ;;;### (autoloads (reporter-submit-bug-report) "reporter" "mail/reporter.el" -;;;;;; (17383 32169)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/reporter.el (autoload (quote reporter-submit-bug-report) "reporter" "\ @@ -22264,7 +22457,7 @@ mail-sending package is used for editing and sending the message. ;;;*** ;;;### (autoloads (reposition-window) "reposition" "reposition.el" -;;;;;; (17383 32119)) +;;;;;; (17385 8487)) ;;; Generated autoloads from reposition.el (autoload (quote reposition-window) "reposition" "\ @@ -22291,8 +22484,8 @@ first comment line visible (if point is in a comment). ;;;*** -;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17383 -;;;;;; 32119)) +;;;### (autoloads (resume-suspend-hook) "resume" "resume.el" (17385 +;;;;;; 8487)) ;;; Generated autoloads from resume.el (autoload (quote resume-suspend-hook) "resume" "\ @@ -22303,7 +22496,7 @@ Clear out the file used for transmitting args when Emacs resumes. ;;;*** ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" -;;;;;; (17494 22060)) +;;;;;; (17495 43954)) ;;; Generated autoloads from reveal.el (autoload (quote reveal-mode) "reveal" "\ @@ -22324,6 +22517,8 @@ use either \\[customize] or the function `global-reveal-mode'.") (custom-autoload (quote global-reveal-mode) "reveal") +(put (quote global-reveal-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote global-reveal-mode) "reveal" "\ Toggle Reveal mode in all buffers on or off. Reveal mode renders invisible text around point visible again. @@ -22337,7 +22532,7 @@ With zero or negative ARG turn mode off. ;;;*** ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" -;;;;;; (17383 32141)) +;;;;;; (17385 8490)) ;;; Generated autoloads from emacs-lisp/ring.el (autoload (quote ring-p) "ring" "\ @@ -22352,7 +22547,7 @@ Make a ring that can contain SIZE elements. ;;;*** -;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17383 32177)) +;;;### (autoloads (rlogin) "rlogin" "net/rlogin.el" (17385 8495)) ;;; Generated autoloads from net/rlogin.el (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)") @@ -22403,8 +22598,8 @@ variable. ;;;;;; rmail-mail-new-frame rmail-primary-inbox-list rmail-delete-after-output ;;;;;; rmail-highlight-face rmail-highlighted-headers rmail-retry-ignored-headers ;;;;;; rmail-displayed-headers rmail-ignored-headers rmail-dont-reply-to-names -;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17521 -;;;;;; 64538)) +;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17704 +;;;;;; 4326)) ;;; Generated autoloads from mail/rmail.el (autoload (quote rmail-movemail-variant-p) "rmail" "\ @@ -22418,7 +22613,7 @@ Currently known variants are 'emacs and 'mailutils. A value of nil means exclude your own email address as an address plus whatever is specified by `rmail-default-dont-reply-to-names'.") -(custom-autoload (quote rmail-dont-reply-to-names) "rmail") +(custom-autoload (quote rmail-dont-reply-to-names) "rmail" t) (defvar rmail-default-dont-reply-to-names "\\`info-" "\ A regular expression specifying part of the default value of the @@ -22437,36 +22632,36 @@ To make a change in this variable take effect for a message that you have already viewed, go to that message and type \\[rmail-toggle-header] twice.") -(custom-autoload (quote rmail-ignored-headers) "rmail") +(custom-autoload (quote rmail-ignored-headers) "rmail" t) (defvar rmail-displayed-headers nil "\ *Regexp to match Header fields that Rmail should display. If nil, display all header fields except those matched by `rmail-ignored-headers'.") -(custom-autoload (quote rmail-displayed-headers) "rmail") +(custom-autoload (quote rmail-displayed-headers) "rmail" t) (defvar rmail-retry-ignored-headers "^x-authentication-warning:" "\ *Headers that should be stripped when retrying a failed message.") -(custom-autoload (quote rmail-retry-ignored-headers) "rmail") +(custom-autoload (quote rmail-retry-ignored-headers) "rmail" t) (defvar rmail-highlighted-headers "^From:\\|^Subject:" "\ *Regexp to match Header fields that Rmail should normally highlight. A value of nil means don't highlight. See also `rmail-highlight-face'.") -(custom-autoload (quote rmail-highlighted-headers) "rmail") +(custom-autoload (quote rmail-highlighted-headers) "rmail" t) (defvar rmail-highlight-face (quote rmail-highlight) "\ *Face used by Rmail for highlighting headers.") -(custom-autoload (quote rmail-highlight-face) "rmail") +(custom-autoload (quote rmail-highlight-face) "rmail" t) (defvar rmail-delete-after-output nil "\ *Non-nil means automatically delete a message that is copied to a file.") -(custom-autoload (quote rmail-delete-after-output) "rmail") +(custom-autoload (quote rmail-delete-after-output) "rmail" t) (defvar rmail-primary-inbox-list nil "\ *List of files which are inboxes for user's primary mail file `~/RMAIL'. @@ -22474,29 +22669,29 @@ nil means the default, which is (\"/usr/spool/mail/$USER\") \(the name varies depending on the operating system, and the value of the environment variable MAIL overrides it).") -(custom-autoload (quote rmail-primary-inbox-list) "rmail") +(custom-autoload (quote rmail-primary-inbox-list) "rmail" t) (defvar rmail-mail-new-frame nil "\ *Non-nil means Rmail makes a new frame for composing outgoing mail. This is handy if you want to preserve the window configuration of the frame where you have the RMAIL buffer displayed.") -(custom-autoload (quote rmail-mail-new-frame) "rmail") +(custom-autoload (quote rmail-mail-new-frame) "rmail" t) (defvar rmail-secondary-file-directory "~/" "\ *Directory for additional secondary Rmail files.") -(custom-autoload (quote rmail-secondary-file-directory) "rmail") +(custom-autoload (quote rmail-secondary-file-directory) "rmail" t) (defvar rmail-secondary-file-regexp "\\.xmail$" "\ *Regexp for which files are secondary Rmail files.") -(custom-autoload (quote rmail-secondary-file-regexp) "rmail") +(custom-autoload (quote rmail-secondary-file-regexp) "rmail" t) (defvar rmail-confirm-expunge (quote y-or-n-p) "\ *Whether and how to ask for confirmation before expunging deleted messages.") -(custom-autoload (quote rmail-confirm-expunge) "rmail") +(custom-autoload (quote rmail-confirm-expunge) "rmail" t) (defvar rmail-mode-hook nil "\ List of functions to call when Rmail is invoked.") @@ -22507,7 +22702,7 @@ List of functions to call when Rmail has retrieved new mail.") (defvar rmail-show-message-hook nil "\ List of functions to call when Rmail displays a message.") -(custom-autoload (quote rmail-show-message-hook) "rmail") +(custom-autoload (quote rmail-show-message-hook) "rmail" t) (defvar rmail-quit-hook nil "\ List of functions to call when quitting out of Rmail.") @@ -22532,7 +22727,7 @@ Even if the value is non-nil, you can't use MIME feature if the feature specified by `rmail-mime-feature' is not available in your session.") -(custom-autoload (quote rmail-enable-mime) "rmail") +(custom-autoload (quote rmail-enable-mime) "rmail" t) (defvar rmail-show-mime-function nil "\ Function to show MIME decoded message of RMAIL file. @@ -22585,7 +22780,7 @@ If the variable `rmail-enable-mime' is non-nil, this variables is ignored, and all the decoding work is done by a feature specified by the variable `rmail-mime-feature'.") -(defvar rmail-mime-charset-pattern (concat "^content-type:[ ]*text/plain;" "\\(?:[ \n]*\\(?:format\\|delsp\\)=\"?[-a-z0-9]+\"?;\\)*" "[ \n]*charset=\"?\\([^ \n\";]+\\)\"?") "\ +(defvar rmail-mime-charset-pattern (concat "^content-type:[ ]*text/plain;" "\\(?:[ \n]*\\(?:format\\|delsp\\)=\"?[-a-z0-9]+\"?;\\)*" "[ \n]*charset=\"?\\([^ \n\";]+\\)\"?") "\ Regexp to match MIME-charset specification in a header of message. The first parenthesized expression should match the MIME-charset name.") @@ -22669,7 +22864,7 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. ;;;*** ;;;### (autoloads (rmail-edit-current-message) "rmailedit" "mail/rmailedit.el" -;;;;;; (17383 32170)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/rmailedit.el (autoload (quote rmail-edit-current-message) "rmailedit" "\ @@ -22681,7 +22876,7 @@ Edit the contents of this message. ;;;### (autoloads (rmail-next-labeled-message rmail-previous-labeled-message ;;;;;; rmail-read-label rmail-kill-label rmail-add-label) "rmailkwd" -;;;;;; "mail/rmailkwd.el" (17383 32170)) +;;;;;; "mail/rmailkwd.el" (17385 8494)) ;;; Generated autoloads from mail/rmailkwd.el (autoload (quote rmail-add-label) "rmailkwd" "\ @@ -22720,7 +22915,7 @@ With prefix argument N moves forward N messages with these labels. ;;;*** ;;;### (autoloads (set-rmail-inbox-list) "rmailmsc" "mail/rmailmsc.el" -;;;;;; (17383 32170)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/rmailmsc.el (autoload (quote set-rmail-inbox-list) "rmailmsc" "\ @@ -22734,7 +22929,7 @@ If FILE-NAME is empty, remove any existing inbox list. ;;;### (autoloads (rmail-output-body-to-file rmail-output rmail-fields-not-to-output ;;;;;; rmail-output-to-rmail-file rmail-output-file-alist) "rmailout" -;;;;;; "mail/rmailout.el" (17383 32170)) +;;;;;; "mail/rmailout.el" (17385 8494)) ;;; Generated autoloads from mail/rmailout.el (defvar rmail-output-file-alist nil "\ @@ -22801,8 +22996,8 @@ FILE-NAME defaults, interactively, from the Subject field of the message. ;;;### (autoloads (rmail-sort-by-labels rmail-sort-by-lines rmail-sort-by-correspondent ;;;;;; rmail-sort-by-recipient rmail-sort-by-author rmail-sort-by-subject -;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17383 -;;;;;; 32170)) +;;;;;; rmail-sort-by-date) "rmailsort" "mail/rmailsort.el" (17385 +;;;;;; 8494)) ;;; Generated autoloads from mail/rmailsort.el (autoload (quote rmail-sort-by-date) "rmailsort" "\ @@ -22854,7 +23049,7 @@ KEYWORDS is a comma-separated list of labels. ;;;;;; rmail-summary-by-senders rmail-summary-by-topic rmail-summary-by-regexp ;;;;;; rmail-summary-by-recipients rmail-summary-by-labels rmail-summary ;;;;;; rmail-summary-line-count-flag rmail-summary-scroll-between-messages) -;;;;;; "rmailsum" "mail/rmailsum.el" (17432 37362)) +;;;;;; "rmailsum" "mail/rmailsum.el" (17427 10522)) ;;; Generated autoloads from mail/rmailsum.el (defvar rmail-summary-scroll-between-messages t "\ @@ -22936,7 +23131,7 @@ Setting this variable has an effect only before reading a mail.") ;;;*** ;;;### (autoloads (news-post-news) "rnewspost" "obsolete/rnewspost.el" -;;;;;; (17383 32180)) +;;;;;; (17385 8495)) ;;; Generated autoloads from obsolete/rnewspost.el (autoload (quote news-post-news) "rnewspost" "\ @@ -22949,7 +23144,7 @@ If NOQUERY is non-nil, we do not query before doing the work. ;;;*** ;;;### (autoloads (toggle-rot13-mode rot13-other-window rot13-region -;;;;;; rot13-string rot13) "rot13" "rot13.el" (17383 32119)) +;;;;;; rot13-string rot13) "rot13" "rot13.el" (17385 8487)) ;;; Generated autoloads from rot13.el (autoload (quote rot13) "rot13" "\ @@ -22990,7 +23185,7 @@ Toggle the use of rot 13 encoding for the current window. ;;;;;; resize-minibuffer-frame-max-height resize-minibuffer-frame ;;;;;; resize-minibuffer-window-exactly resize-minibuffer-window-max-height ;;;;;; resize-minibuffer-mode) "rsz-mini" "obsolete/rsz-mini.el" -;;;;;; (17383 32180)) +;;;;;; (17385 8495)) ;;; Generated autoloads from obsolete/rsz-mini.el (defvar resize-minibuffer-mode nil "\ @@ -23030,8 +23225,8 @@ This function is obsolete. ;;;*** -;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17383 -;;;;;; 32119)) +;;;### (autoloads (ruler-mode) "ruler-mode" "ruler-mode.el" (17385 +;;;;;; 8487)) ;;; Generated autoloads from ruler-mode.el (autoload (quote ruler-mode) "ruler-mode" "\ @@ -23042,7 +23237,7 @@ Display a ruler in the header line if ARG > 0. ;;;*** ;;;### (autoloads (rx rx-to-string) "rx" "emacs-lisp/rx.el" (17420 -;;;;;; 36082)) +;;;;;; 32030)) ;;; Generated autoloads from emacs-lisp/rx.el (autoload (quote rx-to-string) "rx" "\ @@ -23350,7 +23545,7 @@ enclosed in `(and ...)'. ;;;*** ;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el" -;;;;;; (17457 37500)) +;;;;;; (17476 4798)) ;;; Generated autoloads from savehist.el (defvar savehist-mode nil "\ @@ -23376,7 +23571,7 @@ which is probably undesirable. ;;;*** ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" -;;;;;; (17397 61572)) +;;;;;; (17394 12938)) ;;; Generated autoloads from progmodes/scheme.el (autoload (quote scheme-mode) "scheme" "\ @@ -23418,7 +23613,7 @@ that variable's value is a string. ;;;*** ;;;### (autoloads (gnus-score-mode) "score-mode" "gnus/score-mode.el" -;;;;;; (17383 32165)) +;;;;;; (17385 8494)) ;;; Generated autoloads from gnus/score-mode.el (autoload (quote gnus-score-mode) "score-mode" "\ @@ -23431,8 +23626,8 @@ This mode is an extended emacs-lisp mode. ;;;*** -;;;### (autoloads (scribe-mode) "scribe" "obsolete/scribe.el" (17383 -;;;;;; 32180)) +;;;### (autoloads (scribe-mode) "scribe" "obsolete/scribe.el" (17385 +;;;;;; 8495)) ;;; Generated autoloads from obsolete/scribe.el (autoload (quote scribe-mode) "scribe" "\ @@ -23457,7 +23652,7 @@ Interesting variables: ;;;*** ;;;### (autoloads (scroll-all-mode) "scroll-all" "scroll-all.el" -;;;;;; (17383 32120)) +;;;;;; (17385 8487)) ;;; Generated autoloads from scroll-all.el (defvar scroll-all-mode nil "\ @@ -23468,6 +23663,8 @@ use either \\[customize] or the function `scroll-all-mode'.") (custom-autoload (quote scroll-all-mode) "scroll-all") +(put (quote scroll-all-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote scroll-all-mode) "scroll-all" "\ Toggle Scroll-All minor mode. With ARG, turn Scroll-All minor mode on if ARG is positive, off otherwise. @@ -23479,7 +23676,7 @@ apply to all visible windows in the same frame. ;;;*** ;;;### (autoloads (scroll-lock-mode) "scroll-lock" "scroll-lock.el" -;;;;;; (17383 32120)) +;;;;;; (17385 8487)) ;;; Generated autoloads from scroll-lock.el (autoload (quote scroll-lock-mode) "scroll-lock" "\ @@ -23501,7 +23698,7 @@ during scrolling. ;;;;;; 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" (17578 34777)) +;;;;;; "sendmail" "mail/sendmail.el" (17660 26729)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style (quote angles) "\ @@ -23521,7 +23718,7 @@ Emacs to pass the proper email address from `user-mail-address' to the mailer to specify the envelope-from address. But that is now controlled by a separate variable, `mail-specify-envelope-from'.") -(custom-autoload (quote mail-from-style) "sendmail") +(custom-autoload (quote mail-from-style) "sendmail" t) (defvar mail-specify-envelope-from nil "\ If non-nil, specify the envelope-from address when sending mail. @@ -23533,20 +23730,20 @@ privileged operation. This variable affects sendmail and smtpmail -- if you use feedmail to send mail, see instead the variable `feedmail-deduce-envelope-from'.") -(custom-autoload (quote mail-specify-envelope-from) "sendmail") +(custom-autoload (quote mail-specify-envelope-from) "sendmail" t) (defvar mail-self-blind nil "\ Non-nil means insert BCC to self in messages to be sent. This is done when the message is initialized, so you can remove or alter the BCC field to override the default.") -(custom-autoload (quote mail-self-blind) "sendmail") +(custom-autoload (quote mail-self-blind) "sendmail" t) (defvar mail-interactive nil "\ Non-nil means when sending a message wait for and display errors. nil means let mailer mail back a message to report errors.") -(custom-autoload (quote mail-interactive) "sendmail") +(custom-autoload (quote mail-interactive) "sendmail" t) (put (quote send-mail-function) (quote standard-value) (quote ((if (and window-system (memq system-type (quote (darwin windows-nt)))) (quote mailclient-send-it) (quote sendmail-send-it))))) @@ -23558,25 +23755,25 @@ that matches the variable `mail-header-separator'. This is used by the default mail-sending commands. See also `message-send-mail-function' for use with the Message package.") -(custom-autoload (quote send-mail-function) "sendmail") +(custom-autoload (quote send-mail-function) "sendmail" t) (defvar mail-header-separator "--text follows this line--" "\ Line used to separate headers from text in messages being composed.") -(custom-autoload (quote mail-header-separator) "sendmail") +(custom-autoload (quote mail-header-separator) "sendmail" t) (defvar mail-archive-file-name nil "\ Name of file to write all outgoing messages in, or nil for none. This can be an inbox file or an Rmail file.") -(custom-autoload (quote mail-archive-file-name) "sendmail") +(custom-autoload (quote mail-archive-file-name) "sendmail" t) (defvar mail-default-reply-to nil "\ Address to insert as default Reply-to field of outgoing messages. If nil, it will be initialized from the REPLYTO environment variable when you first send mail.") -(custom-autoload (quote mail-default-reply-to) "sendmail") +(custom-autoload (quote mail-default-reply-to) "sendmail" t) (defvar mail-alias-file nil "\ If non-nil, the name of a file to use instead of `/usr/lib/aliases'. @@ -23584,7 +23781,7 @@ This file defines aliases to be expanded by the mailer; this is a different feature from that of defining aliases in `.mailrc' to be expanded in Emacs. This variable has no effect unless your system uses sendmail as its mailer.") -(custom-autoload (quote mail-alias-file) "sendmail") +(custom-autoload (quote mail-alias-file) "sendmail" t) (defvar mail-personal-alias-file "~/.mailrc" "\ If non-nil, the name of the user's personal mail alias file. @@ -23592,13 +23789,13 @@ This file typically should be in same format as the `.mailrc' file used by the `Mail' or `mailx' program. This file need not actually exist.") -(custom-autoload (quote mail-personal-alias-file) "sendmail") +(custom-autoload (quote mail-personal-alias-file) "sendmail" t) (defvar mail-setup-hook nil "\ Normal hook, run each time a new outgoing mail message is initialized. The function `mail-setup' runs this hook.") -(custom-autoload (quote mail-setup-hook) "sendmail") +(custom-autoload (quote mail-setup-hook) "sendmail" t) (defvar mail-aliases t "\ Alist of mail address aliases, @@ -23612,13 +23809,13 @@ The alias definitions in the file have this form: Prefix insert on lines of yanked message being replied to. nil means use indentation.") -(custom-autoload (quote mail-yank-prefix) "sendmail") +(custom-autoload (quote mail-yank-prefix) "sendmail" t) (defvar mail-indentation-spaces 3 "\ Number of spaces to insert at the beginning of each cited line. Used by `mail-yank-original' via `mail-indent-citation'.") -(custom-autoload (quote mail-indentation-spaces) "sendmail") +(custom-autoload (quote mail-indentation-spaces) "sendmail" t) (defvar mail-citation-hook nil "\ Hook for modifying a citation just inserted in the mail buffer. @@ -23631,7 +23828,7 @@ in the cited portion of the message. If this hook is entirely empty (nil), a default action is taken instead of no action.") -(custom-autoload (quote mail-citation-hook) "sendmail") +(custom-autoload (quote mail-citation-hook) "sendmail" t) (defvar mail-citation-prefix-regexp "[ ]*[-a-z0-9A-Z]*>+[ ]*\\|[ ]*" "\ Regular expression to match a citation prefix plus whitespace. @@ -23639,7 +23836,7 @@ It should match whatever sort of citation prefixes you want to handle, with whitespace before and after; it should also match just whitespace. The default value matches citations like `foo-bar>' plus whitespace.") -(custom-autoload (quote mail-citation-prefix-regexp) "sendmail") +(custom-autoload (quote mail-citation-prefix-regexp) "sendmail" t) (defvar mail-signature nil "\ Text inserted at end of mail buffer when a message is initialized. @@ -23650,26 +23847,26 @@ If a string, that string is inserted. Otherwise, it should be an expression; it is evaluated and should insert whatever you want to insert.") -(custom-autoload (quote mail-signature) "sendmail") +(custom-autoload (quote mail-signature) "sendmail" t) (defvar mail-signature-file "~/.signature" "\ File containing the text inserted at end of mail buffer.") -(custom-autoload (quote mail-signature-file) "sendmail") +(custom-autoload (quote mail-signature-file) "sendmail" t) (defvar mail-default-directory "~/" "\ Directory for mail buffers. Value of `default-directory' for mail buffers. This directory is used for auto-save files of mail buffers.") -(custom-autoload (quote mail-default-directory) "sendmail") +(custom-autoload (quote mail-default-directory) "sendmail" t) (defvar mail-default-headers nil "\ A string containing header lines, to be inserted in outgoing messages. It is inserted before you edit the message, so you can edit or delete these lines.") -(custom-autoload (quote mail-default-headers) "sendmail") +(custom-autoload (quote mail-default-headers) "sendmail" t) (defvar mail-bury-selects-summary t "\ If non-nil, try to show RMAIL summary buffer after returning from mail. @@ -23677,7 +23874,7 @@ The functions \\[mail-send-on-exit] or \\[mail-dont-send] select the RMAIL summary buffer before returning, if it exists and this variable is non-nil.") -(custom-autoload (quote mail-bury-selects-summary) "sendmail") +(custom-autoload (quote mail-bury-selects-summary) "sendmail" t) (defvar mail-send-nonascii (quote mime) "\ Specify whether to allow sending non-ASCII characters in mail. @@ -23688,7 +23885,7 @@ The default is `mime'. Including non-ASCII characters in a mail message can be problematical for the recipient, who may not know how to decode them properly.") -(custom-autoload (quote mail-send-nonascii) "sendmail") +(custom-autoload (quote mail-send-nonascii) "sendmail" t) (autoload (quote mail-mode) "sendmail" "\ Major mode for editing mail to be sent. @@ -23719,7 +23916,7 @@ Turning on Mail mode runs the normal hooks `text-mode-hook' and The variable is used to trigger insertion of the \"Mail-Followup-To\" header when sending a message to a mailing list.") -(custom-autoload (quote mail-mailing-lists) "sendmail") +(custom-autoload (quote mail-mailing-lists) "sendmail" t) (defvar sendmail-coding-system nil "\ *Coding system for encoding the outgoing mail. @@ -23802,7 +23999,7 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** ;;;### (autoloads (server-mode server-start) "server" "server.el" -;;;;;; (17582 28846)) +;;;;;; (17581 37625)) ;;; Generated autoloads from server.el (autoload (quote server-start) "server" "\ @@ -23824,6 +24021,8 @@ use either \\[customize] or the function `server-mode'.") (custom-autoload (quote server-mode) "server") +(put (quote server-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote server-mode) "server" "\ Toggle Server mode. With ARG, turn Server mode on if ARG is positive, off otherwise. @@ -23834,7 +24033,7 @@ Server mode runs a process that accepts commands from the ;;;*** -;;;### (autoloads (ses-mode) "ses" "ses.el" (17578 34773)) +;;;### (autoloads (ses-mode) "ses" "ses.el" (17693 24641)) ;;; Generated autoloads from ses.el (autoload (quote ses-mode) "ses" "\ @@ -23853,7 +24052,7 @@ These are active only in the minibuffer, when entering or editing a formula: ;;;*** ;;;### (autoloads (html-mode sgml-mode) "sgml-mode" "textmodes/sgml-mode.el" -;;;;;; (17521 64540)) +;;;;;; (17524 25620)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload (quote sgml-mode) "sgml-mode" "\ @@ -23921,7 +24120,7 @@ To work around that, do: ;;;*** ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" -;;;;;; (17590 26287)) +;;;;;; (17709 24918)) ;;; Generated autoloads from progmodes/sh-script.el (put 'sh-shell 'safe-local-variable 'symbolp) @@ -23985,7 +24184,7 @@ with your script for an edit-interpret-debug cycle. ;;;*** -;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17383 32165)) +;;;### (autoloads (sha1) "sha1" "gnus/sha1.el" (17385 8494)) ;;; Generated autoloads from gnus/sha1.el (autoload (quote sha1) "sha1" "\ @@ -24000,7 +24199,7 @@ If BINARY is non-nil, return a string in binary form. ;;;*** ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" -;;;;;; (17383 32141)) +;;;;;; (17385 8490)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload (quote list-load-path-shadows) "shadow" "\ @@ -24047,8 +24246,8 @@ buffer called `*Shadows*'. Shadowings are located by calling the ;;;*** ;;;### (autoloads (shadow-initialize shadow-define-regexp-group shadow-define-literal-group -;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17383 -;;;;;; 32120)) +;;;;;; shadow-define-cluster) "shadowfile" "shadowfile.el" (17385 +;;;;;; 8487)) ;;; Generated autoloads from shadowfile.el (autoload (quote shadow-define-cluster) "shadowfile" "\ @@ -24087,7 +24286,7 @@ Set up file shadowing. ;;;*** ;;;### (autoloads (shell shell-dumb-shell-regexp) "shell" "shell.el" -;;;;;; (17582 28833)) +;;;;;; (17717 4883)) ;;; Generated autoloads from shell.el (defvar shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe" "\ @@ -24097,7 +24296,7 @@ match this regexp, Emacs will write out the command history when the shell finishes, and won't remove backslashes when it unquotes shell arguments.") -(custom-autoload (quote shell-dumb-shell-regexp) "shell") +(custom-autoload (quote shell-dumb-shell-regexp) "shell" t) (autoload (quote shell) "shell" "\ Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*'). @@ -24134,7 +24333,7 @@ Otherwise, one argument `-i' is passed to the shell. ;;;*** ;;;### (autoloads (sieve-upload-and-bury sieve-upload sieve-manage) -;;;;;; "sieve" "gnus/sieve.el" (17383 32166)) +;;;;;; "sieve" "gnus/sieve.el" (17385 8494)) ;;; Generated autoloads from gnus/sieve.el (autoload (quote sieve-manage) "sieve" "\ @@ -24155,7 +24354,7 @@ Not documented ;;;*** ;;;### (autoloads (sieve-mode) "sieve-mode" "gnus/sieve-mode.el" -;;;;;; (17383 32166)) +;;;;;; (17385 8494)) ;;; Generated autoloads from gnus/sieve-mode.el (autoload (quote sieve-mode) "sieve-mode" "\ @@ -24170,14 +24369,14 @@ Turning on Sieve mode runs `sieve-mode-hook'. ;;;*** -;;;### (autoloads nil "simple" "simple.el" (17590 36099)) +;;;### (autoloads nil "simple" "simple.el" (17718 31961)) ;;; Generated autoloads from simple.el (put 'fill-prefix 'safe-local-variable 'string-or-null-p) ;;;*** -;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17397 -;;;;;; 61572)) +;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17394 +;;;;;; 12938)) ;;; Generated autoloads from progmodes/simula.el (autoload (quote simula-mode) "simula" "\ @@ -24226,7 +24425,7 @@ with no arguments, if that value is non-nil. ;;;*** ;;;### (autoloads (skeleton-pair-insert-maybe skeleton-insert skeleton-proxy-new -;;;;;; define-skeleton) "skeleton" "skeleton.el" (17521 64537)) +;;;;;; define-skeleton) "skeleton" "skeleton.el" (17524 25620)) ;;; Generated autoloads from skeleton.el (defvar skeleton-filter-function (quote identity) "\ @@ -24336,7 +24535,7 @@ symmetrical ones, and the same character twice for the others. ;;;*** ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" -;;;;;; (17494 22060)) +;;;;;; (17495 43954)) ;;; Generated autoloads from smerge-mode.el (autoload (quote smerge-ediff) "smerge-mode" "\ @@ -24355,7 +24554,7 @@ Minor mode to simplify editing output from the diff3 program. ;;;*** ;;;### (autoloads (smiley-buffer smiley-region) "smiley" "gnus/smiley.el" -;;;;;; (17457 37503)) +;;;;;; (17476 4800)) ;;; Generated autoloads from gnus/smiley.el (autoload (quote smiley-region) "smiley" "\ @@ -24373,7 +24572,7 @@ interactively. If there's no argument, do it at the current buffer ;;;*** ;;;### (autoloads (smtpmail-send-queued-mail smtpmail-send-it) "smtpmail" -;;;;;; "mail/smtpmail.el" (17383 32170)) +;;;;;; "mail/smtpmail.el" (17718 28532)) ;;; Generated autoloads from mail/smtpmail.el (autoload (quote smtpmail-send-it) "smtpmail" "\ @@ -24388,7 +24587,7 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. ;;;*** -;;;### (autoloads (snake) "snake" "play/snake.el" (17383 32183)) +;;;### (autoloads (snake) "snake" "play/snake.el" (17385 8495)) ;;; Generated autoloads from play/snake.el (autoload (quote snake) "snake" "\ @@ -24412,7 +24611,7 @@ Snake mode keybindings: ;;;*** ;;;### (autoloads (snmpv2-mode snmp-mode) "snmp-mode" "net/snmp-mode.el" -;;;;;; (17383 32177)) +;;;;;; (17385 8495)) ;;; Generated autoloads from net/snmp-mode.el (autoload (quote snmp-mode) "snmp-mode" "\ @@ -24443,7 +24642,7 @@ then `snmpv2-mode-hook'. ;;;### (autoloads (solar-equinoxes-solstices sunrise-sunset calendar-location-name ;;;;;; calendar-longitude calendar-latitude calendar-time-display-form) -;;;;;; "solar" "calendar/solar.el" (17397 61548)) +;;;;;; "solar" "calendar/solar.el" (17386 33146)) ;;; Generated autoloads from calendar/solar.el (defvar calendar-time-display-form (quote (12-hours ":" minutes am-pm (if time-zone " (") time-zone (if time-zone ")"))) "\ @@ -24514,8 +24713,8 @@ Requires floating point. ;;;*** -;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17383 -;;;;;; 32183)) +;;;### (autoloads (solitaire) "solitaire" "play/solitaire.el" (17385 +;;;;;; 8495)) ;;; Generated autoloads from play/solitaire.el (autoload (quote solitaire) "solitaire" "\ @@ -24592,7 +24791,7 @@ Pick your favourite shortcuts: ;;;### (autoloads (reverse-region sort-columns sort-regexp-fields ;;;;;; sort-fields sort-numeric-fields sort-pages sort-paragraphs -;;;;;; sort-lines sort-subr) "sort" "sort.el" (17466 42707)) +;;;;;; sort-lines sort-subr) "sort" "sort.el" (17476 4798)) ;;; Generated autoloads from sort.el (autoload (quote sort-subr) "sort" "\ @@ -24734,8 +24933,8 @@ From a program takes two point or marker arguments, BEG and END. ;;;*** -;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17457 -;;;;;; 37503)) +;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17476 +;;;;;; 4800)) ;;; Generated autoloads from gnus/spam.el (autoload (quote spam-initialize) "spam" "\ @@ -24747,7 +24946,7 @@ Install the spam.el hooks and do other initialization ;;;### (autoloads (spam-report-deagentize spam-report-agentize spam-report-url-to-file ;;;;;; spam-report-url-ping-mm-url spam-report-process-queue) "spam-report" -;;;;;; "gnus/spam-report.el" (17397 61557)) +;;;;;; "gnus/spam-report.el" (17386 33146)) ;;; Generated autoloads from gnus/spam-report.el (autoload (quote spam-report-process-queue) "spam-report" "\ @@ -24790,7 +24989,7 @@ Spam reports will be queued with the method used when ;;;*** ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" -;;;;;; "speedbar.el" (17578 34773)) +;;;;;; "speedbar.el" (17535 19469)) ;;; Generated autoloads from speedbar.el (defalias (quote speedbar) (quote speedbar-frame-mode)) @@ -24815,7 +25014,7 @@ selected. If the speedbar frame is active, then select the attached frame. ;;;*** ;;;### (autoloads (spell-string spell-region spell-word spell-buffer) -;;;;;; "spell" "textmodes/spell.el" (17383 32189)) +;;;;;; "spell" "textmodes/spell.el" (17385 8496)) ;;; Generated autoloads from textmodes/spell.el (put (quote spell-filter) (quote risky-local-variable) t) @@ -24851,8 +25050,8 @@ Check spelling of string supplied as argument. ;;;*** -;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17383 -;;;;;; 32183)) +;;;### (autoloads (snarf-spooks spook) "spook" "play/spook.el" (17385 +;;;;;; 8495)) ;;; Generated autoloads from play/spook.el (autoload (quote spook) "spook" "\ @@ -24870,8 +25069,8 @@ Return a vector containing the lines from `spook-phrases-file'. ;;;### (autoloads (sql-linter sql-db2 sql-interbase sql-postgres ;;;;;; sql-ms sql-ingres sql-solid sql-mysql sql-sqlite sql-informix ;;;;;; sql-sybase sql-oracle sql-product-interactive sql-mode sql-help -;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17397 -;;;;;; 61572)) +;;;;;; sql-add-product-keywords) "sql" "progmodes/sql.el" (17394 +;;;;;; 12938)) ;;; Generated autoloads from progmodes/sql.el (autoload (quote sql-add-product-keywords) "sql" "\ @@ -25302,8 +25501,8 @@ input. See `sql-interactive-mode'. ;;;;;; strokes-mode strokes-list-strokes strokes-load-user-strokes ;;;;;; strokes-help strokes-describe-stroke strokes-do-complex-stroke ;;;;;; strokes-do-stroke strokes-read-complex-stroke strokes-read-stroke -;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17383 -;;;;;; 32122)) +;;;;;; strokes-global-set-stroke) "strokes" "strokes.el" (17704 +;;;;;; 4325)) ;;; Generated autoloads from strokes.el (autoload (quote strokes-global-set-stroke) "strokes" "\ @@ -25376,9 +25575,10 @@ If STROKES-MAP is not given, `strokes-global-map' will be used instead. Non-nil if Strokes mode is enabled. See the command `strokes-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `strokes-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `strokes-mode'.") -(custom-autoload (quote strokes-mode) "strokes") +(custom-autoload (quote strokes-mode) "strokes" nil) (autoload (quote strokes-mode) "strokes" "\ Toggle Strokes global minor mode.\\ @@ -25412,7 +25612,7 @@ Read a complex stroke and insert its glyph into the current buffer. ;;;*** ;;;### (autoloads (studlify-buffer studlify-word studlify-region) -;;;;;; "studly" "play/studly.el" (16221 3781)) +;;;;;; "studly" "play/studly.el" (17075 55479)) ;;; Generated autoloads from play/studly.el (autoload (quote studlify-region) "studly" "\ @@ -25432,7 +25632,7 @@ Studlify-case the current buffer. ;;;*** -;;;### (autoloads (locate-library) "subr" "subr.el" (17590 36099)) +;;;### (autoloads (locate-library) "subr" "subr.el" (17724 51792)) ;;; Generated autoloads from subr.el (autoload (quote locate-library) "subr" "\ @@ -25454,7 +25654,7 @@ and the file name is displayed in the echo area. ;;;*** ;;;### (autoloads (sc-cite-original) "supercite" "mail/supercite.el" -;;;;;; (17383 32170)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/supercite.el (autoload (quote sc-cite-original) "supercite" "\ @@ -25486,7 +25686,7 @@ before, and `sc-post-hook' is run after the guts of this function. ;;;*** -;;;### (autoloads (t-mouse-mode) "t-mouse" "t-mouse.el" (17416 55046)) +;;;### (autoloads (t-mouse-mode) "t-mouse" "t-mouse.el" (17614 9197)) ;;; Generated autoloads from t-mouse.el (defvar t-mouse-mode nil "\ @@ -25495,7 +25695,7 @@ See the command `t-mouse-mode' for a description of this minor-mode. Setting this variable directly does not take effect; use either \\[customize] or the function `t-mouse-mode'.") -(custom-autoload (quote t-mouse-mode) "t-mouse") +(custom-autoload (quote t-mouse-mode) "t-mouse" nil) (autoload (quote t-mouse-mode) "t-mouse" "\ Toggle t-mouse mode. @@ -25507,7 +25707,7 @@ Turn it on to use emacs mouse commands, and off to use t-mouse commands. ;;;*** -;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17383 32122)) +;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17607 45512)) ;;; Generated autoloads from tabify.el (autoload (quote untabify) "tabify" "\ @@ -25542,29 +25742,29 @@ The variable `tab-width' controls the spacing of tab stops. ;;;;;; 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" (17578 34780)) +;;;;;; "table" "textmodes/table.el" (17717 4883)) ;;; Generated autoloads from textmodes/table.el (defvar table-cell-map-hook nil "\ *Normal hooks run when finishing construction of `table-cell-map'. User can modify `table-cell-map' by adding custom functions here.") -(custom-autoload (quote table-cell-map-hook) "table") +(custom-autoload (quote table-cell-map-hook) "table" t) (defvar table-load-hook nil "\ *List of functions to be called after the table is first loaded.") -(custom-autoload (quote table-load-hook) "table") +(custom-autoload (quote table-load-hook) "table" t) (defvar table-point-entered-cell-hook nil "\ *List of functions to be called after point entered a table cell.") -(custom-autoload (quote table-point-entered-cell-hook) "table") +(custom-autoload (quote table-point-entered-cell-hook) "table" t) (defvar table-point-left-cell-hook nil "\ *List of functions to be called after point left a table cell.") -(custom-autoload (quote table-point-left-cell-hook) "table") +(custom-autoload (quote table-point-left-cell-hook) "table" t) (autoload (quote table-insert) "table" "\ Insert an editable text table. @@ -26130,7 +26330,7 @@ converts a table into plain text without frames. It is a companion to ;;;*** -;;;### (autoloads (talk-connect) "talk" "talk.el" (17383 32122)) +;;;### (autoloads (talk-connect) "talk" "talk.el" (17385 8488)) ;;; Generated autoloads from talk.el (autoload (quote talk-connect) "talk" "\ @@ -26140,7 +26340,7 @@ Connect to display DISPLAY for the Emacs talk group. ;;;*** -;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17578 34774)) +;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17528 38000)) ;;; Generated autoloads from tar-mode.el (autoload (quote tar-mode) "tar-mode" "\ @@ -26164,7 +26364,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" -;;;;;; "progmodes/tcl.el" (17484 52437)) +;;;;;; "progmodes/tcl.el" (17485 5461)) ;;; Generated autoloads from progmodes/tcl.el (autoload (quote tcl-mode) "tcl" "\ @@ -26215,7 +26415,7 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. ;;;*** -;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17383 32177)) +;;;### (autoloads (rsh telnet) "telnet" "net/telnet.el" (17385 8495)) ;;; Generated autoloads from net/telnet.el (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)") @@ -26242,8 +26442,8 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17578 -;;;;;; 34774)) +;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17560 +;;;;;; 29983)) ;;; Generated autoloads from term.el (autoload (quote make-term) "term" "\ @@ -26271,8 +26471,8 @@ Start a terminal-emulator in a new buffer. ;;;*** -;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17383 -;;;;;; 32123)) +;;;### (autoloads (terminal-emulator) "terminal" "terminal.el" (17385 +;;;;;; 8488)) ;;; Generated autoloads from terminal.el (autoload (quote terminal-emulator) "terminal" "\ @@ -26309,7 +26509,7 @@ subprocess started. ;;;*** ;;;### (autoloads (testcover-this-defun) "testcover" "emacs-lisp/testcover.el" -;;;;;; (17383 32141)) +;;;;;; (17385 8490)) ;;; Generated autoloads from emacs-lisp/testcover.el (autoload (quote testcover-this-defun) "testcover" "\ @@ -26319,7 +26519,7 @@ Start coverage on function under point. ;;;*** -;;;### (autoloads (tetris) "tetris" "play/tetris.el" (17383 32183)) +;;;### (autoloads (tetris) "tetris" "play/tetris.el" (17385 8495)) ;;; Generated autoloads from play/tetris.el (autoload (quote tetris) "tetris" "\ @@ -26350,7 +26550,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" -;;;;;; (17578 34780)) +;;;;;; (17560 6690)) ;;; Generated autoloads from textmodes/tex-mode.el (defvar tex-shell-file-name nil "\ @@ -26652,7 +26852,7 @@ Major mode to edit DocTeX files. ;;;*** ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) -;;;;;; "texinfmt" "textmodes/texinfmt.el" (17590 36100)) +;;;;;; "texinfmt" "textmodes/texinfmt.el" (17601 9092)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload (quote texinfo-format-buffer) "texinfmt" "\ @@ -26692,7 +26892,7 @@ if large. You can use Info-split to do this manually. ;;;*** ;;;### (autoloads (texinfo-mode texinfo-close-quote texinfo-open-quote) -;;;;;; "texinfo" "textmodes/texinfo.el" (17383 32190)) +;;;;;; "texinfo" "textmodes/texinfo.el" (17385 8496)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote "``" "\ @@ -26779,7 +26979,7 @@ value of `texinfo-mode-hook'. ;;;### (autoloads (thai-auto-composition-mode thai-composition-function ;;;;;; thai-post-read-conversion thai-compose-buffer thai-compose-string ;;;;;; thai-compose-region) "thai-util" "language/thai-util.el" -;;;;;; (17171 19474)) +;;;;;; (17185 27569)) ;;; Generated autoloads from language/thai-util.el (autoload (quote thai-compose-region) "thai-util" "\ @@ -26823,7 +27023,7 @@ Minor mode for automatically correct Thai character composition. ;;;### (autoloads (list-at-point number-at-point symbol-at-point ;;;;;; sexp-at-point thing-at-point bounds-of-thing-at-point forward-thing) -;;;;;; "thingatpt" "thingatpt.el" (17582 28846)) +;;;;;; "thingatpt" "thingatpt.el" (17672 24041)) ;;; Generated autoloads from thingatpt.el (autoload (quote forward-thing) "thingatpt" "\ @@ -26880,7 +27080,7 @@ Not documented ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" -;;;;;; (17590 36099)) +;;;;;; (17601 9091)) ;;; Generated autoloads from thumbs.el (autoload (quote thumbs-find-thumb) "thumbs" "\ @@ -26919,7 +27119,7 @@ In dired, call the setroot program on the image at point. ;;;;;; tibetan-composition-function tibetan-decompose-string tibetan-decompose-region ;;;;;; tibetan-compose-region tibetan-compose-string tibetan-transcription-to-tibetan ;;;;;; tibetan-tibetan-to-transcription tibetan-char-p) "tibet-util" -;;;;;; "language/tibet-util.el" (17097 33527)) +;;;;;; "language/tibet-util.el" (17102 18781)) ;;; Generated autoloads from language/tibet-util.el (autoload (quote tibetan-char-p) "tibet-util" "\ @@ -26998,7 +27198,7 @@ Not documented ;;;*** ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" -;;;;;; (17383 32190)) +;;;;;; (17385 8496)) ;;; Generated autoloads from textmodes/tildify.el (autoload (quote tildify-region) "tildify" "\ @@ -27022,13 +27222,13 @@ This function performs no refilling of the changed text. ;;;*** ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) -;;;;;; "time" "time.el" (17383 32124)) +;;;;;; "time" "time.el" (17674 51268)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ *Non-nil means \\[display-time] should display day and date as well as time.") -(custom-autoload (quote display-time-day-and-date) "time") +(custom-autoload (quote display-time-day-and-date) "time" t) (autoload (quote display-time) "time" "\ Enable display of time, load level, and mail flag in mode lines. @@ -27043,9 +27243,10 @@ This runs the normal hook `display-time-hook' after each update. Non-nil if Display-Time mode is enabled. See the command `display-time-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `display-time-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `display-time-mode'.") -(custom-autoload (quote display-time-mode) "time") +(custom-autoload (quote display-time-mode) "time" nil) (autoload (quote display-time-mode) "time" "\ Toggle display of time, load level, and mail flag in mode lines. @@ -27063,8 +27264,8 @@ This runs the normal hook `display-time-hook' after each update. ;;;### (autoloads (safe-date-to-time time-to-days 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 time-to-seconds -;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17397 -;;;;;; 61548)) +;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17386 +;;;;;; 33146)) ;;; Generated autoloads from calendar/time-date.el (autoload (quote date-to-time) "time-date" "\ @@ -27150,7 +27351,7 @@ If DATE is malformed, return a time value of zeros. ;;;*** ;;;### (autoloads (time-stamp-toggle-active time-stamp) "time-stamp" -;;;;;; "time-stamp.el" (17487 53545)) +;;;;;; "time-stamp.el" (17495 43954)) ;;; Generated autoloads from time-stamp.el (put 'time-stamp-format 'safe-local-variable 'stringp) (put 'time-stamp-line-limit 'safe-local-variable 'integerp) @@ -27193,7 +27394,7 @@ With ARG, turn time stamping on if and only if arg is positive. ;;;;;; 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" -;;;;;; (17397 61548)) +;;;;;; (17632 41885)) ;;; Generated autoloads from calendar/timeclock.el (autoload (quote timeclock-modeline-display) "timeclock" "\ @@ -27294,7 +27495,7 @@ relative only to the time worked today, and not to past time. ;;;### (autoloads (with-timeout run-with-idle-timer add-timeout run-with-timer ;;;;;; run-at-time cancel-function-timers cancel-timer) "timer" -;;;;;; "emacs-lisp/timer.el" (17383 32142)) +;;;;;; "emacs-lisp/timer.el" (17686 65476)) ;;; Generated autoloads from emacs-lisp/timer.el (defalias (quote disable-timeout) (quote cancel-timer)) @@ -27305,7 +27506,9 @@ Remove TIMER from the list of active timers. \(fn TIMER)" nil nil) (autoload (quote cancel-function-timers) "timer" "\ -Cancel all timers scheduled by `run-at-time' which would run FUNCTION. +Cancel all timers which would run FUNCTION. +This affects ordinary timers such as are scheduled by `run-at-time', +and idle timers such as are scheduled by `run-with-idle-timer'. \(fn FUNCTION)" t nil) @@ -27342,7 +27545,10 @@ This function is for compatibility; see also `run-with-timer'. (autoload (quote run-with-idle-timer) "timer" "\ Perform an action the next time Emacs is idle for SECS seconds. The action is to call FUNCTION with arguments ARGS. -SECS may be an integer or a floating point number. +SECS may be an integer, a floating point number, or the internal +time format (HIGH LOW USECS) returned by, e.g., `current-idle-time'. +If Emacs is currently idle, and has been idle for N seconds (N < SECS), +then it will call FUNCTION in SECS - N seconds from now. If REPEAT is non-nil, do the action each time Emacs has been idle for exactly SECS seconds (that is, only once for each time Emacs becomes idle). @@ -27365,7 +27571,7 @@ be detected. ;;;*** ;;;### (autoloads (batch-titdic-convert titdic-convert) "titdic-cnv" -;;;;;; "international/titdic-cnv.el" (17106 41306)) +;;;;;; "international/titdic-cnv.el" (17102 18762)) ;;; Generated autoloads from international/titdic-cnv.el (autoload (quote titdic-convert) "titdic-cnv" "\ @@ -27388,8 +27594,8 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". ;;;*** ;;;### (autoloads (tamil-composition-function tamil-post-read-conversion -;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17097 -;;;;;; 33527)) +;;;;;; tamil-compose-region) "tml-util" "language/tml-util.el" (17102 +;;;;;; 18782)) ;;; Generated autoloads from language/tml-util.el (autoload (quote tamil-compose-region) "tml-util" "\ @@ -27412,7 +27618,7 @@ PATTERN regexp. ;;;*** ;;;### (autoloads (tmm-prompt tmm-menubar-mouse tmm-menubar) "tmm" -;;;;;; "tmm.el" (17383 32124)) +;;;;;; "tmm.el" (17385 8488)) ;;; Generated autoloads from tmm.el (define-key global-map "\M-`" 'tmm-menubar) (define-key global-map [f10] 'tmm-menubar) @@ -27453,7 +27659,7 @@ Its value should be an event that has a binding in MENU. ;;;### (autoloads (todo-show todo-cp todo-mode todo-print todo-top-priorities ;;;;;; todo-insert-item todo-add-item-non-interactively todo-add-category) -;;;;;; "todo-mode" "calendar/todo-mode.el" (17397 61548)) +;;;;;; "todo-mode" "calendar/todo-mode.el" (17386 33146)) ;;; Generated autoloads from calendar/todo-mode.el (autoload (quote todo-add-category) "todo-mode" "\ @@ -27514,7 +27720,7 @@ Show TODO list. ;;;### (autoloads (tool-bar-local-item-from-menu tool-bar-add-item-from-menu ;;;;;; tool-bar-local-item tool-bar-add-item) "tool-bar" "tool-bar.el" -;;;;;; (17498 30594)) +;;;;;; (17495 43954)) ;;; Generated autoloads from tool-bar.el (put (quote tool-bar-mode) (quote standard-value) (quote (t))) @@ -27581,7 +27787,7 @@ holds a keymap. ;;;*** ;;;### (autoloads (tpu-edt-on tpu-edt-mode) "tpu-edt" "emulation/tpu-edt.el" -;;;;;; (17383 32144)) +;;;;;; (17385 8491)) ;;; Generated autoloads from emulation/tpu-edt.el (defvar tpu-edt-mode nil "\ @@ -27592,6 +27798,8 @@ use either \\[customize] or the function `tpu-edt-mode'.") (custom-autoload (quote tpu-edt-mode) "tpu-edt") +(put (quote tpu-edt-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote tpu-edt-mode) "tpu-edt" "\ TPU/edt emulation. @@ -27607,7 +27815,7 @@ Turn on TPU/edt emulation. ;;;*** ;;;### (autoloads (tpu-set-cursor-bound tpu-set-cursor-free tpu-set-scroll-margins) -;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17383 32144)) +;;;;;; "tpu-extras" "emulation/tpu-extras.el" (17385 8491)) ;;; Generated autoloads from emulation/tpu-extras.el (autoload (quote tpu-set-scroll-margins) "tpu-extras" "\ @@ -27627,7 +27835,7 @@ Constrain the cursor to the flow of the text. ;;;*** -;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17484 52427)) +;;;### (autoloads (tq-create) "tq" "emacs-lisp/tq.el" (17651 3608)) ;;; Generated autoloads from emacs-lisp/tq.el (autoload (quote tq-create) "tq" "\ @@ -27641,13 +27849,13 @@ to a tcp server on another machine. ;;;*** ;;;### (autoloads (trace-function-background trace-function trace-buffer) -;;;;;; "trace" "emacs-lisp/trace.el" (17383 32142)) +;;;;;; "trace" "emacs-lisp/trace.el" (17656 37701)) ;;; Generated autoloads from emacs-lisp/trace.el (defvar trace-buffer "*trace-output*" "\ *Trace output will by default go to that buffer.") -(custom-autoload (quote trace-buffer) "trace") +(custom-autoload (quote trace-buffer) "trace" t) (autoload (quote trace-function) "trace" "\ Traces FUNCTION with trace output going to BUFFER. @@ -27662,11 +27870,14 @@ display oriented stuff, use `trace-function-background' instead. (autoload (quote trace-function-background) "trace" "\ Traces FUNCTION with trace output going quietly to BUFFER. -For every call of FUNCTION Lisp-style trace messages that display argument -and return values will be inserted into BUFFER. This function generates the -trace advice for FUNCTION and activates it together with any other advice -there might be!! Trace output will quietly go to BUFFER without changing -the window or buffer configuration at all. +When this tracing is enabled, every call to FUNCTION writes +a Lisp-style trace message (showing the arguments and return value) +into BUFFER. This function generates advice to trace FUNCTION +and activates it together with any other advice there might be. +The trace output goes to BUFFER quietly, without changing +the window or buffer configuration. + +BUFFER defaults to `trace-buffer'. \(fn FUNCTION &optional BUFFER)" t nil) @@ -27675,7 +27886,7 @@ the window or buffer configuration at all. ;;;### (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-completion-file-name-regexp -;;;;;; tramp-file-name-regexp) "tramp" "net/tramp.el" (17578 34778)) +;;;;;; tramp-file-name-regexp) "tramp" "net/tramp.el" (17656 37701)) ;;; Generated autoloads from net/tramp.el (defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ @@ -27708,7 +27919,7 @@ updated after changing this variable. Also see `tramp-file-name-structure'.") -(custom-autoload (quote tramp-file-name-regexp) "tramp") +(custom-autoload (quote tramp-file-name-regexp) "tramp" t) (defconst tramp-completion-file-name-regexp-unified "^/$\\|^/[^/:][^/]*$" "\ Value for `tramp-completion-file-name-regexp' for unified remoting. @@ -27731,7 +27942,7 @@ updated after changing this variable. Also see `tramp-file-name-structure'.") -(custom-autoload (quote tramp-completion-file-name-regexp) "tramp") +(custom-autoload (quote tramp-completion-file-name-regexp) "tramp" t) (defconst tramp-completion-file-name-handler-alist (quote ((file-name-all-completions . tramp-completion-handle-file-name-all-completions) (file-name-completion . tramp-completion-handle-file-name-completion))) "\ Alist of completion handler functions. @@ -27760,7 +27971,7 @@ Invoke tramp file name completion handler. Falls back to normal file name handler if no tramp file name handler exists." (let ((fn (assoc operation tramp-completion-file-name-handler-alist))) (if fn (save-match-data (apply (cdr fn) args)) (tramp-completion-run-real-handler operation args)))) (defsubst tramp-register-file-name-handlers nil "\ -Add tramp file name handlers to `file-name-handler-alist'." (add-to-list (quote file-name-handler-alist) (cons tramp-file-name-regexp (quote tramp-file-name-handler))) (when (or partial-completion-mode (featurep (quote ido))) (add-to-list (quote file-name-handler-alist) (cons tramp-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t)) (let ((jka (rassoc (quote jka-compr-handler) file-name-handler-alist))) (when jka (setq file-name-handler-alist (cons jka (delete jka file-name-handler-alist)))))) +Add tramp file name handlers to `file-name-handler-alist'." (add-to-list (quote file-name-handler-alist) (cons tramp-file-name-regexp (quote tramp-file-name-handler))) (when (or (not (boundp (quote partial-completion-mode))) (symbol-value (quote partial-completion-mode)) (featurep (quote ido))) (add-to-list (quote file-name-handler-alist) (cons tramp-completion-file-name-regexp (quote tramp-completion-file-name-handler))) (put (quote tramp-completion-file-name-handler) (quote safe-magic) t)) (let ((jka (rassoc (quote jka-compr-handler) file-name-handler-alist))) (when jka (setq file-name-handler-alist (cons jka (delete jka file-name-handler-alist)))))) (add-hook 'after-init-hook '(lambda () (tramp-register-file-name-handlers))) @@ -27788,7 +27999,7 @@ Discard Tramp from loading remote files. ;;;*** ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" -;;;;;; (17365 2740)) +;;;;;; (17366 25285)) ;;; Generated autoloads from net/tramp-ftp.el (autoload (quote tramp-ftp-enable-ange-ftp) "tramp-ftp" "\ @@ -27798,13 +28009,13 @@ Not documented ;;;*** -;;;### (autoloads (tumme-mark-tagged-files tumme-dired-comment-files -;;;;;; tumme-dired-display-image tumme-dired-display-external tumme-display-thumb -;;;;;; tumme-display-thumbs-append tumme-setup-dired-keybindings +;;;### (autoloads (tumme-dired-edit-comment-and-tags tumme-mark-tagged-files +;;;;;; tumme-dired-comment-files tumme-dired-display-image tumme-dired-display-external +;;;;;; tumme-display-thumb tumme-display-thumbs-append tumme-setup-dired-keybindings ;;;;;; tumme-jump-thumbnail-buffer tumme-delete-tag tumme-tag-files ;;;;;; tumme-show-all-from-dir tumme-display-thumbs tumme-dired-with-window-configuration -;;;;;; tumme-dired-insert-marked-thumbs) "tumme" "tumme.el" (17590 -;;;;;; 36099)) +;;;;;; tumme-dired-insert-marked-thumbs) "tumme" "tumme.el" (17645 +;;;;;; 64048)) ;;; Generated autoloads from tumme.el (autoload (quote tumme-dired-insert-marked-thumbs) "tumme" "\ @@ -27925,10 +28136,17 @@ matching tags will be marked in the dired buffer. \(fn)" t nil) +(autoload (quote tumme-dired-edit-comment-and-tags) "tumme" "\ +Edit comment and tags of current or marked image files. +Edit comment and tags for all marked image files in an +easy-to-use form. + +\(fn)" t nil) + ;;;*** ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" -;;;;;; "textmodes/two-column.el" (17383 32190)) +;;;;;; "textmodes/two-column.el" (17707 53738)) ;;; Generated autoloads from textmodes/two-column.el (autoload '2C-command "two-column" () t 'keymap) (global-set-key "\C-x6" '2C-command) @@ -27936,9 +28154,9 @@ matching tags will be marked in the dired buffer. (autoload (quote 2C-two-columns) "two-column" "\ Split current window vertically for two-column editing. -When called the first time, associates a buffer with the current -buffer in two-column minor mode (see \\[describe-mode] ). -Runs `2C-other-buffer-hook' in the new buffer. +\\When called the first time, associates a buffer with the current +buffer in two-column minor mode (use \\[describe-mode] once in the mode, +for details.). It runs `2C-other-buffer-hook' in the new buffer. When called again, restores the screen layout with the current buffer first and the associated buffer to its right. @@ -27979,7 +28197,7 @@ First column's text sSs Second column's text ;;;;;; 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" -;;;;;; (17383 32124)) +;;;;;; (17385 8488)) ;;; Generated autoloads from type-break.el (defvar type-break-mode nil "\ @@ -28162,7 +28380,7 @@ FRAC should be the inverse of the fractional value; for example, a value of ;;;*** ;;;### (autoloads (ununderline-region underline-region) "underline" -;;;;;; "textmodes/underline.el" (17383 32191)) +;;;;;; "textmodes/underline.el" (17385 8496)) ;;; Generated autoloads from textmodes/underline.el (autoload (quote underline-region) "underline" "\ @@ -28183,7 +28401,7 @@ which specify the range to operate on. ;;;*** ;;;### (autoloads (unforward-rmail-message undigestify-rmail-message) -;;;;;; "undigest" "mail/undigest.el" (17383 32171)) +;;;;;; "undigest" "mail/undigest.el" (17385 8494)) ;;; Generated autoloads from mail/undigest.el (autoload (quote undigestify-rmail-message) "undigest" "\ @@ -28202,7 +28420,7 @@ following the containing message. ;;;*** ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "mail/unrmail.el" -;;;;;; (17383 32171)) +;;;;;; (17385 8494)) ;;; Generated autoloads from mail/unrmail.el (autoload (quote batch-unrmail) "unrmail" "\ @@ -28221,8 +28439,8 @@ Convert Rmail file FILE to system inbox format file TO-FILE. ;;;*** -;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17404 -;;;;;; 53185)) +;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17408 +;;;;;; 40148)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload (quote unsafep) "unsafep" "\ @@ -28235,7 +28453,7 @@ of symbols with local bindings. ;;;*** ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" -;;;;;; "url/url.el" (17365 14342)) +;;;;;; "url/url.el" (17730 7120)) ;;; Generated autoloads from url/url.el (autoload (quote url-retrieve) "url" "\ @@ -28244,13 +28462,23 @@ URL is either a string or a parsed URL. CALLBACK is called when the object has been completely retrieved, with the current buffer containing the object, and any MIME headers associated -with it. Normally it gets the arguments in the list CBARGS. -However, if what we find is a redirect, CALLBACK is given -two additional args, `:redirect' and the redirected URL, -followed by CBARGS. +with it. It is called as (apply CALLBACK STATUS CBARGS). +STATUS is a list with an even number of elements representing +what happened during the request, with most recent events first, +or an empty list if no events have occurred. Each pair is one of: + +\(:redirect REDIRECTED-TO) - the request was redirected to this URL +\(:error (ERROR-SYMBOL . DATA)) - an error occurred. The error can be +signaled with (signal ERROR-SYMBOL DATA). Return the buffer URL will load into, or nil if the process has -already completed. +already completed (i.e. URL was a mailto URL or similar; in this case +the callback is not called). + +The variables `url-request-data', `url-request-method' and +`url-request-extra-headers' can be dynamically bound around the +request; dynamic binding of other variables doesn't necessarily +take effect. \(fn URL CALLBACK &optional CBARGS)" nil nil) @@ -28265,7 +28493,7 @@ no further processing). URL is either a string or a parsed URL. ;;;*** ;;;### (autoloads (url-register-auth-scheme url-get-authentication) -;;;;;; "url-auth" "url/url-auth.el" (17383 32191)) +;;;;;; "url-auth" "url/url-auth.el" (17729 4745)) ;;; Generated autoloads from url/url-auth.el (autoload (quote url-get-authentication) "url-auth" "\ @@ -28307,8 +28535,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. ;;;*** ;;;### (autoloads (url-cache-expired url-cache-extract url-is-cached -;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17338 -;;;;;; 41822)) +;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17729 +;;;;;; 4745)) ;;; Generated autoloads from url/url-cache.el (autoload (quote url-store-in-cache) "url-cache" "\ @@ -28333,7 +28561,7 @@ Return t iff a cached file has expired. ;;;*** -;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17383 32191)) +;;;### (autoloads (url-cid) "url-cid" "url/url-cid.el" (17729 4745)) ;;; Generated autoloads from url/url-cid.el (autoload (quote url-cid) "url-cid" "\ @@ -28344,7 +28572,7 @@ Not documented ;;;*** ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" -;;;;;; "url/url-dav.el" (17383 32191)) +;;;;;; "url/url-dav.el" (17729 4745)) ;;; Generated autoloads from url/url-dav.el (autoload (quote url-dav-supported-p) "url-dav" "\ @@ -28359,8 +28587,8 @@ Not documented ;;;*** -;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17383 -;;;;;; 32191)) +;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17729 +;;;;;; 4745)) ;;; Generated autoloads from url/url-file.el (autoload (quote url-file) "url-file" "\ @@ -28371,7 +28599,7 @@ Handle file: and ftp: URLs. ;;;*** ;;;### (autoloads (url-open-stream url-gateway-nslookup-host) "url-gw" -;;;;;; "url/url-gw.el" (17487 55937)) +;;;;;; "url/url-gw.el" (17730 6972)) ;;; Generated autoloads from url/url-gw.el (autoload (quote url-gateway-nslookup-host) "url-gw" "\ @@ -28383,23 +28611,25 @@ Attempt to resolve the given HOST using nslookup if possible. Open a stream to HOST, possibly via a gateway. Args per `open-network-stream'. Will not make a connection if `url-gateway-unplugged' is non-nil. +Might do a non-blocking connection; use `process-status' to check. \(fn NAME BUFFER HOST SERVICE)" nil nil) ;;;*** ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file -;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17457 -;;;;;; 37507)) +;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17729 +;;;;;; 4745)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ Non-nil if Url-Handler mode is enabled. See the command `url-handler-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `url-handler-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `url-handler-mode'.") -(custom-autoload (quote url-handler-mode) "url-handlers") +(custom-autoload (quote url-handler-mode) "url-handlers" nil) (autoload (quote url-handler-mode) "url-handlers" "\ Use URL to handle URL-like file names. @@ -28433,7 +28663,7 @@ Not documented ;;;*** ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p -;;;;;; url-http) "url-http" "url/url-http.el" (17515 39530)) +;;;;;; url-http) "url-http" "url/url-http.el" (17730 6972)) ;;; Generated autoloads from url/url-http.el (autoload (quote url-http) "url-http" "\ @@ -28484,9 +28714,21 @@ p3p \(fn URL)" nil nil) +(defconst url-https-default-port 443 "\ +Default HTTPS port.") + +(defconst url-https-asynchronous-p t "\ +HTTPS retrievals are asynchronous.") + +(defalias (quote url-https-expand-file-name) (quote url-http-expand-file-name)) + (autoload 'url-https "url-http") + (autoload 'url-https-file-exists-p "url-http") + (autoload 'url-https-file-readable-p "url-http") + (autoload 'url-https-file-attributes "url-http") + ;;;*** -;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17457 37507)) +;;;### (autoloads (url-irc) "url-irc" "url/url-irc.el" (17729 4745)) ;;; Generated autoloads from url/url-irc.el (autoload (quote url-irc) "url-irc" "\ @@ -28496,8 +28738,8 @@ Not documented ;;;*** -;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17383 -;;;;;; 32192)) +;;;### (autoloads (url-ldap) "url-ldap" "url/url-ldap.el" (17729 +;;;;;; 4745)) ;;; Generated autoloads from url/url-ldap.el (autoload (quote url-ldap) "url-ldap" "\ @@ -28511,7 +28753,7 @@ URL can be a URL string, or a URL vector of the type returned by ;;;*** ;;;### (autoloads (url-mailto url-mail) "url-mailto" "url/url-mailto.el" -;;;;;; (17383 32192)) +;;;;;; (17729 4745)) ;;; Generated autoloads from url/url-mailto.el (autoload (quote url-mail) "url-mailto" "\ @@ -28527,7 +28769,7 @@ Handle the mailto: URL syntax. ;;;*** ;;;### (autoloads (url-data url-generic-emulator-loader url-info -;;;;;; url-man) "url-misc" "url/url-misc.el" (17383 32192)) +;;;;;; url-man) "url-misc" "url/url-misc.el" (17729 4745)) ;;; Generated autoloads from url/url-misc.el (autoload (quote url-man) "url-misc" "\ @@ -28559,7 +28801,7 @@ Fetch a data URL (RFC 2397). ;;;*** ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" -;;;;;; (17358 28606)) +;;;;;; (17729 4745)) ;;; Generated autoloads from url/url-news.el (autoload (quote url-news) "url-news" "\ @@ -28576,7 +28818,7 @@ Not documented ;;;### (autoloads (url-ns-user-pref url-ns-prefs isInNet isResolvable ;;;;;; dnsResolve dnsDomainIs isPlainHostName) "url-ns" "url/url-ns.el" -;;;;;; (17383 32192)) +;;;;;; (17729 4745)) ;;; Generated autoloads from url/url-ns.el (autoload (quote isPlainHostName) "url-ns" "\ @@ -28617,7 +28859,7 @@ Not documented ;;;*** ;;;### (autoloads (url-generic-parse-url url-recreate-url) "url-parse" -;;;;;; "url/url-parse.el" (17383 32192)) +;;;;;; "url/url-parse.el" (17729 4745)) ;;; Generated autoloads from url/url-parse.el (autoload (quote url-recreate-url) "url-parse" "\ @@ -28635,7 +28877,7 @@ Format is: ;;;*** ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" -;;;;;; (17348 1513)) +;;;;;; (17729 4745)) ;;; Generated autoloads from url/url-privacy.el (autoload (quote url-setup-privacy-info) "url-privacy" "\ @@ -28651,7 +28893,7 @@ Setup variables that expose info about you and your system. ;;;;;; url-strip-leading-spaces url-eat-trailing-space url-get-normalized-date ;;;;;; url-lazy-message url-normalize-url url-insert-entities-in-string ;;;;;; url-parse-args url-debug url-debug) "url-util" "url/url-util.el" -;;;;;; (17383 32193)) +;;;;;; (17729 4745)) ;;; Generated autoloads from url/url-util.el (defvar url-debug nil "\ @@ -28662,7 +28904,7 @@ If t, all messages will be logged. If a number, all messages will be logged, as well shown via `message'. If a list, it is a list of the types of messages to be logged.") -(custom-autoload (quote url-debug) "url-util") +(custom-autoload (quote url-debug) "url-util" t) (autoload (quote url-debug) "url-util" "\ Not documented @@ -28747,9 +28989,13 @@ forbidden in URL encoding. \(fn STR &optional ALLOW-NEWLINES)" nil nil) (autoload (quote url-hexify-string) "url-util" "\ -Escape characters in a string. +Return a new string that is STRING URI-encoded. +First, STRING is converted to utf-8, if necessary. Then, for each +character in the utf-8 string, those found in `url-unreserved-chars' +are left as-is, all others are represented as a three-character +string: \"%\" followed by two lowercase hex digits. -\(fn STR)" nil nil) +\(fn STRING)" nil nil) (autoload (quote url-file-extension) "url-util" "\ Return the filename extension of FNAME. @@ -28776,7 +29022,7 @@ This uses `url-current-object', set locally to the buffer. ;;;*** ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) -;;;;;; "userlock" "userlock.el" (17383 32125)) +;;;;;; "userlock" "userlock.el" (17385 8488)) ;;; Generated autoloads from userlock.el (autoload (quote ask-user-about-lock) "userlock" "\ @@ -28804,7 +29050,7 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf-7" "international/utf-7.el" (17246 18006)) +;;;### (autoloads nil "utf-7" "international/utf-7.el" (17245 4870)) ;;; Generated autoloads from international/utf-7.el (autoload-coding-system 'utf-7 '(require 'utf-7)) @@ -28812,7 +29058,7 @@ The buffer in question is current when this function is called. ;;;### (autoloads (uudecode-decode-region uudecode-decode-region-internal ;;;;;; uudecode-decode-region-external) "uudecode" "gnus/uudecode.el" -;;;;;; (17578 34777)) +;;;;;; (17551 7908)) ;;; Generated autoloads from gnus/uudecode.el (autoload (quote uudecode-decode-region-external) "uudecode" "\ @@ -28842,26 +29088,26 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. ;;;;;; vc-directory vc-merge vc-insert-headers vc-version-other-window ;;;;;; vc-diff vc-register vc-next-action vc-do-command edit-vc-file ;;;;;; with-vc-file vc-branch-part vc-trunk-p vc-before-checkin-hook -;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17590 36099)) +;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17721 20491)) ;;; Generated autoloads from vc.el (defvar vc-checkout-hook nil "\ Normal hook (list of functions) run after checking out a file. See `run-hooks'.") -(custom-autoload (quote vc-checkout-hook) "vc") +(custom-autoload (quote vc-checkout-hook) "vc" t) (defvar vc-checkin-hook nil "\ Normal hook (list of functions) run after a checkin is done. See also `log-edit-done-hook'.") -(custom-autoload (quote vc-checkin-hook) "vc") +(custom-autoload (quote vc-checkin-hook) "vc" t) (defvar vc-before-checkin-hook nil "\ Normal hook (list of functions) run before a file is checked in. See `run-hooks'.") -(custom-autoload (quote vc-before-checkin-hook) "vc") +(custom-autoload (quote vc-before-checkin-hook) "vc" t) (autoload (quote vc-trunk-p) "vc" "\ Return t if REV is a revision on the trunk. @@ -29130,7 +29376,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-arch" "vc-arch.el" (17383 32125)) +;;;### (autoloads nil "vc-arch" "vc-arch.el" (17385 8488)) ;;; Generated autoloads from vc-arch.el (defun vc-arch-registered (file) (if (vc-find-root file "{arch}/=tagging-method") @@ -29140,7 +29386,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17383 32125)) +;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17587 57307)) ;;; Generated autoloads from vc-cvs.el (defun vc-cvs-registered (f) (when (file-readable-p (expand-file-name @@ -29150,7 +29396,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17383 32125)) +;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17385 8488)) ;;; Generated autoloads from vc-mcvs.el (defun vc-mcvs-registered (file) (if (vc-find-root file "MCVS/CVS") @@ -29161,7 +29407,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" -;;;;;; (17383 32125)) +;;;;;; (17385 8488)) ;;; Generated autoloads from vc-rcs.el (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -29174,7 +29420,7 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" -;;;;;; (17383 32126)) +;;;;;; (17385 8488)) ;;; Generated autoloads from vc-sccs.el (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -29191,7 +29437,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vc-svn" "vc-svn.el" (17397 61543)) +;;;### (autoloads nil "vc-svn" "vc-svn.el" (17721 20491)) ;;; Generated autoloads from vc-svn.el (defun vc-svn-registered (f) (when (file-readable-p (expand-file-name @@ -29204,7 +29450,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** ;;;### (autoloads (vhdl-mode) "vhdl-mode" "progmodes/vhdl-mode.el" -;;;;;; (17503 24309)) +;;;;;; (17615 27749)) ;;; Generated autoloads from progmodes/vhdl-mode.el (autoload (quote vhdl-mode) "vhdl-mode" "\ @@ -29745,7 +29991,7 @@ Key bindings: ;;;*** -;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17097 33503)) +;;;### (autoloads (vi-mode) "vi" "emulation/vi.el" (17102 18541)) ;;; Generated autoloads from emulation/vi.el (autoload (quote vi-mode) "vi" "\ @@ -29800,7 +30046,7 @@ Syntax table and abbrevs while in vi mode remain as they were in Emacs. ;;;### (autoloads (viqr-pre-write-conversion viqr-post-read-conversion ;;;;;; viet-encode-viqr-buffer viet-encode-viqr-region viet-decode-viqr-buffer ;;;;;; viet-decode-viqr-region viet-encode-viscii-char) "viet-util" -;;;;;; "language/viet-util.el" (17097 33527)) +;;;;;; "language/viet-util.el" (17102 18783)) ;;; Generated autoloads from language/viet-util.el (autoload (quote viet-encode-viscii-char) "viet-util" "\ @@ -29846,8 +30092,8 @@ Not documented ;;;### (autoloads (View-exit-and-edit view-mode-enter view-mode view-buffer-other-frame ;;;;;; view-buffer-other-window view-buffer view-file-other-frame -;;;;;; view-file-other-window view-file) "view" "view.el" (17383 -;;;;;; 32126)) +;;;;;; view-file-other-window view-file) "view" "view.el" (17385 +;;;;;; 8488)) ;;; Generated autoloads from view.el (defvar view-mode nil "\ @@ -30056,8 +30302,8 @@ Exit View mode and make the current buffer editable. ;;;*** -;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17383 -;;;;;; 32144)) +;;;### (autoloads (vip-mode vip-setup) "vip" "emulation/vip.el" (17385 +;;;;;; 8491)) ;;; Generated autoloads from emulation/vip.el (autoload (quote vip-setup) "vip" "\ @@ -30073,7 +30319,7 @@ Turn on VIP emulation of VI. ;;;*** ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" -;;;;;; (17578 34775)) +;;;;;; (17726 28398)) ;;; Generated autoloads from emulation/viper.el (autoload (quote toggle-viper-mode) "viper" "\ @@ -30090,7 +30336,7 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Viper'. ;;;*** ;;;### (autoloads (warn lwarn display-warning) "warnings" "emacs-lisp/warnings.el" -;;;;;; (17498 30594)) +;;;;;; (17495 43954)) ;;; Generated autoloads from emacs-lisp/warnings.el (defvar warning-prefix-function nil "\ @@ -30179,7 +30425,7 @@ this is equivalent to `display-warning', using ;;;*** ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" -;;;;;; (17420 36080)) +;;;;;; (17613 21909)) ;;; Generated autoloads from wdired.el (autoload (quote wdired-change-to-wdired-mode) "wdired" "\ @@ -30195,7 +30441,7 @@ See `wdired-mode'. ;;;*** -;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17383 32178)) +;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17385 8495)) ;;; Generated autoloads from net/webjump.el (autoload (quote webjump) "webjump" "\ @@ -30212,7 +30458,7 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke ;;;*** ;;;### (autoloads (which-function-mode) "which-func" "progmodes/which-func.el" -;;;;;; (17397 61573)) +;;;;;; (17608 57530)) ;;; Generated autoloads from progmodes/which-func.el (put 'which-func-format 'risky-local-variable t) (put 'which-func-current 'risky-local-variable t) @@ -30225,7 +30471,7 @@ See the command `which-function-mode' for a description of this minor-mode. Setting this variable directly does not take effect; use either \\[customize] or the function `which-function-mode'.") -(custom-autoload (quote which-function-mode) "which-func") +(custom-autoload (quote which-function-mode) "which-func" nil) (autoload (quote which-function-mode) "which-func" "\ Toggle Which Function mode, globally. @@ -30244,7 +30490,7 @@ and off otherwise. ;;;;;; whitespace-buffer whitespace-toggle-ateol-check whitespace-toggle-spacetab-check ;;;;;; whitespace-toggle-indent-check whitespace-toggle-trailing-check ;;;;;; whitespace-toggle-leading-check) "whitespace" "whitespace.el" -;;;;;; (17578 34774)) +;;;;;; (17645 64048)) ;;; Generated autoloads from whitespace.el (autoload (quote whitespace-toggle-leading-check) "whitespace" "\ @@ -30295,6 +30541,8 @@ Check the region for whitespace errors. (autoload (quote whitespace-cleanup) "whitespace" "\ Cleanup the five different kinds of whitespace problems. +It normally applies to the whole buffer, but in Transient Mark mode +when the mark is active it applies to the region. See `whitespace-buffer' docstring for a summary of the problems. \(fn)" t nil) @@ -30310,9 +30558,10 @@ Whitespace cleanup on the region. Non-nil if Whitespace-Global mode is enabled. See the command `whitespace-global-mode' for a description of this minor-mode. Setting this variable directly does not take effect; -use either \\[customize] or the function `whitespace-global-mode'.") +either customize it (see the info node `Easy Customization') +or call the function `whitespace-global-mode'.") -(custom-autoload (quote whitespace-global-mode) "whitespace") +(custom-autoload (quote whitespace-global-mode) "whitespace" nil) (autoload (quote whitespace-global-mode) "whitespace" "\ Toggle using Whitespace mode in new buffers. @@ -30332,7 +30581,7 @@ This is meant to be added buffer-locally to `write-file-functions'. ;;;*** ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse -;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17383 32127)) +;;;;;; widget-browse-at) "wid-browse" "wid-browse.el" (17385 8488)) ;;; Generated autoloads from wid-browse.el (autoload (quote widget-browse-at) "wid-browse" "\ @@ -30359,8 +30608,8 @@ With arg, turn widget mode on if and only if arg is positive. ;;;*** ;;;### (autoloads (widget-setup widget-insert widget-delete widget-create -;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17397 -;;;;;; 61544)) +;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17709 +;;;;;; 24917)) ;;; Generated autoloads from wid-edit.el (autoload (quote widgetp) "wid-edit" "\ @@ -30404,8 +30653,8 @@ Setup current buffer so editing string widgets works. ;;;*** ;;;### (autoloads (windmove-default-keybindings windmove-down windmove-right -;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17383 -;;;;;; 32128)) +;;;;;; windmove-up windmove-left) "windmove" "windmove.el" (17385 +;;;;;; 8488)) ;;; Generated autoloads from windmove.el (autoload (quote windmove-left) "windmove" "\ @@ -30458,7 +30707,7 @@ Default MODIFIER is 'shift. ;;;*** ;;;### (autoloads (winner-mode winner-mode) "winner" "winner.el" -;;;;;; (17383 32128)) +;;;;;; (17385 8488)) ;;; Generated autoloads from winner.el (defvar winner-mode nil "\ @@ -30477,7 +30726,7 @@ With arg, turn Winner mode on if and only if arg is positive. ;;;*** ;;;### (autoloads (woman-find-file woman-dired-find-file woman) "woman" -;;;;;; "woman.el" (17466 42708)) +;;;;;; "woman.el" (17714 34820)) ;;; Generated autoloads from woman.el (autoload (quote woman) "woman" "\ @@ -30513,7 +30762,7 @@ decompress the file if appropriate. See the documentation for the ;;;*** ;;;### (autoloads (wordstar-mode) "ws-mode" "emulation/ws-mode.el" -;;;;;; (17383 32145)) +;;;;;; (17385 8492)) ;;; Generated autoloads from emulation/ws-mode.el (autoload (quote wordstar-mode) "ws-mode" "\ @@ -30626,7 +30875,7 @@ The key bindings are: ;;;*** ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" -;;;;;; (17383 32129)) +;;;;;; (17607 45512)) ;;; Generated autoloads from xml.el (autoload (quote xml-parse-file) "xml" "\ @@ -30651,8 +30900,8 @@ If PARSE-NS is non-nil, then QNAMES are expanded. ;;;*** -;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17383 -;;;;;; 32129)) +;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17385 +;;;;;; 8488)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -30663,6 +30912,8 @@ use either \\[customize] or the function `xterm-mouse-mode'.") (custom-autoload (quote xterm-mouse-mode) "xt-mouse") +(put (quote xterm-mouse-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote xterm-mouse-mode) "xt-mouse" "\ Toggle XTerm mouse mode. With prefix arg, turn XTerm mouse mode on iff arg is positive. @@ -30679,7 +30930,7 @@ down the SHIFT key while pressing the mouse button. ;;;*** ;;;### (autoloads (yenc-extract-filename yenc-decode-region) "yenc" -;;;;;; "gnus/yenc.el" (17383 32167)) +;;;;;; "gnus/yenc.el" (17385 8494)) ;;; Generated autoloads from gnus/yenc.el (autoload (quote yenc-decode-region) "yenc" "\ @@ -30695,7 +30946,7 @@ Extract file name from an yenc header. ;;;*** ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism -;;;;;; yow) "yow" "play/yow.el" (17383 32183)) +;;;;;; yow) "yow" "play/yow.el" (17385 8495)) ;;; Generated autoloads from play/yow.el (autoload (quote yow) "yow" "\ @@ -30721,7 +30972,7 @@ Zippy goes to the analyst. ;;;*** -;;;### (autoloads (zone) "zone" "play/zone.el" (17383 32183)) +;;;### (autoloads (zone) "zone" "play/zone.el" (17385 8495)) ;;; Generated autoloads from play/zone.el (autoload (quote zone) "zone" "\ @@ -30729,29 +30980,6 @@ Zone out, completely. \(fn)" t nil) -;;;*** - -;;;### (autoloads (zone-mode zone-mode-update-serial-hook) "zone-mode" -;;;;;; "net/zone-mode.el" (17383 32178)) -;;; Generated autoloads from net/zone-mode.el - -(autoload (quote zone-mode-update-serial-hook) "zone-mode" "\ -Update the serial number in a zone if the file was modified. - -\(fn)" t nil) - -(autoload (quote zone-mode) "zone-mode" "\ -A mode for editing DNS zone files. - -Zone-mode does two things: - - - automatically update the serial number for a zone - when saving the file - - - fontification - -\(fn)" t nil) - ;;;*** ;;;### (autoloads nil nil ("bindings.el" "buff-menu.el" "calc/calc-aent.el" @@ -30894,11 +31122,11 @@ Zone-mode does two things: ;;;;;; "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-https.el" "url/url-imap.el" "url/url-methods.el" -;;;;;; "url/url-nfs.el" "url/url-proxy.el" "url/url-vars.el" "url/vc-dav.el" -;;;;;; "vc-hooks.el" "vcursor.el" "version.el" "vms-patch.el" "vmsproc.el" -;;;;;; "vt-control.el" "vt100-led.el" "w32-fns.el" "w32-vars.el" -;;;;;; "widget.el" "window.el" "x-dnd.el") (17590 36747 258974)) +;;;;;; "url/url-imap.el" "url/url-methods.el" "url/url-nfs.el" "url/url-proxy.el" +;;;;;; "url/url-vars.el" "url/vc-dav.el" "vc-hooks.el" "vcursor.el" +;;;;;; "version.el" "vms-patch.el" "vmsproc.el" "vt-control.el" +;;;;;; "vt100-led.el" "w32-fns.el" "w32-vars.el" "widget.el" "window.el" +;;;;;; "x-dnd.el") (17730 9235 499010)) ;;;*** From 00e4a45fc826f6bb64dfb4c1fe006fc6d2701268 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 27 Oct 2006 15:47:36 +0000 Subject: [PATCH 76/78] Bump version number to 22.0.90. --- .../Contents/Resources/English.lproj/InfoPlist.strings | 4 ++-- mac/src/Emacs.r | 8 ++++---- nt/emacs.rc | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings b/mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings index db6b39880e2..483095829c5 100644 --- a/mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings +++ b/mac/Emacs.app/Contents/Resources/English.lproj/InfoPlist.strings @@ -1,5 +1,5 @@ /* Localized versions of Info.plist keys */ CFBundleName = "Emacs"; -CFBundleShortVersionString = "22.0.50"; -CFBundleGetInfoString = "22.0.50, Copyright (C) 2006 Free Software Foundation, Inc."; +CFBundleShortVersionString = "22.0.90"; +CFBundleGetInfoString = "22.0.90, Copyright (C) 2006 Free Software Foundation, Inc."; diff --git a/mac/src/Emacs.r b/mac/src/Emacs.r index 081580d101c..30f572ee207 100644 --- a/mac/src/Emacs.r +++ b/mac/src/Emacs.r @@ -220,11 +220,11 @@ resource 'FREF' (129) { resource 'vers' (1) { 0x22, /* Major revision in BCD */ 0x0, /* Minor revision in BCD */ - development, /* development, alpha, beta, or final (release) */ - 50, /* Non-final release # */ + alpha, /* development, alpha, beta, or final (release) */ + 90, /* Non-final release # */ 0, /* Region code */ - "22.0.50", /* Short version number */ - "22.0.50, Copyright \0xa9 2006 " + "22.0.90", /* Short version number */ + "22.0.90, Copyright \0xa9 2006 " "Free Software Foundation, Inc." /* Long version number */ }; diff --git a/nt/emacs.rc b/nt/emacs.rc index 486b1eecf23..27e9ed201ed 100644 --- a/nt/emacs.rc +++ b/nt/emacs.rc @@ -6,8 +6,8 @@ Emacs ICON icons\emacs.ico #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 22,0,50,0 - PRODUCTVERSION 22,0,50,0 + FILEVERSION 22,0,90,0 + PRODUCTVERSION 22,0,90,0 FILEFLAGSMASK 0x3FL #ifdef EMACSDEBUG FILEFLAGS 0x1L @@ -24,12 +24,12 @@ BEGIN BEGIN VALUE "CompanyName", "Free Software Foundation\0" VALUE "FileDescription", "GNU Emacs for Windows NT/95/98/2000/ME/XP\0" - VALUE "FileVersion", "22, 0, 50, 0\0" + VALUE "FileVersion", "22, 0, 90, 0\0" VALUE "InternalName", "Emacs\0" VALUE "LegalCopyright", "Copyright (C) 2002, 2003, 2004, 2005, 2006\0" VALUE "OriginalFilename", "emacs.exe" VALUE "ProductName", "Emacs: The extensible self-documenting text editor\0" - VALUE "ProductVersion", "22, 0, 50, 0\0" + VALUE "ProductVersion", "22, 0, 90, 0\0" VALUE "OLESelfRegister", "\0" END END From 234b59d7bb1bd34f7c0e533be3ab3d47c1f7095a Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 27 Oct 2006 22:34:22 +0000 Subject: [PATCH 77/78] (best_matching_font): Fix logic to decide whether to use overstriking to simulate bold-face (it was reversed). --- src/xfaces.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xfaces.c b/src/xfaces.c index 3dc5ddc3401..c408a7d3685 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -6688,10 +6688,10 @@ best_matching_font (f, attrs, fonts, nfonts, width_ratio, needs_overstrike) { /* We want a bold font, but didn't get one; try to use overstriking instead to simulate bold-face. However, - don't overstrike an already-bold fontn unless the + don't overstrike an already-bold font unless the desired weight grossly exceeds the available weight. */ if (got_weight > XLFD_WEIGHT_MEDIUM) - *needs_overstrike = (got_weight - want_weight) > 2; + *needs_overstrike = (want_weight - got_weight) > 2; else *needs_overstrike = 1; } From 4975e69596a64247e8995d1ff9084b98a9a5ed0d Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 27 Oct 2006 22:37:48 +0000 Subject: [PATCH 78/78] (x_draw_glyph_string_foreground): Set background mode to TRANSPARENT before using overstrike to simulate bold faces. --- src/ChangeLog | 17 +++++++++++++---- src/w32term.c | 3 +++ 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index d4f67a927de..4118fc6f2d8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,6 +1,15 @@ +2006-10-27 Ben North (tiny change) + + * w32term.c (x_draw_glyph_string_foreground): Set background mode + to TRANSPARENT before using overstrike to simulate bold faces. + + * xfaces.c (best_matching_font): Fix logic to decide whether to + use overstriking to simulate bold-face (it was reversed). + 2006-10-23 Kim F. Storm - * xdisp.c (remember_mouse_glyph): Do nothing if glyphs are not initialized. + * xdisp.c (remember_mouse_glyph): Do nothing if glyphs are not + initialized. * keyboard.c (read_char): Make an element (t . EVENT) in unread-command-events add EVENT to the current command's key sequence. @@ -113,8 +122,8 @@ (x_draw_glyph_string_foreground): Use overstrike when needed. (x_draw_composite_glyph_string_foreground): Likewise. Use mac_draw_image_string_16 instead of mac_draw_string_16. - (mac_load_query_font): Rename from XLoadQueryFont. Take argument F - instead of DPY. All uses changed. Don't save/restore font. + (mac_load_query_font): Rename from XLoadQueryFont. Take argument + F instead of DPY. All uses changed. Don't save/restore font. 2006-10-07 Ralf Angeli @@ -157,7 +166,7 @@ 2006-09-30 Eli Zaretskii - * config.in Regenerated. + * config.in: Regenerated. 2006-09-29 Juri Linkov diff --git a/src/w32term.c b/src/w32term.c index c00fdb8923c..e22a9dbe1ab 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -1591,7 +1591,10 @@ x_draw_glyph_string_foreground (s) { /* For overstriking (to simulate bold-face), draw the characters again shifted to the right by one pixel. */ + int old_BkMode = SetBkMode (s->hdc, TRANSPARENT); w32_text_out (s, x + 1, s->ybase - boff, s->char2b, s->nchars); + if (old_BkMode && old_BkMode != TRANSPARENT) + SetBkMode (s->hdc, old_BkMode); } } if (s->font && s->font->hfont)