From ad02d7ea94aaa80bf1c69cda460c48752a05cde5 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Fri, 3 Feb 2006 13:14:23 +0000 Subject: [PATCH 01/42] *** empty log message *** --- src/ChangeLog | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 056bb851f4a..66061c74810 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,14 @@ +2006-02-03 Kim F. Storm + + * xdisp.c: Cache last merged escape glyph face. + (last_escape_glyph_frame, last_escape_glyph_face_id) + (last_escape_glyph_merged_face_id): New variables. + (get_next_display_element): Use/update them. + (redisplay_internal): Reset them before redisplay. + + * xdisp.c (set_iterator_to_next): Optimize 2004-12-13 fix. + Only recheck faces after displaying ellipsis. + 2006-02-02 Kenichi Handa * coding.c (decode_composition_emacs_mule): Fix handling of From a7684151a85104159274abc39ff9834ac9bc46e3 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Fri, 3 Feb 2006 13:14:43 +0000 Subject: [PATCH 02/42] Cache last merged escape glyph face. (last_escape_glyph_frame, last_escape_glyph_face_id) (last_escape_glyph_merged_face_id): New variables. (get_next_display_element): Use/update them. (redisplay_internal): Reset them before redisplay. (set_iterator_to_next): Optimize 2004-12-13 fix. Only recheck faces after displaying ellipsis. --- src/xdisp.c | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index 0a038ea7e63..b25bebe3857 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -5329,6 +5329,10 @@ static int (* get_next_element[NUM_IT_METHODS]) P_ ((struct it *it)) = display element from the current position of IT. Value is zero if end of buffer (or C string) is reached. */ +static struct frame *last_escape_glyph_frame = NULL; +static unsigned last_escape_glyph_face_id = (1 << FACE_ID_BITS); +static int last_escape_glyph_merged_face_id = 0; + int get_next_display_element (it) struct it *it; @@ -5445,11 +5449,19 @@ get_next_display_element (it) face_id = merge_faces (it->f, Qt, lface_id, it->face_id); } + else if (it->f == last_escape_glyph_frame + && it->face_id == last_escape_glyph_face_id) + { + face_id = last_escape_glyph_merged_face_id; + } else { /* Merge the escape-glyph face into the current face. */ face_id = merge_faces (it->f, Qescape_glyph, 0, it->face_id); + last_escape_glyph_frame = it->f; + last_escape_glyph_face_id = it->face_id; + last_escape_glyph_merged_face_id = face_id; } XSETINT (it->ctl_chars[0], g); @@ -5496,11 +5508,19 @@ get_next_display_element (it) face_id = merge_faces (it->f, Qt, lface_id, it->face_id); } + else if (it->f == last_escape_glyph_frame + && it->face_id == last_escape_glyph_face_id) + { + face_id = last_escape_glyph_merged_face_id; + } else { /* Merge the escape-glyph face into the current face. */ face_id = merge_faces (it->f, Qescape_glyph, 0, it->face_id); + last_escape_glyph_frame = it->f; + last_escape_glyph_face_id = it->face_id; + last_escape_glyph_merged_face_id = face_id; } /* Handle soft hyphens in the mode where they only get @@ -5694,6 +5714,8 @@ set_iterator_to_next (it, reseat_p) if (it->dpvec + it->current.dpvec_index == it->dpend) { + int recheck_faces = it->ellipsis_p; + if (it->s) it->method = GET_FROM_C_STRING; else if (STRINGP (it->string)) @@ -5716,8 +5738,9 @@ set_iterator_to_next (it, reseat_p) set_iterator_to_next (it, reseat_p); } - /* Recheck faces after display vector */ - it->stop_charpos = IT_CHARPOS (*it); + /* Maybe recheck faces after display vector */ + if (recheck_faces) + it->stop_charpos = IT_CHARPOS (*it); } break; @@ -10545,6 +10568,8 @@ redisplay_internal (preserve_echo_area) retry: pause = 0; reconsider_clip_changes (w, current_buffer); + last_escape_glyph_frame = NULL; + last_escape_glyph_face_id = (1 << FACE_ID_BITS); /* If new fonts have been loaded that make a glyph matrix adjustment necessary, do it. */ From ae2c9c21a390f67539d5229aa5ba706f59de3c63 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 3 Feb 2006 15:57:56 +0000 Subject: [PATCH 03/42] Docstring fixes. --- lisp/newcomment.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 9995b4b9156..5fa9ac09b0b 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -1,7 +1,7 @@ ;;; newcomment.el --- (un)comment regions of buffers ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: code extracted from Emacs-20's simple.el ;; Maintainer: Stefan Monnier @@ -96,7 +96,7 @@ Major modes should set this variable.") ;;;###autoload (defcustom comment-column 32 - "*Column to indent right-margin comments to. + "Column to indent right-margin comments to. Each mode establishes a different default value for this variable; you 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 @@ -200,7 +200,7 @@ INDENT specifies that the `comment-start' markers should not be put at the ;;;###autoload (defcustom comment-style 'plain - "*Style to be used for `comment-region'. + "Style to be used for `comment-region'. See `comment-styles' for a list of available styles." :type (if (boundp 'comment-styles) `(choice ,@(mapcar (lambda (s) `(const ,(car s))) comment-styles)) @@ -220,7 +220,7 @@ makes the comment easier to read. Default is 1. nil means 0." ;;;###autoload (defcustom comment-multi-line nil - "*Non-nil means `comment-indent-new-line' continues comments. + "Non-nil means `comment-indent-new-line' continues comments. That is, it inserts no new terminator or starter. This affects `auto-fill-mode', which is the main reason to customize this variable. @@ -1081,7 +1081,8 @@ If the region is active and `transient-mark-mode' is on, call case it calls `uncomment-region'). Else, if the current line is empty, insert a comment and indent it. Else if a prefix ARG is specified, call `comment-kill'. -Else, call `comment-indent'." +Else, call `comment-indent'. +You can configure `comment-style' to change the way regions are commented." (interactive "*P") (comment-normalize-vars) (if (and mark-active transient-mark-mode) From e6e91eda9ebe76306673431f5bd7ee3f07e355a8 Mon Sep 17 00:00:00 2001 From: Peter Galbraith Date: Fri, 3 Feb 2006 17:55:37 +0000 Subject: [PATCH 04/42] (mh-url-unreserved-chars): Fix typo from `mh-url-unresrved-chars'. --- lisp/mh-e/ChangeLog | 5 +++++ lisp/mh-e/mh-compat.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 656630c61ac..1ce5ff87b6d 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,8 @@ +2006-02-03 Peter S Galbraith + + * mh-compat.el (mh-url-unreserved-chars): Fix typo from + `mh-url-unresrved-chars'. + 2006-02-02 Bill Wohler * mh-e.el (Version, mh-version): Add +cvs to version. diff --git a/lisp/mh-e/mh-compat.el b/lisp/mh-e/mh-compat.el index d726a85a38f..1d7f1c90e79 100644 --- a/lisp/mh-e/mh-compat.el +++ b/lisp/mh-e/mh-compat.el @@ -153,7 +153,7 @@ The arguments FIXEDCASE, LITERAL, SUBEXP, and START are ignored." ;; Copy of constant from url-util.el in Emacs 22; needed by Emacs 21. (if (not (boundp 'url-unreserved-chars)) - (defconst mh-url-unresrved-chars + (defconst mh-url-unreserved-chars '( ?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z ?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z From d2f45f32aac429538deb7a4d57fdc59981513dc5 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 3 Feb 2006 19:31:55 +0000 Subject: [PATCH 05/42] No need to mention Makefile.unix, it is no longer created. --- lisp/.arch-inventory | 3 --- 1 file changed, 3 deletions(-) diff --git a/lisp/.arch-inventory b/lisp/.arch-inventory index 9bd88350a95..5341c2d8fec 100644 --- a/lisp/.arch-inventory +++ b/lisp/.arch-inventory @@ -1,7 +1,4 @@ # Auto-generated lisp files, which ignore precious ^(loaddefs|finder-inf|cus-load)\.el$ -# Something generated during a windows build?!? -precious ^(Makefile\.unix)$ - # arch-tag: fc62dc9f-3a91-455b-b8e7-d49df66beee0 From f169fdd35f6b8d074a2d5b3c650cc62e159ac027 Mon Sep 17 00:00:00 2001 From: "Mark D. Baushke" Date: Fri, 3 Feb 2006 19:32:06 +0000 Subject: [PATCH 06/42] * mh-tool-bar.el: Add conditional require of 'tool-bar or 'toolbar for gnu-emacs or xemacs to avoid void-variable tool-bar-map lisp errors if describe-bindings is called before tool-bar-mode is used. --- lisp/mh-e/ChangeLog | 6 ++++++ lisp/mh-e/mh-tool-bar.el | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 1ce5ff87b6d..85e4ddbfe6b 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,9 @@ +2006-02-03 Mark D. Baushke + + * mh-tool-bar.el: Add conditional require of 'tool-bar or 'toolbar + for gnu-emacs or xemacs to avoid void-variable tool-bar-map lisp + errors if describe-bindings is called before tool-bar-mode is used. + 2006-02-03 Peter S Galbraith * mh-compat.el (mh-url-unreserved-chars): Fix typo from diff --git a/lisp/mh-e/mh-tool-bar.el b/lisp/mh-e/mh-tool-bar.el index ebf07a77672..20b239189fa 100644 --- a/lisp/mh-e/mh-tool-bar.el +++ b/lisp/mh-e/mh-tool-bar.el @@ -31,6 +31,10 @@ ;;; Code: (require 'mh-e) +(mh-do-in-gnu-emacs + (require 'tool-bar)) +(mh-do-in-xemacs + (require 'toolbar)) ;;; Tool Bar Commands From e1144ff64efdbb4ffaeae341f1d9482d0f7cea49 Mon Sep 17 00:00:00 2001 From: Peter Galbraith Date: Fri, 3 Feb 2006 20:27:35 +0000 Subject: [PATCH 07/42] (mh-image-load-path): New variable to optionally hold the directory where MH-E images are stored. If nil, then the function `mh-image-load-path' will find it. This variable will be used for Debian packaging. (mh-image-load-path function): Use variable `mh-image-load-path' if non-nil and exists. --- lisp/mh-e/ChangeLog | 9 +++++++++ lisp/mh-e/mh-utils.el | 23 +++++++++++++++-------- 2 files changed, 24 insertions(+), 8 deletions(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 85e4ddbfe6b..40517e61922 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,12 @@ +2006-02-03 Peter Galbraith + + * mh-utils.el (mh-image-load-path): New variable to optionally + hold the directory where MH-E images are stored. If nil, then + the function `mh-image-load-path' will find it. This variable + will be used for Debian packaging. + (mh-image-load-path function): Use variable `mh-image-load-path' + if non-nil and exists. + 2006-02-03 Mark D. Baushke * mh-tool-bar.el: Add conditional require of 'tool-bar or 'toolbar diff --git a/lisp/mh-e/mh-utils.el b/lisp/mh-e/mh-utils.el index e948860058f..54e293cc950 100644 --- a/lisp/mh-e/mh-utils.el +++ b/lisp/mh-e/mh-utils.el @@ -81,6 +81,11 @@ used in lieu of `search' in the CL package." "Delete the next LINES lines." (delete-region (point) (progn (forward-line lines) (point)))) +(defvar mh-image-load-path nil + "Directory where images for MH-E are found. +If nil, then the function mh-image-load-path will search in +../../etc/images relative to the files in \"lisp/mh-e\".") + (defvar mh-image-load-path-called-flag nil) ;;;###mh-autoload @@ -92,14 +97,16 @@ files in \"lisp/mh-e\". If `image-load-path' exists (since Emacs there. Otherwise, the images directory is added to the `load-path' if it isn't already there." (unless mh-image-load-path-called-flag - (let (mh-library-name mh-image-load-path) - ;; First, find mh-e in the load-path. - (setq mh-library-name (locate-library "mh-e")) - (if (not mh-library-name) - (error "Can not find MH-E in load-path")) - (setq mh-image-load-path - (expand-file-name (concat (file-name-directory mh-library-name) - "../../etc/images"))) + (let (mh-library-name) + (when (or (not mh-image-load-path) + (not (file-exists-p mh-image-load-path))) + ;; First, find mh-e in the load-path. + (setq mh-library-name (locate-library "mh-e")) + (if (not mh-library-name) + (error "Can not find MH-E in load-path")) + (setq mh-image-load-path + (expand-file-name (concat (file-name-directory mh-library-name) + "../../etc/images")))) (if (not (file-exists-p mh-image-load-path)) (error "Can not find image directory %s" mh-image-load-path)) (if (boundp 'image-load-path) From cb8ec72ad3c43e903ddf4b74ba988276529928de Mon Sep 17 00:00:00 2001 From: Werner LEMBERG Date: Fri, 3 Feb 2006 21:13:59 +0000 Subject: [PATCH 08/42] * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be greedy to find the closing bracket in \*[...] and similar expressions. This is a first rough fix -- many additional refinements are necessary to make this nroff mode really usable with groff. --- lisp/ChangeLog | 8 ++++++++ lisp/textmodes/nroff-mode.el | 18 +++++++++--------- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index da4ba5df39b..df85f19b2a2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2006-02-03 Werner Lemberg + + * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be + greedy to find the closing bracket in \*[...] and similar + expressions. This is a first rough fix -- many additional + refinements are necessary to make nroff mode really usable with + groff. + 2006-02-03 Jens Petersen (tiny change) * international/mule-cmds.el (set-locale-environment): Add diff --git a/lisp/textmodes/nroff-mode.el b/lisp/textmodes/nroff-mode.el index 7fd2db1deb6..ababc041099 100644 --- a/lisp/textmodes/nroff-mode.el +++ b/lisp/textmodes/nroff-mode.el @@ -1,7 +1,7 @@ ;;; nroff-mode.el --- GNU Emacs major mode for editing nroff source ;; Copyright (C) 1985, 1986, 1994, 1995, 1997, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: wp @@ -86,14 +86,14 @@ ;; variants). This won't currently do groff's \A'foo' and ;; the like properly. One might expect it to highlight an escape's ;; arguments in common cases, like \f. - (concat "\\\\" ; backslash - "\\(" ; followed by various possibilities - (mapconcat 'identity - '("[f*n]*\\[.+]" ; some groff extensions - "(.." ; two chars after ( - "[^(\"]" ; single char escape - ) "\\|") - "\\)") + (concat "\\\\" ; backslash + "\\(" ; followed by various possibilities + (mapconcat 'identity + '("[f*n]*\\[.+?]" ; some groff extensions + "(.." ; two chars after ( + "[^(\"]" ; single char escape + ) "\\|") + "\\)") ) "Font-lock highlighting control in `nroff-mode'." :group 'nroff From 36685bffc76ff8a9469a4bbfb3720b4dbe4fe875 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Fri, 3 Feb 2006 22:17:59 +0000 Subject: [PATCH 09/42] (mh-folder-msg-number, mh-folder-refiled, mh-folder-to) (mh-show-cc, mh-show-date, mh-show-header): Replace (min-colors 88) with (min-colors 64) in face specifications so that MH-E still looks good on systems with fewer colors (such as Eric Ding's). --- lisp/mh-e/ChangeLog | 7 +++++++ lisp/mh-e/mh-e.el | 24 ++++++++++++------------ 2 files changed, 19 insertions(+), 12 deletions(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 40517e61922..9cb939b7c71 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,10 @@ +2006-02-03 Bill Wohler + + * mh-e.el (mh-folder-msg-number, mh-folder-refiled, mh-folder-to) + (mh-show-cc, mh-show-date, mh-show-header): Replace (min-colors + 88) with (min-colors 64) in face specifications so that MH-E still + looks good on systems with fewer colors (such as Eric Ding's). + 2006-02-03 Peter Galbraith * mh-utils.el (mh-image-load-path): New variable to optionally diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 5dd99466313..bf503c33497 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -3037,9 +3037,9 @@ colors." (defface mh-folder-msg-number (mh-defface-compat - '((((class color) (min-colors 88) (background light)) + '((((class color) (min-colors 64) (background light)) (:foreground "snow4")) - (((class color) (min-colors 88) (background dark)) + (((class color) (min-colors 64) (background dark)) (:foreground "snow3")) (((class color)) (:foreground "cyan")))) @@ -3050,9 +3050,9 @@ colors." (defface mh-folder-refiled (mh-defface-compat - '((((class color) (min-colors 88) (background light)) + '((((class color) (min-colors 64) (background light)) (:foreground "DarkGoldenrod")) - (((class color) (min-colors 88) (background dark)) + (((class color) (min-colors 64) (background dark)) (:foreground "LightGoldenrod")) (((class color)) (:foreground "yellow" :weight light)) @@ -3106,9 +3106,9 @@ format `mh-scan-format-nmh' and the regular expression (defface mh-folder-to (mh-defface-compat - '((((class color) (min-colors 88) (background light)) + '((((class color) (min-colors 64) (background light)) (:foreground "RosyBrown")) - (((class color) (min-colors 88) (background dark)) + (((class color) (min-colors 64) (background dark)) (:foreground "LightSalmon")) (((class color)) (:foreground "green")) @@ -3146,9 +3146,9 @@ format `mh-scan-format-nmh' and the regular expression (defface mh-show-cc (mh-defface-compat - '((((class color) (min-colors 88) (background light)) + '((((class color) (min-colors 64) (background light)) (:foreground "DarkGoldenrod")) - (((class color) (min-colors 88) (background dark)) + (((class color) (min-colors 64) (background dark)) (:foreground "LightGoldenrod")) (((class color)) (:foreground "yellow" :weight light)) @@ -3164,9 +3164,9 @@ format `mh-scan-format-nmh' and the regular expression (defface mh-show-date (mh-defface-compat - '((((class color) (min-colors 88) (background light)) + '((((class color) (min-colors 64) (background light)) (:foreground "ForestGreen")) - (((class color) (min-colors 88) (background dark)) + (((class color) (min-colors 64) (background dark)) (:foreground "PaleGreen")) (((class color)) (:foreground "green")) @@ -3193,9 +3193,9 @@ format `mh-scan-format-nmh' and the regular expression (defface mh-show-header (mh-defface-compat - '((((class color) (min-colors 88) (background light)) + '((((class color) (min-colors 64) (background light)) (:foreground "RosyBrown")) - (((class color) (min-colors 88) (background dark)) + (((class color) (min-colors 64) (background dark)) (:foreground "LightSalmon")) (((class color)) (:foreground "green")) From 664ca6b28af4ca6db5ee0329f558492bdb9a8fb9 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Fri, 3 Feb 2006 23:02:51 +0000 Subject: [PATCH 10/42] (mh-image-load-path, mh-image-load-path-called-flag) (mh-image-load-path): Checkdoc fix. Docstring edits. Reduce scope of local variable mh-library-name. --- lisp/mh-e/ChangeLog | 4 +++ lisp/mh-e/mh-utils.el | 58 ++++++++++++++++++++++++++----------------- 2 files changed, 39 insertions(+), 23 deletions(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 9cb939b7c71..35998a24eac 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,5 +1,9 @@ 2006-02-03 Bill Wohler + * mh-utils.el (mh-image-load-path, mh-image-load-path-called-flag) + (mh-image-load-path): Checkdoc fix. Docstring edits. Reduce scope + of local variable mh-library-name. + * mh-e.el (mh-folder-msg-number, mh-folder-refiled, mh-folder-to) (mh-show-cc, mh-show-date, mh-show-header): Replace (min-colors 88) with (min-colors 64) in face specifications so that MH-E still diff --git a/lisp/mh-e/mh-utils.el b/lisp/mh-e/mh-utils.el index 54e293cc950..42f11376262 100644 --- a/lisp/mh-e/mh-utils.el +++ b/lisp/mh-e/mh-utils.el @@ -83,35 +83,47 @@ used in lieu of `search' in the CL package." (defvar mh-image-load-path nil "Directory where images for MH-E are found. -If nil, then the function mh-image-load-path will search in -../../etc/images relative to the files in \"lisp/mh-e\".") +If nil, then the function `mh-image-load-path' will search for +the images in \"../../etc/images\" relative to the files in +\"lisp/mh-e\".") -(defvar mh-image-load-path-called-flag nil) +(defvar mh-image-load-path-called-flag nil + "Non-nil means that the function `mh-image-load-path' has been called. +This variable is used by that function to avoid doing the work repeatedly.") ;;;###mh-autoload (defun mh-image-load-path () "Ensure that the MH-E images are accessible by `find-image'. -Images for MH-E are found in ../../etc/images relative to the -files in \"lisp/mh-e\". If `image-load-path' exists (since Emacs -22), then the images directory is added to it if isn't already -there. Otherwise, the images directory is added to the -`load-path' if it isn't already there." + +Images for MH-E are found in \"../../etc/images\" relative to the +files in \"lisp/mh-e\". This function saves the actual location +found in the variable `mh-image-load-path'. If the images on your +system are actually located elsewhere, then set the variable +`mh-image-load-path' before starting MH-E. + +If `image-load-path' exists (since Emacs 22), then the contents +of the variable `mh-image-load-path' is added to it if isn't +already there. Otherwise, the contents of the variable +`mh-image-load-path' is added to the `load-path' if it isn't +already there. + +See also variable `mh-image-load-path-called-flag'." (unless mh-image-load-path-called-flag - (let (mh-library-name) - (when (or (not mh-image-load-path) - (not (file-exists-p mh-image-load-path))) - ;; First, find mh-e in the load-path. - (setq mh-library-name (locate-library "mh-e")) - (if (not mh-library-name) - (error "Can not find MH-E in load-path")) - (setq mh-image-load-path - (expand-file-name (concat (file-name-directory mh-library-name) - "../../etc/images")))) - (if (not (file-exists-p mh-image-load-path)) - (error "Can not find image directory %s" mh-image-load-path)) - (if (boundp 'image-load-path) - (add-to-list 'image-load-path mh-image-load-path) - (add-to-list 'load-path mh-image-load-path))) + (if (or (not mh-image-load-path) + (not (file-exists-p mh-image-load-path))) + (let (mh-library-name) + ;; First, find mh-e in the load-path. + (setq mh-library-name (locate-library "mh-e")) + (if (not mh-library-name) + (error "Can not find MH-E in load-path")) + (setq mh-image-load-path + (expand-file-name (concat (file-name-directory mh-library-name) + "../../etc/images"))))) + (if (not (file-exists-p mh-image-load-path)) + (error "Can not find image directory %s" mh-image-load-path)) + (if (boundp 'image-load-path) + (add-to-list 'image-load-path mh-image-load-path) + (add-to-list 'load-path mh-image-load-path)) (setq mh-image-load-path-called-flag t))) ;;;###mh-autoload From 5f627e356bc208350acf067a601dd61a695f6585 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Fri, 3 Feb 2006 23:08:17 +0000 Subject: [PATCH 11/42] (Version, mh-version): Update for release 7.91. --- lisp/mh-e/ChangeLog | 6 ++++++ lisp/mh-e/mh-e.el | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 35998a24eac..25bb94e9f26 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,9 @@ +2006-02-03 Bill Wohler + + Release MH-E version 7.91. + + * mh-e.el (Version, mh-version): Update for release 7.91. + 2006-02-03 Bill Wohler * mh-utils.el (mh-image-load-path, mh-image-load-path-called-flag) diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index bf503c33497..945ce635cab 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -6,7 +6,7 @@ ;; Author: Bill Wohler ;; Maintainer: Bill Wohler -;; Version: 7.90+cvs +;; Version: 7.91 ;; Keywords: mail ;; This file is part of GNU Emacs. @@ -121,7 +121,7 @@ ;; Try to keep variables local to a single file. Provide accessors if ;; variables are shared. Use this section as a last resort. -(defconst mh-version "7.90+cvs" "Version number of MH-E.") +(defconst mh-version "7.91" "Version number of MH-E.") ;; Variants From 5384dc93e532cfb33f6ba31d212b357ad6f0d082 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Fri, 3 Feb 2006 23:17:59 +0000 Subject: [PATCH 12/42] Update for MH-E release 7.91. --- etc/ChangeLog | 8 +++++++- etc/MH-E-NEWS | 5 +++++ etc/NEWS | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/etc/ChangeLog b/etc/ChangeLog index ce3faae183a..5411a0cf626 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,8 +1,14 @@ +2006-02-03 Bill Wohler + + Release MH-E version 7.91. + + * NEWS, MH-E-NEWS: Update for MH-E release 7.91. + 2006-02-02 Bill Wohler Release MH-E version 7.90. - * NEWS, MH-E-NEWS: Update for release 7.90. + * NEWS, MH-E-NEWS: Update for MH-E release 7.90. 2006-01-29 Michael Olson diff --git a/etc/MH-E-NEWS b/etc/MH-E-NEWS index 93d902bb6ee..8dc89e3cbcf 100644 --- a/etc/MH-E-NEWS +++ b/etc/MH-E-NEWS @@ -6,6 +6,11 @@ Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. +* Changes in MH-E 7.91 + +Version 7.91 is the second 8.0 beta release and fixes several bugs +that were uncovered in wider testing. + * Changes in MH-E 7.90 Version 7.90 is the first 8.0 beta release and is a release that has diff --git a/etc/NEWS b/etc/NEWS index 8872cff3534..f8a644a59d9 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -2978,7 +2978,7 @@ See the file GNUS-NEWS or the node "Oort Gnus" in the Gnus manual for details. --- ** MH-E changes. -Upgraded to MH-E version 7.90. There have been major changes since +Upgraded to MH-E version 7.91. There have been major changes since version 5.0.2; see MH-E-NEWS for details. ** Calendar changes: From d4ff848f77312b15140cf3d3086a24878a5082c6 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Fri, 3 Feb 2006 23:28:28 +0000 Subject: [PATCH 13/42] (Version, mh-version): Add +cvs to version. --- lisp/mh-e/ChangeLog | 4 ++++ lisp/mh-e/mh-e.el | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 25bb94e9f26..8d8b64c75fb 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,7 @@ +2006-02-03 Bill Wohler + + * mh-e.el (Version, mh-version): Add +cvs to version. + 2006-02-03 Bill Wohler Release MH-E version 7.91. diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 945ce635cab..9be827a8071 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -6,7 +6,7 @@ ;; Author: Bill Wohler ;; Maintainer: Bill Wohler -;; Version: 7.91 +;; Version: 7.91+cvs ;; Keywords: mail ;; This file is part of GNU Emacs. @@ -121,7 +121,7 @@ ;; Try to keep variables local to a single file. Provide accessors if ;; variables are shared. Use this section as a last resort. -(defconst mh-version "7.91" "Version number of MH-E.") +(defconst mh-version "7.91+cvs" "Version number of MH-E.") ;; Variants From 6203370b5e51fe55a4132fe8ccc868c35ad8c67f Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sat, 4 Feb 2006 00:58:23 +0000 Subject: [PATCH 14/42] Revision: emacs@sv.gnu.org/emacs--devo--0--patch-42 Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 14-17) - Update from CVS - Merge from emacs--devo--0 --- lisp/gnus/ChangeLog | 21 +++++++++++++++++++++ lisp/gnus/gnus-util.el | 3 ++- lisp/gnus/mml.el | 5 +++-- lisp/gnus/nnweb.el | 3 ++- lisp/gnus/rfc2231.el | 31 +++++++++++++++++++++---------- 5 files changed, 49 insertions(+), 14 deletions(-) diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 87a3f1918d6..1edd84bea48 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,24 @@ +2006-02-03 Reiner Steib + + * gnus-util.el (gnus-error): Describe `args'. + +2006-02-03 Andreas Seltenreich + + * nnweb.el (nnweb-request-group): Avoid growing overview files. + +2006-02-03 Katsumi Yamaoka + + * rfc2231.el (rfc2231-parse-string): Add missing semicolons to + segmented lines of parameter value to cope with Thunderbird 1.5 + bug (cf. https://bugzilla.mozilla.org/show_bug.cgi?id=323318). + Suggested by ARISAWA Akihiro . + (rfc2231-encode-string): Don't make lines exceeding 76 column. + +2006-02-01 Max Froumentin (tiny change) + + * mml.el (mml-generate-mime-1): Correct the order of inline signed + parts. + 2006-01-31 Andreas Seltenreich * nnweb.el (nnweb-group-alist): Use defvar instead of defvoo, diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el index f7fb279f20f..c71b9630db2 100644 --- a/lisp/gnus/gnus-util.el +++ b/lisp/gnus/gnus-util.el @@ -497,7 +497,8 @@ inside loops." (apply 'format args))) (defun gnus-error (level &rest args) - "Beep an error if LEVEL is equal to or less than `gnus-verbose'." + "Beep an error if LEVEL is equal to or less than `gnus-verbose'. +ARGS are passed to `message'." (when (<= (floor level) gnus-verbose) (apply 'message args) (ding) diff --git a/lisp/gnus/mml.el b/lisp/gnus/mml.el index 90f7c5f09dd..f8c34b370d6 100644 --- a/lisp/gnus/mml.el +++ b/lisp/gnus/mml.el @@ -1,7 +1,7 @@ ;;; mml.el --- A package for parsing and validating MML documents ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. @@ -578,7 +578,8 @@ If MML is non-nil, return the buffer up till the correspondent mml tag." ;; Skip `multipart' and attributes. (when (and (consp part) (consp (cdr part))) (insert "\n--" mml-boundary "\n") - (mml-generate-mime-1 part)))) + (mml-generate-mime-1 part) + (goto-char (point-max))))) (insert "\n--" mml-boundary "--\n"))))) (t (error "Invalid element: %S" cont))) diff --git a/lisp/gnus/nnweb.el b/lisp/gnus/nnweb.el index 4723a694182..bf49aba7f08 100644 --- a/lisp/gnus/nnweb.el +++ b/lisp/gnus/nnweb.el @@ -133,7 +133,8 @@ Valid types include `google', `dejanews', and `gmane'.") (deffoo nnweb-request-group (group &optional server dont-check) (nnweb-possibly-change-server group server) (unless (or nnweb-ephemeral-p - dont-check) + dont-check + nnweb-articles) (nnweb-read-overview group)) (cond ((not nnweb-articles) diff --git a/lisp/gnus/rfc2231.el b/lisp/gnus/rfc2231.el index df9a5b7bd82..fb2d070328e 100644 --- a/lisp/gnus/rfc2231.el +++ b/lisp/gnus/rfc2231.el @@ -1,7 +1,7 @@ ;;; rfc2231.el --- Functions for decoding rfc2231 headers -;; Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. @@ -53,6 +53,10 @@ The list will be on the form display-name mailbox c display-string parameters attribute value type subtype number encoded prev-attribute prev-encoded) + ;; Some mailer (e.g. Thunderbird 1.5) doesn't terminate each + ;; line with semicolon when folding a long parameter value. + (while (string-match "\\([^\t\n\r ;]\\)[\t ]*\r?\n[\t ]+" string) + (setq string (replace-match "\\1;\n " nil nil string))) (ietf-drums-init (mail-header-remove-whitespace (mail-header-remove-comments string))) (let ((table (copy-syntax-table ietf-drums-syntax-table))) @@ -191,6 +195,7 @@ These look like \"us-ascii'en-us'This%20is%20%2A%2A%2Afun%2A%2A%2A\"." (special (ietf-drums-token-to-list "*'%\n\t")) (ascii (ietf-drums-token-to-list ietf-drums-text-token)) (num -1) + (limit (- 74 (length param))) spacep encodep charsetp charset broken) (with-temp-buffer (insert value) @@ -209,24 +214,30 @@ These look like \"us-ascii'en-us'This%20is%20%2A%2A%2Afun%2A%2A%2A\"." (when charsetp (setq charset (mm-encode-body))) (cond - ((or encodep charsetp) + ((or encodep charsetp + (progn + (end-of-line) + (> (current-column) (if spacep (- limit 2) limit)))) + (setq limit (- limit 6)) (goto-char (point-min)) + (insert (symbol-name (or charset 'us-ascii)) "''") (while (not (eobp)) - (when (> (current-column) 60) - (insert ";\n") - (setq broken t)) (if (or (not (memq (following-char) ascii)) (memq (following-char) control) (memq (following-char) tspecial) (memq (following-char) special) (eq (following-char) ? )) (progn + (when (>= (current-column) (1- limit)) + (insert ";\n") + (setq broken t)) (insert "%" (format "%02x" (following-char))) (delete-char 1)) + (when (> (current-column) limit) + (insert ";\n") + (setq broken t)) (forward-char 1))) (goto-char (point-min)) - (insert (symbol-name (or charset 'us-ascii)) "''") - (goto-char (point-min)) (if (not broken) (insert param "*=") (while (not (eobp)) @@ -235,12 +246,12 @@ These look like \"us-ascii'en-us'This%20is%20%2A%2A%2Afun%2A%2A%2A\"." (forward-line 1)))) (spacep (goto-char (point-min)) - (insert param "=\"") + (insert "\n " param "=\"") (goto-char (point-max)) (insert "\"")) (t (goto-char (point-min)) - (insert param "="))) + (insert "\n " param "="))) (buffer-string)))) (provide 'rfc2231) From c1a055ca99e826df150378d210571d8090b39d85 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 4 Feb 2006 11:51:27 +0000 Subject: [PATCH 15/42] Regenerated. --- lisp/ChangeLog | 4 + lisp/ldefs-boot.el | 2709 ++++++++++++++++++++++++++------------------ 2 files changed, 1610 insertions(+), 1103 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index df85f19b2a2..f533d50a75d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-02-04 Eli Zaretskii + + * ldefs-boot.el: Regenerate. + 2006-02-03 Werner Lemberg * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 0ee95d24c62..8f1c2a2f844 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -64,7 +64,7 @@ should return a grid vector array that is the new solution. ;;;*** ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" -;;;;;; (17205 6157)) +;;;;;; (17279 1509)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload (quote ada-add-extensions) "ada-mode" "\ @@ -151,7 +151,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" (17244 43726)) +;;;;;; "add-log.el" (17352 52670)) ;;; Generated autoloads from add-log.el (defvar add-log-current-defun-function nil "\ @@ -289,7 +289,7 @@ Fix any old-style date entries in the current log file to default format. ;;;### (autoloads (defadvice ad-add-advice ad-default-compilation-action ;;;;;; ad-redefinition-action) "advice" "emacs-lisp/advice.el" (17245 -;;;;;; 4869)) +;;;;;; 60162)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action (quote warn) "\ @@ -388,7 +388,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" (17148 24935)) +;;;;;; align) "align" "align.el" (17324 5832)) ;;; Generated autoloads from align.el (autoload (quote align) "align" "\ @@ -478,7 +478,7 @@ A replacement function for `newline-and-indent', aligning as it goes. ;;;*** ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" -;;;;;; (17243 21661)) +;;;;;; (17296 21724)) ;;; Generated autoloads from allout.el (autoload (quote allout-mode) "allout" "\ @@ -581,7 +581,7 @@ to enable reliable topic privacy while preventing accidents like neglected encryption, encryption with a mistaken passphrase, forgetting which passphrase was used, and other practical pitfalls. -See the `allout-toggle-current-subtree-encryption' function and +See `allout-toggle-current-subtree-encryption' function docstring and `allout-encrypt-unencrypted-on-saves' customization variable for details. HOT-SPOT Operation @@ -809,7 +809,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" (17239 32265)) +;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17306 39716)) ;;; Generated autoloads from calendar/appt.el (defvar appt-issue-message t "\ @@ -896,28 +896,51 @@ ARG is positive, otherwise off. ;;;*** ;;;### (autoloads (apropos-documentation apropos-value apropos apropos-documentation-property -;;;;;; apropos-command apropos-variable) "apropos" "apropos.el" -;;;;;; (17205 5977)) +;;;;;; apropos-command apropos-variable apropos-read-pattern) "apropos" +;;;;;; "apropos.el" (17333 9509)) ;;; Generated autoloads from apropos.el +(autoload (quote apropos-read-pattern) "apropos" "\ +Read an apropos pattern, either a word list or a regexp. +Returns the user pattern, either a list of words which are matched +literally, or a string which is used as a regexp to search for. + +SUBJECT is a string that is included in the prompt to identify what +kind of objects to search. + +\(fn SUBJECT)" nil nil) + (autoload (quote apropos-variable) "apropos" "\ -Show user variables that match REGEXP. -With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also show +Show user variables that match PATTERN. +PATTERN can be a word, a list of words (separated by spaces), +or a regexp (using some regexp special characters). If it is a word, +search for matches for that word as a substring. If it is a list of words, +search for matches for any two (or more) of those words. + +With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show normal variables. -\(fn REGEXP &optional DO-ALL)" t nil) +\(fn PATTERN &optional DO-ALL)" t nil) (defalias (quote command-apropos) (quote apropos-command)) (autoload (quote apropos-command) "apropos" "\ -Show commands (interactively callable functions) that match APROPOS-REGEXP. -With optional prefix DO-ALL, or if `apropos-do-all' is non-nil, also show +Show commands (interactively callable functions) that match PATTERN. +PATTERN can be a word, a list of words (separated by spaces), +or a regexp (using some regexp special characters). If it is a word, +search for matches for that word as a substring. If it is a list of words, +search for matches for any two (or more) of those words. + +With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also show noninteractive functions. If VAR-PREDICATE is non-nil, show only variables, and only those that satisfy the predicate VAR-PREDICATE. -\(fn APROPOS-REGEXP &optional DO-ALL VAR-PREDICATE)" t nil) +When called from a Lisp program, a string PATTERN is used as a regexp, +while a list of strings is used as a word list. + +\(fn PATTERN &optional DO-ALL VAR-PREDICATE)" t nil) (autoload (quote apropos-documentation-property) "apropos" "\ Like (documentation-property SYMBOL PROPERTY RAW) but handle errors. @@ -925,34 +948,53 @@ Like (documentation-property SYMBOL PROPERTY RAW) but handle errors. \(fn SYMBOL PROPERTY RAW)" nil nil) (autoload (quote apropos) "apropos" "\ -Show all bound symbols whose names match APROPOS-REGEXP. -With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also -show unbound symbols and key bindings, which is a little more -time-consuming. Returns list of symbols and documentation found. +Show all meaningful Lisp symbols whose names match PATTERN. +Symbols are shown if they are defined as functions, variables, or +faces, or if they have nonempty property lists. -\(fn APROPOS-REGEXP &optional DO-ALL)" t nil) +PATTERN can be a word, a list of words (separated by spaces), +or a regexp (using some regexp special characters). If it is a word, +search for matches for that word as a substring. If it is a list of words, +search for matches for any two (or more) of those words. + +With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, +consider all symbols (if they match PATTERN). + +Returns list of symbols and documentation found. + +\(fn PATTERN &optional DO-ALL)" t nil) (autoload (quote apropos-value) "apropos" "\ -Show all symbols whose value's printed image matches APROPOS-REGEXP. -With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also looks +Show all symbols whose value's printed representation matches PATTERN. +PATTERN can be a word, a list of words (separated by spaces), +or a regexp (using some regexp special characters). If it is a word, +search for matches for that word as a substring. If it is a list of words, +search for matches for any two (or more) of those words. + +With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also looks at the function and at the names and values of properties. Returns list of symbols and values found. -\(fn APROPOS-REGEXP &optional DO-ALL)" t nil) +\(fn PATTERN &optional DO-ALL)" t nil) (autoload (quote apropos-documentation) "apropos" "\ -Show symbols whose documentation contain matches for APROPOS-REGEXP. -With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also use +Show symbols whose documentation contains matches for PATTERN. +PATTERN can be a word, a list of words (separated by spaces), +or a regexp (using some regexp special characters). If it is a word, +search for matches for that word as a substring. If it is a list of words, +search for matches for any two (or more) of those words. + +With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also use documentation that is not stored in the documentation file and show key bindings. Returns list of symbols and documentation found. -\(fn APROPOS-REGEXP &optional DO-ALL)" t nil) +\(fn PATTERN &optional DO-ALL)" t nil) ;;;*** -;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17239 -;;;;;; 32182)) +;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17379 +;;;;;; 14363)) ;;; Generated autoloads from arc-mode.el (autoload (quote archive-mode) "arc-mode" "\ @@ -972,7 +1014,7 @@ archive. ;;;*** -;;;### (autoloads (array-mode) "array" "array.el" (17148 24939)) +;;;### (autoloads (array-mode) "array" "array.el" (17360 50450)) ;;; Generated autoloads from array.el (autoload (quote array-mode) "array" "\ @@ -1249,8 +1291,8 @@ Keymap summary ;;;*** -;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17140 -;;;;;; 20953)) +;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17351 +;;;;;; 27302)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload (quote asm-mode) "asm-mode" "\ @@ -1402,7 +1444,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" -;;;;;; (17239 32274)) +;;;;;; (17299 17747)) ;;; Generated autoloads from emacs-lisp/autoload.el (autoload (quote update-file-autoloads) "autoload" "\ @@ -1573,7 +1615,7 @@ Vectors work just like lists. Nested backquotes are permitted. ;;;*** ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" -;;;;;; (17148 24941)) +;;;;;; (17360 50450)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1638,8 +1680,8 @@ non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17239 -;;;;;; 32408)) +;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17360 +;;;;;; 50497)) ;;; Generated autoloads from textmodes/bibtex.el (autoload (quote bibtex-mode) "bibtex" "\ @@ -1724,8 +1766,8 @@ Binhex decode region between START and END. ;;;*** -;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17246 -;;;;;; 24773)) +;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17251 +;;;;;; 22065)) ;;; Generated autoloads from play/blackbox.el (autoload (quote blackbox) "blackbox" "\ @@ -1847,7 +1889,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" (17239 32184)) +;;;;;; bookmark-set) "bookmark" "bookmark.el" (17279 1462)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-map "rb" 'bookmark-jump) (define-key ctl-x-map "rm" 'bookmark-set) @@ -2037,7 +2079,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" (17246 15074)) +;;;;;; "browse-url" "net/browse-url.el" (17288 11738)) ;;; 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))) "\ @@ -2385,7 +2427,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" (17185 27401)) +;;;;;; "bs" "bs.el" (17379 9019)) ;;; Generated autoloads from bs.el (autoload (quote bs-cycle-next) "bs" "\ @@ -2426,14 +2468,14 @@ name of buffer configuration. ;;;*** ;;;### (autoloads (insert-text-button make-text-button insert-button -;;;;;; make-button define-button-type) "button" "button.el" (17148 -;;;;;; 24943)) +;;;;;; make-button define-button-type) "button" "button.el" (17333 +;;;;;; 9509)) ;;; 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) "\ +(defvar button-map (let ((map (make-sparse-keymap))) (define-key map "" (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ Keymap used by buttons.") -(defvar button-buffer-map (let ((map (make-sparse-keymap))) (define-key map [9] (quote forward-button)) (define-key map [backtab] (quote backward-button)) map) "\ +(defvar button-buffer-map (let ((map (make-sparse-keymap))) (define-key map [9] (quote forward-button)) (define-key map " " (quote backward-button)) (define-key map [backtab] (quote backward-button)) map) "\ Keymap useful for buffers containing buttons. Mode-specific keymaps may want to use this as their parent keymap.") @@ -2515,7 +2557,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) "bytecomp" "emacs-lisp/bytecomp.el" -;;;;;; (17243 21661)) +;;;;;; (17351 30819)) ;;; Generated autoloads from emacs-lisp/bytecomp.el (autoload (quote byte-force-recompile) "bytecomp" "\ @@ -2603,11 +2645,15 @@ Run `byte-recompile-directory' on the dirs remaining on the command line. Must be used only with `-batch', and kills Emacs on completion. For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. +Optional argument ARG is passed as second argument ARG to +`batch-recompile-directory'; see there for its possible values +and corresponding effects. + \(fn &optional ARG)" nil nil) ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17102 18464)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17306 39716)) ;;; Generated autoloads from calendar/cal-dst.el (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) @@ -2617,7 +2663,7 @@ For example, invoke `emacs -batch -f batch-byte-recompile-directory .'. ;;;*** ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" -;;;;;; (17167 2790)) +;;;;;; (17306 39717)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ @@ -2632,14 +2678,14 @@ 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" -;;;;;; (17239 32263)) +;;;;;; (17296 17596)) ;;; 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") - (global-set-key "\e#" 'calc-dispatch) + (define-key ctl-x-map "*" 'calc-dispatch) (autoload (quote calc-dispatch) "calc" "\ Invoke the GNU Emacs Calculator. See `calc-dispatch-help' for details. @@ -2739,11 +2785,11 @@ 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" (17239 32268)) +;;;;;; "calendar/calendar.el" (17370 3977)) ;;; Generated autoloads from calendar/calendar.el (defvar calendar-offset 0 "\ -*The offset of the principal month from the center of the calendar window. +The offset of the principal month from the center of the calendar window. 0 means the principal month is in the center (default), -1 means on the left, +1 means on the right. Larger (or smaller) values push the principal month off the screen.") @@ -2751,7 +2797,7 @@ the screen.") (custom-autoload (quote calendar-offset) "calendar") (defvar view-diary-entries-initially nil "\ -*Non-nil means display current date's diary entries on entry to calendar. +Non-nil means display current date's diary entries on entry to calendar. The diary is displayed in another window when the calendar is first displayed, 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 @@ -2760,32 +2806,32 @@ be overridden by the value of `calendar-setup'.") (custom-autoload (quote view-diary-entries-initially) "calendar") (defvar mark-diary-entries-in-calendar nil "\ -*Non-nil means mark dates with diary entries, in the calendar window. +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") (defvar calendar-remove-frame-by-deleting nil "\ -*Determine how the calendar mode removes a frame no longer needed. +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") (defvar view-calendar-holidays-initially nil "\ -*Non-nil means display holidays for current three month period on entry. +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") (defvar mark-holidays-in-calendar nil "\ -*Non-nil means mark dates of holidays in the calendar window. +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") (defvar all-hebrew-calendar-holidays nil "\ -*If nil, show only major holidays from the Hebrew calendar. +If nil, show only major holidays from the Hebrew calendar. 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.") @@ -2793,7 +2839,7 @@ If t, show all the holidays that would appear in a complete Hebrew calendar.") (custom-autoload (quote all-hebrew-calendar-holidays) "calendar") (defvar all-christian-calendar-holidays nil "\ -*If nil, show only major holidays from the Christian calendar. +If nil, show only major holidays from the Christian calendar. This means only those Christian holidays that appear on secular calendars. If t, show all the holidays that would appear in a complete Christian @@ -2802,7 +2848,7 @@ calendar.") (custom-autoload (quote all-christian-calendar-holidays) "calendar") (defvar all-islamic-calendar-holidays nil "\ -*If nil, show only major holidays from the Islamic calendar. +If nil, show only major holidays from the Islamic calendar. This means only those Islamic holidays that appear on secular calendars. If t, show all the holidays that would appear in a complete Islamic @@ -2811,7 +2857,7 @@ calendar.") (custom-autoload (quote all-islamic-calendar-holidays) "calendar") (defvar all-bahai-calendar-holidays nil "\ -*If nil, show only major holidays from the Baha'i calendar. +If nil, show only major holidays from the Baha'i calendar. 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 @@ -2820,13 +2866,13 @@ calendar.") (custom-autoload (quote all-bahai-calendar-holidays) "calendar") (defvar calendar-load-hook nil "\ -*List of functions to be called after the calendar is first loaded. +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") (defvar initial-calendar-window-hook nil "\ -*List of functions to be called when the calendar window is first opened. +List of functions to be called when the calendar window is first opened. 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.") @@ -2834,7 +2880,7 @@ and reentering it will cause these functions to be called again.") (custom-autoload (quote initial-calendar-window-hook) "calendar") (defvar today-visible-calendar-hook nil "\ -*List of functions called whenever the current date is visible. +List of functions called whenever the current date is visible. This can be used, for example, to replace today's date with asterisks; a function `calendar-star-date' is included for this purpose: (setq today-visible-calendar-hook 'calendar-star-date) @@ -2853,7 +2899,7 @@ functions that move by days and weeks.") (custom-autoload (quote today-visible-calendar-hook) "calendar") (defvar today-invisible-calendar-hook nil "\ -*List of functions called whenever the current date is not visible. +List of functions called whenever the current date is not visible. The corresponding variable `today-visible-calendar-hook' is the list of functions called when the calendar function was called when the current @@ -2866,7 +2912,7 @@ functions that move by days and weeks.") (custom-autoload (quote today-invisible-calendar-hook) "calendar") (defvar calendar-move-hook nil "\ -*List of functions called whenever the cursor moves in the calendar. +List of functions called whenever the cursor moves in the calendar. For example, @@ -2877,7 +2923,7 @@ redisplays the diary for whatever date the cursor is moved to.") (custom-autoload (quote calendar-move-hook) "calendar") (defvar diary-file "~/diary" "\ -*Name of the file in which one's personal diary of dates is kept. +Name of the file in which one's personal diary of dates is kept. The file's entries are lines beginning with any of the forms specified by the variable `american-date-diary-pattern', by default: @@ -2984,39 +3030,39 @@ details, see the documentation for the variable `list-diary-entries-hook'.") (custom-autoload (quote diary-file) "calendar") (defvar diary-nonmarking-symbol "&" "\ -*Symbol indicating that a diary entry is not to be marked in the calendar.") +Symbol indicating that a diary entry is not to be marked in the calendar.") (custom-autoload (quote diary-nonmarking-symbol) "calendar") (defvar hebrew-diary-entry-symbol "H" "\ -*Symbol indicating a diary entry according to the Hebrew calendar.") +Symbol indicating a diary entry according to the Hebrew calendar.") (custom-autoload (quote hebrew-diary-entry-symbol) "calendar") (defvar islamic-diary-entry-symbol "I" "\ -*Symbol indicating a diary entry according to the Islamic calendar.") +Symbol indicating a diary entry according to the Islamic calendar.") (custom-autoload (quote islamic-diary-entry-symbol) "calendar") (defvar bahai-diary-entry-symbol "B" "\ -*Symbol indicating a diary entry according to the Baha'i calendar.") +Symbol indicating a diary entry according to the Baha'i calendar.") (custom-autoload (quote bahai-diary-entry-symbol) "calendar") (defvar diary-include-string "#include" "\ -*The string indicating inclusion of another file of diary entries. +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") (defvar sexp-diary-entry-symbol "%%" "\ -*The string used to indicate a sexp diary entry in `diary-file'. +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") (defvar abbreviated-calendar-year t "\ -*Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. +Interpret a two-digit year DD in a diary entry as either 19DD or 20DD. For the Gregorian calendar; similarly for the Hebrew, Islamic and Baha'i calendars. If this variable is nil, years must be written in full.") @@ -3024,7 +3070,7 @@ full.") (custom-autoload (quote abbreviated-calendar-year) "calendar") (defvar european-calendar-style nil "\ -*Use the European style of dates in the diary and in any displays. +Use the European style of dates in the diary and in any displays. If this variable is t, a date 1/2/1990 would be interpreted as February 1, 1990. The default European date styles (see `european-date-diary-pattern') are @@ -3045,31 +3091,31 @@ are loaded. Otherwise, use one of the functions `european-calendar' or (custom-autoload (quote european-calendar-style) "calendar") (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. +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") (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. +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") (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. +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") (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. +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") (defvar print-diary-entries-hook (quote lpr-buffer) "\ -*List of functions called after a temporary diary buffer is prepared. +List of functions called after a temporary diary buffer is prepared. The buffer shows only the diary entries currently visible in the diary 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 @@ -3078,7 +3124,7 @@ instead of deleting it, or changing the function used to do the printing.") (custom-autoload (quote print-diary-entries-hook) "calendar") (defvar list-diary-entries-hook nil "\ -*List of functions called after diary file is culled for relevant entries. +List of functions called after diary file is culled for relevant entries. It is to be used for diary entries that are not found in the diary file. A function `include-other-diary-files' is provided for use as the value of @@ -3107,13 +3153,13 @@ lexicographic order.") (custom-autoload (quote list-diary-entries-hook) "calendar") (defvar diary-hook nil "\ -*List of functions called after the display of the diary. +List of functions called after the display of the diary. Can be used for appointment notification.") (custom-autoload (quote diary-hook) "calendar") (defvar diary-display-hook nil "\ -*List of functions that handle the display of the diary. +List of functions that handle the display of the diary. If nil (the default), `simple-diary-display' is used. Use `ignore' for no diary display. @@ -3137,7 +3183,7 @@ diary buffer, set the variable `diary-list-include-blanks' to t.") (custom-autoload (quote diary-display-hook) "calendar") (defvar nongregorian-diary-listing-hook nil "\ -*List of functions called for listing diary file and included files. +List of functions called for listing diary file and included files. As the files are processed for diary entries, these functions are used to cull relevant entries. You can use either or both of `list-hebrew-diary-entries', `list-islamic-diary-entries' and @@ -3147,7 +3193,7 @@ describes the style of such diary entries.") (custom-autoload (quote nongregorian-diary-listing-hook) "calendar") (defvar mark-diary-entries-hook nil "\ -*List of functions called after marking diary entries in the calendar. +List of functions called after marking diary entries in the calendar. A function `mark-included-diary-files' is also provided for use as the `mark-diary-entries-hook'; it enables you to use shared diary files together @@ -3163,7 +3209,7 @@ function `include-other-diary-files' as part of `list-diary-entries-hook'.") (custom-autoload (quote mark-diary-entries-hook) "calendar") (defvar nongregorian-diary-marking-hook nil "\ -*List of functions called for marking diary file and included files. +List of functions called for marking diary file and included files. As the files are processed for diary entries, these functions are used to cull relevant entries. You can use either or both of `mark-hebrew-diary-entries', `mark-islamic-diary-entries' and @@ -3173,14 +3219,14 @@ describes the style of such diary entries.") (custom-autoload (quote nongregorian-diary-marking-hook) "calendar") (defvar diary-list-include-blanks nil "\ -*If nil, do not include days with no diary entry in the list of diary entries. +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") (defvar holidays-in-diary-buffer t "\ -*Non-nil means include holidays in the diary display. +Non-nil means include holidays in the diary display. 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.") @@ -3190,7 +3236,7 @@ somewhat; setting it to nil makes the diary display faster.") (put (quote general-holidays) (quote risky-local-variable) t) (defvar general-holidays (quote ((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ -*General holidays. Default value is for the United States. +General holidays. Default value is for the United States. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote general-holidays) "calendar") @@ -3198,7 +3244,7 @@ See the documentation for `calendar-holidays' for details.") (put (quote oriental-holidays) (quote risky-local-variable) t) (defvar oriental-holidays (quote ((if (fboundp (quote atan)) (holiday-chinese-new-year)))) "\ -*Oriental holidays. +Oriental holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote oriental-holidays) "calendar") @@ -3206,7 +3252,7 @@ See the documentation for `calendar-holidays' for details.") (put (quote local-holidays) (quote risky-local-variable) t) (defvar local-holidays nil "\ -*Local holidays. +Local holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote local-holidays) "calendar") @@ -3214,7 +3260,7 @@ See the documentation for `calendar-holidays' for details.") (put (quote other-holidays) (quote risky-local-variable) t) (defvar other-holidays nil "\ -*User defined holidays. +User defined holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote other-holidays) "calendar") @@ -3238,7 +3284,7 @@ See the documentation for `calendar-holidays' for details.") (put (quote hebrew-holidays) (quote risky-local-variable) t) (defvar hebrew-holidays (append hebrew-holidays-1 hebrew-holidays-2 hebrew-holidays-3 hebrew-holidays-4) "\ -*Jewish holidays. +Jewish holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote hebrew-holidays) "calendar") @@ -3246,7 +3292,7 @@ See the documentation for `calendar-holidays' for details.") (put (quote christian-holidays) (quote risky-local-variable) t) (defvar christian-holidays (quote ((if all-christian-calendar-holidays (holiday-fixed 1 6 "Epiphany")) (holiday-easter-etc 0 "Easter Sunday") (holiday-easter-etc -2 "Good Friday") (holiday-easter-etc -46 "Ash Wednesday") (if all-christian-calendar-holidays (holiday-easter-etc -63 "Septuagesima Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -56 "Sexagesima Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -49 "Shrove Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -48 "Shrove Monday")) (if all-christian-calendar-holidays (holiday-easter-etc -47 "Shrove Tuesday")) (if all-christian-calendar-holidays (holiday-easter-etc -14 "Passion Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -7 "Palm Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc -3 "Maundy Thursday")) (if all-christian-calendar-holidays (holiday-easter-etc 35 "Rogation Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc 39 "Ascension Day")) (if all-christian-calendar-holidays (holiday-easter-etc 49 "Pentecost (Whitsunday)")) (if all-christian-calendar-holidays (holiday-easter-etc 50 "Whitmonday")) (if all-christian-calendar-holidays (holiday-easter-etc 56 "Trinity Sunday")) (if all-christian-calendar-holidays (holiday-easter-etc 60 "Corpus Christi")) (if all-christian-calendar-holidays (holiday-greek-orthodox-easter)) (if all-christian-calendar-holidays (holiday-fixed 8 15 "Assumption")) (if all-christian-calendar-holidays (holiday-advent 0 "Advent")) (holiday-fixed 12 25 "Christmas") (if all-christian-calendar-holidays (holiday-julian 12 25 "Eastern Orthodox Christmas")))) "\ -*Christian holidays. +Christian holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote christian-holidays) "calendar") @@ -3254,7 +3300,7 @@ See the documentation for `calendar-holidays' for details.") (put (quote islamic-holidays) (quote risky-local-variable) t) (defvar islamic-holidays (quote ((holiday-islamic 1 1 (format "Islamic New Year %d" (let ((m displayed-month) (y displayed-year)) (increment-calendar-month m y 1) (extract-calendar-year (calendar-islamic-from-absolute (calendar-absolute-from-gregorian (list m (calendar-last-day-of-month m y) y))))))) (if all-islamic-calendar-holidays (holiday-islamic 1 10 "Ashura")) (if all-islamic-calendar-holidays (holiday-islamic 3 12 "Mulad-al-Nabi")) (if all-islamic-calendar-holidays (holiday-islamic 7 26 "Shab-e-Mi'raj")) (if all-islamic-calendar-holidays (holiday-islamic 8 15 "Shab-e-Bara't")) (holiday-islamic 9 1 "Ramadan Begins") (if all-islamic-calendar-holidays (holiday-islamic 9 27 "Shab-e Qadr")) (if all-islamic-calendar-holidays (holiday-islamic 10 1 "Id-al-Fitr")) (if all-islamic-calendar-holidays (holiday-islamic 12 10 "Id-al-Adha")))) "\ -*Islamic holidays. +Islamic holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote islamic-holidays) "calendar") @@ -3262,7 +3308,7 @@ See the documentation for `calendar-holidays' for details.") (put (quote bahai-holidays) (quote risky-local-variable) t) (defvar bahai-holidays (quote ((holiday-fixed 3 21 (format "Baha'i New Year (Naw-Ruz) %d" (- displayed-year (1- 1844)))) (holiday-fixed 4 21 "First Day of Ridvan") (if all-bahai-calendar-holidays (holiday-fixed 4 22 "Second Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 23 "Third Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 24 "Fourth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 25 "Fifth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 26 "Sixth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 27 "Seventh Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 4 28 "Eighth Day of Ridvan")) (holiday-fixed 4 29 "Ninth Day of Ridvan") (if all-bahai-calendar-holidays (holiday-fixed 4 30 "Tenth Day of Ridvan")) (if all-bahai-calendar-holidays (holiday-fixed 5 1 "Eleventh Day of Ridvan")) (holiday-fixed 5 2 "Twelfth Day of Ridvan") (holiday-fixed 5 23 "Declaration of the Bab") (holiday-fixed 5 29 "Ascension of Baha'u'llah") (holiday-fixed 7 9 "Martyrdom of the Bab") (holiday-fixed 10 20 "Birth of the Bab") (holiday-fixed 11 12 "Birth of Baha'u'llah") (if all-bahai-calendar-holidays (holiday-fixed 11 26 "Day of the Covenant")) (if all-bahai-calendar-holidays (holiday-fixed 11 28 "Ascension of `Abdu'l-Baha")))) "\ -*Baha'i holidays. +Baha'i holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote bahai-holidays) "calendar") @@ -3270,7 +3316,7 @@ See the documentation for `calendar-holidays' for details.") (put (quote solar-holidays) (quote risky-local-variable) t) (defvar solar-holidays (quote ((if (fboundp (quote atan)) (solar-equinoxes-solstices)) (if (progn (require (quote cal-dst)) t) (funcall (quote holiday-sexp) calendar-daylight-savings-starts (quote (format "Daylight Savings Time Begins %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-starts-time (float 60)) calendar-standard-time-zone-name) ""))))) (funcall (quote holiday-sexp) calendar-daylight-savings-ends (quote (format "Daylight Savings Time Ends %s" (if (fboundp (quote atan)) (solar-time-string (/ calendar-daylight-savings-ends-time (float 60)) calendar-daylight-time-zone-name) "")))))) "\ -*Sun-related holidays. +Sun-related holidays. See the documentation for `calendar-holidays' for details.") (custom-autoload (quote solar-holidays) "calendar") @@ -3297,7 +3343,7 @@ See the documentation of that function for more information. \(fn &optional ARG)" t nil) (defvar calendar-week-start-day 0 "\ -*The day of the week on which a week in the calendar begins. +The day of the week on which a week in the calendar begins. 0 means Sunday (default), 1 means Monday, and so on. If you change this variable directly (without using customize) @@ -3328,12 +3374,11 @@ it fails. ;;;*** ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" -;;;;;; (17148 25186)) +;;;;;; (17315 52872)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload (quote c-guess-basic-syntax) "cc-engine" "\ Return the syntactic context of the current line. -This function does not do any hidden buffer changes. \(fn)" nil nil) @@ -3341,7 +3386,7 @@ This function does not do any hidden buffer changes. ;;;### (autoloads (pike-mode idl-mode java-mode objc-mode c++-mode ;;;;;; c-mode c-initialize-cc-mode) "cc-mode" "progmodes/cc-mode.el" -;;;;;; (17239 32368)) +;;;;;; (17299 19576)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload (quote c-initialize-cc-mode) "cc-mode" "\ @@ -3499,35 +3544,31 @@ Key bindings: ;;;*** ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" -;;;;;; "progmodes/cc-styles.el" (17239 32369)) +;;;;;; "progmodes/cc-styles.el" (17299 19576)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload (quote c-set-style) "cc-styles" "\ -Set CC Mode variables to use one of several different indentation styles. -STYLENAME is a string representing the desired style from the list of -styles described in the variable `c-style-alist'. See that variable -for details of setting up styles. +Set the current buffer to use the style STYLENAME. +STYLENAME, a string, must be an existing CC Mode style - These are contained +in the variable `c-style-alist'. -The variable `c-indentation-style' always contains the buffer's current -style name. +The variable `c-indentation-style' will get set to STYLENAME. -If the optional argument DONT-OVERRIDE is t, no style variables that -already have values will be overridden. I.e. in the case of -`c-offsets-alist', syntactic symbols will only be added, and in the -case of all other style variables, only those set to `set-from-style' -will be reassigned. +\"Setting the style\" is done by setting CC Mode's \"style variables\" to the +values indicated by the pertinent entry in `c-style-alist'. Other variables +might get set too. -If DONT-OVERRIDE is neither nil nor t, only those style variables that -have default (i.e. non-buffer local) values will keep their settings -while the rest will be overridden. This is useful to avoid overriding -global settings done in ~/.emacs when setting a style from a mode hook -\(providing the style variables are buffer local, which is the -default). +If DONT-OVERRIDE is neither nil nor t, style variables whose default values +have been set (more precisely, whose default values are not the symbol +`set-from-style') will not be changed. This avoids overriding global settings +done in ~/.emacs. It is useful to call c-set-style from a mode hook in this +way. -Obviously, setting DONT-OVERRIDE to t is useful mainly when the -initial style is chosen for a CC Mode buffer by a major mode. Since -that is done internally by CC Mode, it typically won't have any effect -when used elsewhere. +If DONT-OVERRIDE is t, style variables that already have values (i.e., whose +values are not the symbol `set-from-style') will not be overridden. CC Mode +calls c-set-style internally in this way whilst initializing a buffer; if +cc-set-style is called like this from anywhere else, it will usually behave as +a null operation. \(fn STYLENAME &optional DONT-OVERRIDE)" t nil) @@ -3552,6 +3593,13 @@ and exists only for compatibility reasons. \(fn SYMBOL OFFSET &optional IGNORED)" t nil) +;;;*** + +;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17299 +;;;;;; 19576)) +;;; Generated autoloads from progmodes/cc-subword.el + (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t) + ;;;*** ;;;### (autoloads (ccl-execute-with-args check-ccl-program define-ccl-program @@ -4088,7 +4136,7 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17148 25089)) +;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17379 9028)) ;;; Generated autoloads from emacs-lisp/cl.el (defvar custom-print-functions nil "\ @@ -4157,7 +4205,7 @@ is run). ;;;*** ;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el" -;;;;;; (17239 32320)) +;;;;;; (17363 55568)) ;;; Generated autoloads from international/code-pages.el (autoload (quote cp-make-coding-system) "code-pages" "\ @@ -4187,12 +4235,19 @@ Return an updated `non-iso-charset-alist'. (autoload-coding-system 'cp869 '(require 'code-pages)) (autoload-coding-system 'cp874 '(require 'code-pages)) (autoload-coding-system 'windows-1250 '(require 'code-pages)) +(autoload-coding-system 'cp1250 '(require 'code-pages)) (autoload-coding-system 'windows-1253 '(require 'code-pages)) +(autoload-coding-system 'cp1253 '(require 'code-pages)) (autoload-coding-system 'windows-1254 '(require 'code-pages)) +(autoload-coding-system 'cp1254 '(require 'code-pages)) (autoload-coding-system 'windows-1255 '(require 'code-pages)) +(autoload-coding-system 'cp1255 '(require 'code-pages)) (autoload-coding-system 'windows-1256 '(require 'code-pages)) +(autoload-coding-system 'cp1256 '(require 'code-pages)) (autoload-coding-system 'windows-1257 '(require 'code-pages)) +(autoload-coding-system 'cp1257 '(require 'code-pages)) (autoload-coding-system 'windows-1258 '(require 'code-pages)) +(autoload-coding-system 'cp1258 '(require 'code-pages)) (autoload-coding-system 'next '(require 'code-pages)) (autoload-coding-system 'koi8-t '(require 'code-pages)) (autoload-coding-system 'iso-8859-16 '(require 'code-pages)) @@ -4269,7 +4324,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" -;;;;;; (17239 32187)) +;;;;;; (17279 1464)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ @@ -4359,8 +4414,8 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** -;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17159 -;;;;;; 1461)) +;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17305 +;;;;;; 29717)) ;;; Generated autoloads from compare-w.el (autoload (quote compare-windows) "compare-w" "\ @@ -4397,7 +4452,7 @@ 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" (17239 32370)) +;;;;;; "compile" "progmodes/compile.el" (17314 42619)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4558,7 +4613,7 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" -;;;;;; (17148 24947)) +;;;;;; (17315 6760)) ;;; Generated autoloads from complete.el (defvar partial-completion-mode nil "\ @@ -4590,25 +4645,41 @@ specially in \\[find-file]. For example, \\[find-file] RET finds the file `/usr/include/sys/time.h'. See also the variable `PC-include-file-path'. +Partial Completion mode extends the meaning of `completion-auto-help' (which +see), so that if it is neither nil nor t, Emacs shows the `*Completions*' +buffer only on the second attempt to complete. That is, if TAB finds nothing +to complete, the first TAB just says \"Next char not unique\" and the +second TAB brings up the `*Completions*' buffer. + \(fn &optional ARG)" t nil) ;;;*** ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" -;;;;;; (17239 32188)) +;;;;;; (17370 3956)) ;;; 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'.") + +(custom-autoload (quote dynamic-completion-mode) "completion") + +(put (quote dynamic-completion-mode) (quote custom-set) (quote custom-set-minor-mode)) + (autoload (quote dynamic-completion-mode) "completion" "\ Enable dynamic word-completion. -\(fn)" t nil) +\(fn &optional ARG)" t nil) ;;;*** ;;;### (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" (17120 44761)) +;;;;;; "composite" "composite.el" (17324 5833)) ;;; 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))) "\ @@ -4829,7 +4900,7 @@ 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" (17239 32409)) +;;;;;; conf-mode) "conf-mode" "textmodes/conf-mode.el" (17259 28146)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload (quote conf-mode) "conf-mode" "\ @@ -4863,7 +4934,7 @@ See also `conf-space-mode', `conf-colon-mode', `conf-javaprop-mode', \\{conf-mode-map} -\(fn &optional COMMENT SYNTAX-TABLE NAME)" t nil) +\(fn)" t nil) (autoload (quote conf-unix-mode) "conf-mode" "\ Conf Mode starter for Unix style Conf files. @@ -4921,8 +4992,7 @@ Conf Mode starter for space separated conf files. 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. Programmatically you can pass such a regexp as -KEYWORDS, or any non-nil non-string for no keywords. +the keywords. For details see `conf-mode'. Example: @@ -4938,7 +5008,7 @@ class desktop add /dev/audio desktop add /dev/mixer desktop -\(fn &optional KEYWORDS)" t nil) +\(fn)" t nil) (autoload (quote conf-colon-mode) "conf-mode" "\ Conf Mode starter for Colon files. @@ -4950,7 +5020,7 @@ For details see `conf-mode'. Example: : \"\\241\" exclamdown : \"\\242\" cent -\(fn &optional COMMENT SYNTAX-TABLE NAME)" t nil) +\(fn)" t nil) (autoload (quote conf-ppd-mode) "conf-mode" "\ Conf Mode starter for Adobe/CUPS PPD files. @@ -5039,7 +5109,7 @@ Insert a copyright by $ORGANIZATION notice at cursor. ;;;*** ;;;### (autoloads (cperl-mode) "cperl-mode" "progmodes/cperl-mode.el" -;;;;;; (17185 27634)) +;;;;;; (17279 1513)) ;;; Generated autoloads from progmodes/cperl-mode.el (autoload (quote cperl-mode) "cperl-mode" "\ @@ -5212,7 +5282,7 @@ or as help on variables `cperl-tips', `cperl-problems', ;;;*** ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" -;;;;;; (17140 20963)) +;;;;;; (17360 50494)) ;;; Generated autoloads from progmodes/cpp.el (autoload (quote cpp-highlight-buffer) "cpp" "\ @@ -5255,7 +5325,7 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise. ;;;*** ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" -;;;;;; (17148 25089)) +;;;;;; (17315 6765)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload (quote completing-read-multiple) "crm" "\ @@ -5291,7 +5361,7 @@ INHERIT-INPUT-METHOD. ;;;*** ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" -;;;;;; (17239 32278)) +;;;;;; (17379 9029)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5327,6 +5397,11 @@ You can customize `cua-enable-cua-keys' to completely disable the CUA bindings, or `cua-prefix-override-inhibit-delay' to change the prefix fallback behavior. +CUA mode manages Transient Mark mode internally. Trying to disable +Transient Mark mode while CUA mode is enabled does not work; if you +only want to highlight the region when it is selected using a +shifted movement key, set `cua-highlight-region-shift-only'. + \(fn &optional ARG)" t nil) (autoload (quote cua-selection-mode) "cua-base" "\ @@ -5353,7 +5428,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" (17244 43728)) +;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17370 3957)) ;;; Generated autoloads from cus-edit.el (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") @@ -5450,15 +5525,16 @@ Show the buffer in another window, but don't select it. \(fn SYMBOL)" t nil) -(autoload (quote customize-changed-options) "cus-edit" "\ -Customize all user option variables changed in Emacs itself. -This includes new user option variables and faces, and new -customization groups, as well as older options and faces whose default -values have changed since the previous major Emacs release. +(defalias (quote customize-changed) (quote customize-changed-options)) -With argument SINCE-VERSION (a string), customize all user option -variables that were added (or their meanings were changed) since that -version. +(autoload (quote customize-changed-options) "cus-edit" "\ +Customize all settings whose meanings have changed in Emacs itself. +This includes new user option variables and faces, and new +customization groups, as well as older options and faces whose meanings +or default values have changed since the previous major Emacs release. + +With argument SINCE-VERSION (a string), customize all settings +that were added or redefined since that version. \(fn SINCE-VERSION)" t nil) @@ -5487,7 +5563,7 @@ Customize all user options set since the last save in this session. \(fn)" t nil) (autoload (quote customize-rogue) "cus-edit" "\ -Customize all user variable modified outside customize. +Customize all user variables modified outside customize. \(fn)" t nil) @@ -5497,28 +5573,30 @@ Customize all already saved user options. \(fn)" t nil) (autoload (quote customize-apropos) "cus-edit" "\ -Customize all user options matching REGEXP. +Customize all loaded options, faces and groups matching REGEXP. If ALL is `options', include only options. If ALL is `faces', include only faces. If ALL is `groups', include only groups. -If ALL is t (interactively, with prefix arg), include options which are not -user-settable, as well as faces and groups. +If ALL is t (interactively, with prefix arg), include variables +that are not customizable options, as well as faces and groups +\(but we recommend using `apropos-variable' instead). \(fn REGEXP &optional ALL)" t nil) (autoload (quote customize-apropos-options) "cus-edit" "\ -Customize all user options matching REGEXP. -With prefix arg, include options which are not user-settable. +Customize all loaded customizable options matching REGEXP. +With prefix arg, include variables that are not customizable options +\(but we recommend using `apropos-variable' instead). \(fn REGEXP &optional ARG)" t nil) (autoload (quote customize-apropos-faces) "cus-edit" "\ -Customize all user faces matching REGEXP. +Customize all loaded faces matching REGEXP. \(fn REGEXP)" t nil) (autoload (quote customize-apropos-groups) "cus-edit" "\ -Customize all user groups matching REGEXP. +Customize all loaded groups matching REGEXP. \(fn REGEXP)" t nil) @@ -5608,7 +5686,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" (17242 7305)) +;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17340 716)) ;;; Generated autoloads from cus-face.el (autoload (quote custom-declare-face) "cus-face" "\ @@ -5657,9 +5735,9 @@ COMMENT is a string comment about FACE. Reset the specs in THEME of some faces to their specs in other themes. Each of the arguments ARGS has this form: - (FACE FROM-THEME) + (FACE IGNORED) -This means reset FACE to its value in FROM-THEME. +This means reset FACE. The argument IGNORED is ignored. \(fn THEME &rest ARGS)" nil nil) @@ -5678,7 +5756,7 @@ This means reset FACE to its value in FROM-THEME. ;;;*** ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" -;;;;;; (17185 27407)) +;;;;;; (17351 27276)) ;;; Generated autoloads from cus-theme.el (autoload (quote customize-create-theme) "cus-theme" "\ @@ -5700,7 +5778,7 @@ Mode used for cvs status output. ;;;*** ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) -;;;;;; "cwarn" "progmodes/cwarn.el" (17140 20964)) +;;;;;; "cwarn" "progmodes/cwarn.el" (17299 17749)) ;;; Generated autoloads from progmodes/cwarn.el (autoload (quote cwarn-mode) "cwarn" "\ @@ -5773,7 +5851,7 @@ If the argument is nil, we return the display table to its standard state. ;;;*** ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" -;;;;;; (17239 32191)) +;;;;;; (17296 17578)) ;;; Generated autoloads from dabbrev.el (define-key esc-map "/" 'dabbrev-expand) (define-key esc-map [?\C-/] 'dabbrev-completion) @@ -5790,9 +5868,6 @@ completions. If the prefix argument is 16 (which comes from C-u C-u), then it searches *all* buffers. -With no prefix argument, it reuses an old completion list -if there is a suitable one already. - \(fn &optional ARG)" t nil) (autoload (quote dabbrev-expand) "dabbrev" "\ @@ -5820,8 +5895,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. ;;;*** -;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17140 -;;;;;; 20964)) +;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17279 +;;;;;; 1514)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload (quote dcl-mode) "dcl-mode" "\ @@ -6046,8 +6121,8 @@ START and END delimits the corners of text rectangle. ;;;*** -;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17185 -;;;;;; 27637)) +;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17333 +;;;;;; 9524)) ;;; Generated autoloads from progmodes/delphi.el (autoload (quote delphi-mode) "delphi" "\ @@ -6128,7 +6203,7 @@ any selection. ;;;*** ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) -;;;;;; "derived" "emacs-lisp/derived.el" (17148 25090)) +;;;;;; "derived" "emacs-lisp/derived.el" (17299 17747)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload (quote define-derived-mode) "derived" "\ @@ -6193,7 +6268,7 @@ the first time the mode is used. ;;;*** ;;;### (autoloads (describe-char describe-text-properties) "descr-text" -;;;;;; "descr-text.el" (17185 27409)) +;;;;;; "descr-text.el" (17333 9511)) ;;; Generated autoloads from descr-text.el (autoload (quote describe-text-properties) "descr-text" "\ @@ -6218,7 +6293,7 @@ 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-locals-to-save -;;;;;; desktop-save-mode) "desktop" "desktop.el" (17242 7306)) +;;;;;; desktop-save-mode) "desktop" "desktop.el" (17370 3958)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6450,7 +6525,7 @@ Not documented ;;;*** ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" -;;;;;; "calendar/diary-lib.el" (17245 63766)) +;;;;;; "calendar/diary-lib.el" (17306 39719)) ;;; Generated autoloads from calendar/diary-lib.el (autoload (quote diary) "diary-lib" "\ @@ -6559,7 +6634,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" (17244 43730)) +;;;;;; "dired" "dired.el" (17360 50454)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches "-al" "\ @@ -6764,7 +6839,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" (17239 32194)) +;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17360 50453)) ;;; Generated autoloads from dired-aux.el (autoload (quote dired-diff) "dired-aux" "\ @@ -6773,7 +6848,7 @@ FILE defaults to the file at the mark. (That's the mark set by \\[set-mark-command], not by Dired's \\[dired-mark] command.) The prompted-for file is the first file given to `diff'. With prefix arg, prompt for second argument SWITCHES, - which is options for `diff'. +which is options for `diff'. \(fn FILE &optional SWITCHES)" t nil) @@ -7172,7 +7247,7 @@ true then the type of the file linked to by FILE is printed instead. ;;;*** -;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17248 29668)) +;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17279 1466)) ;;; Generated autoloads from dired-x.el (autoload (quote dired-jump) "dired-x" "\ @@ -7224,7 +7299,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" (17242 7306)) +;;;;;; make-display-table) "disp-table" "disp-table.el" (17297 35677)) ;;; Generated autoloads from disp-table.el (autoload (quote make-display-table) "disp-table" "\ @@ -7385,7 +7460,7 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17244 43757)) +;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17370 3988)) ;;; Generated autoloads from play/doctor.el (autoload (quote doctor) "doctor" "\ @@ -7440,7 +7515,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" (17167 2793)) +;;;;;; "emacs-lisp/easy-mmode.el" (17299 17748)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) @@ -7491,8 +7566,14 @@ For example, you could write Make GLOBAL-MODE out of the buffer-local minor MODE. TURN-ON is a function that will be called with no args in every buffer and that should try to turn MODE on if applicable for that buffer. -KEYS is a list of CL-style keyword arguments: -:group to specify the custom group. +KEYS is a list of CL-style keyword arguments. As the minor mode + defined by this function is always global, any :global keyword is + ignored. Other keywords have the same meaning as in `define-minor-mode', + which see. In particular, :group specifies the custom group. + The most useful keywords are those that are passed on to the + `defcustom'. It normally makes no sense to pass the :lighter + or :keymap keywords to `define-global-minor-mode', since these + are usually passed to the buffer-local version of the minor mode. If MODE's set-up depends on the major mode in effect when it was enabled, then disabling and reenabling MODE should make MODE work @@ -7526,8 +7607,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" (17250 -;;;;;; 21105)) +;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17251 +;;;;;; 22040)) ;;; Generated autoloads from emacs-lisp/easymenu.el (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) @@ -8119,8 +8200,9 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;*** -;;;### (autoloads (edebug-eval-top-level-form def-edebug-spec edebug-all-forms -;;;;;; edebug-all-defs) "edebug" "emacs-lisp/edebug.el" (17148 25093)) +;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form +;;;;;; def-edebug-spec edebug-all-forms edebug-all-defs) "edebug" +;;;;;; "emacs-lisp/edebug.el" (17325 10417)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -8172,6 +8254,16 @@ already is one.) \(fn)" t nil) +(autoload (quote edebug-all-defs) "edebug" "\ +Toggle edebugging of all definitions. + +\(fn)" t nil) + +(autoload (quote edebug-all-forms) "edebug" "\ +Toggle edebugging of all forms. + +\(fn)" t nil) + ;;;*** ;;;### (autoloads (ediff-documentation ediff-version ediff-revision @@ -8183,7 +8275,7 @@ already is one.) ;;;;;; 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" (17239 32202)) +;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17288 11719)) ;;; Generated autoloads from ediff.el (autoload (quote ediff-files) "ediff" "\ @@ -8444,7 +8536,7 @@ Not documented ;;;*** ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" -;;;;;; (17239 32198)) +;;;;;; (17379 9020)) ;;; Generated autoloads from ediff-mult.el (autoload (quote ediff-show-registry) "ediff-mult" "\ @@ -8457,7 +8549,7 @@ Display Ediff's registry. ;;;*** ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) -;;;;;; "ediff-util" "ediff-util.el" (17239 32201)) +;;;;;; "ediff-util" "ediff-util.el" (17279 1467)) ;;; Generated autoloads from ediff-util.el (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ @@ -8653,8 +8745,8 @@ Initialize elint. ;;;*** ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list -;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17148 -;;;;;; 25094)) +;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17296 +;;;;;; 17597)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload (quote elp-instrument-function) "elp" "\ @@ -8688,7 +8780,7 @@ displayed. ;;;*** ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" -;;;;;; (17148 25154)) +;;;;;; (17351 27291)) ;;; Generated autoloads from mail/emacsbug.el (autoload (quote report-emacs-bug) "emacsbug" "\ @@ -8839,6 +8931,452 @@ Not documented \(fn FROM TO)" nil nil) +;;;*** + +;;;### (autoloads (erc-select erc-select-read-args) "erc" "erc/erc.el" +;;;;;; (17379 11797)) +;;; Generated autoloads from erc/erc.el + +(autoload (quote erc-select-read-args) "erc" "\ +Prompt the user for values of nick, server, port, and password. + +\(fn)" nil nil) + +(autoload (quote erc-select) "erc" "\ +Select connection parameters and run ERC. +Non-interactively, it takes keyword arguments + (server (erc-compute-server)) + (port (erc-compute-port)) + (nick (erc-compute-nick)) + password + (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 + +\(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) PASSWORD (FULL-NAME (erc-compute-full-name)))" t nil) + +;;;*** + +;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17372 +;;;;;; 48744)) +;;; Generated autoloads from erc/erc-autoaway.el + (autoload 'erc-autoaway-mode "erc-autoaway") + +;;;*** + +;;;### (autoloads nil "erc-autojoin" "erc/erc-autojoin.el" (17372 +;;;;;; 48744)) +;;; Generated autoloads from erc/erc-autojoin.el + (autoload 'erc-autojoin-mode "erc-autojoin" nil t) + +;;;*** + +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17372 48744)) +;;; Generated autoloads from erc/erc-button.el + (autoload 'erc-button-mode "erc-button" nil t) + +;;;*** + +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (17372 48744)) +;;; Generated autoloads from erc/erc-compat.el + (autoload 'erc-define-minor-mode "erc-compat") + +;;;*** + +;;;### (autoloads (erc-complete) "erc-complete" "erc/erc-complete.el" +;;;;;; (17372 48744)) +;;; Generated autoloads from erc/erc-complete.el + +(autoload (quote erc-complete) "erc-complete" "\ +Complete nick at point. +See `erc-try-complete-nick' for more technical info. +This function is obsolete, use `erc-pcomplete' instead. + +\(fn)" t nil) + +;;;*** + +;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) +;;;;;; "erc-dcc" "erc/erc-dcc.el" (17372 48744)) +;;; Generated autoloads from erc/erc-dcc.el + +(autoload (quote erc-cmd-DCC) "erc-dcc" "\ +Parser for /dcc command. +This figures out the dcc subcommand and calls the appropriate routine to +handle it. The function dispatched should be named \"erc-dcc-do-FOO-command\", +where FOO is one of CLOSE, GET, SEND, LIST, CHAT, etc. + +\(fn CMD &rest ARGS)" nil nil) + +(autoload (quote pcomplete/erc-mode/DCC) "erc-dcc" "\ +Provides completion for the /DCC command. + +\(fn)" nil nil) + +(defvar erc-ctcp-query-DCC-hook (quote (erc-ctcp-query-DCC)) "\ +Hook variable for CTCP DCC queries") + +(autoload (quote erc-ctcp-query-DCC) "erc-dcc" "\ +The function called when a CTCP DCC request is detected by the client. +It examines the DCC subcommand, and calls the appropriate routine for +that subcommand. + +\(fn PROC NICK LOGIN HOST TO QUERY)" nil nil) + +;;;*** + +;;;### (autoloads (erc-ezb-initialize erc-ezb-select-session erc-ezb-select +;;;;;; 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" +;;;;;; (17372 48744)) +;;; Generated autoloads from erc/erc-ezbounce.el + +(autoload (quote erc-cmd-ezb) "erc-ezbounce" "\ +Send EZB commands to the EZBouncer verbatim. + +\(fn LINE &optional FORCE)" nil nil) + +(autoload (quote erc-ezb-get-login) "erc-ezbounce" "\ +Return an appropriate EZBounce login for SERVER and PORT. +Look up entries in `erc-ezb-login-alist'. If the username or password +in the alist is `nil', prompt for the appropriate values. + +\(fn SERVER PORT)" nil nil) + +(autoload (quote erc-ezb-lookup-action) "erc-ezbounce" "\ +Not documented + +\(fn MESSAGE)" nil nil) + +(autoload (quote erc-ezb-notice-autodetect) "erc-ezbounce" "\ +React on an EZBounce NOTICE request. + +\(fn PROC PARSED)" nil nil) + +(autoload (quote erc-ezb-identify) "erc-ezbounce" "\ +Identify to the EZBouncer server. + +\(fn MESSAGE)" nil nil) + +(autoload (quote erc-ezb-init-session-list) "erc-ezbounce" "\ +Reset the EZBounce session list to NIL. + +\(fn MESSAGE)" nil nil) + +(autoload (quote erc-ezb-end-of-session-list) "erc-ezbounce" "\ +Indicate the end of the EZBounce session listing. + +\(fn MESSAGE)" nil nil) + +(autoload (quote erc-ezb-add-session) "erc-ezbounce" "\ +Add an EZBounce session to the session list. + +\(fn MESSAGE)" nil nil) + +(autoload (quote erc-ezb-select) "erc-ezbounce" "\ +Select an IRC server to use by EZBounce, in ERC style. + +\(fn MESSAGE)" nil nil) + +(autoload (quote erc-ezb-select-session) "erc-ezbounce" "\ +Select a detached EZBounce session. + +\(fn)" nil nil) + +(autoload (quote erc-ezb-initialize) "erc-ezbounce" "\ +Add EZBouncer convenience functions to ERC. + +\(fn)" nil nil) + +;;;*** + +;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17372 +;;;;;; 48744)) +;;; Generated autoloads from erc/erc-fill.el + (autoload 'erc-fill-mode "erc-fill" nil t) + +(autoload (quote erc-fill) "erc-fill" "\ +Fill a region using the function referenced in `erc-fill-function'. +You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. + +\(fn)" nil nil) + +;;;*** + +;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" +;;;;;; (17372 48744)) +;;; Generated autoloads from erc/erc-imenu.el + +(autoload (quote erc-create-imenu-index) "erc-imenu" "\ +Not documented + +\(fn)" nil nil) + +;;;*** + +;;;### (autoloads (erc-chanlist erc-cmd-LIST) "erc-list" "erc/erc-list.el" +;;;;;; (17372 48744)) +;;; Generated autoloads from erc/erc-list.el + +(autoload (quote erc-cmd-LIST) "erc-list" "\ +Display a buffer containing a list of channels on the current server. +Optional argument CHANNEL specifies a single channel to list (instead of every +available channel). + +\(fn &rest CHANNEL)" t nil) + +(autoload (quote erc-chanlist) "erc-list" "\ +Show a channel listing of the current server in a special mode. +Please note that this function only works with IRC servers which conform +to RFC and send the LIST header (#321) at start of list transmission. + +\(fn &optional CHANNELS)" t nil) + +;;;*** + +;;;### (autoloads (erc-save-buffer-in-logs erc-logging-enabled) "erc-log" +;;;;;; "erc/erc-log.el" (17372 48744)) +;;; Generated autoloads from erc/erc-log.el + (autoload 'erc-log-mode "erc-log" nil t) + +(autoload (quote erc-logging-enabled) "erc-log" "\ +Return non-nil if logging is enabled for BUFFER. +If BUFFER is nil, the value of `current-buffer' is used. +Logging is enabled if `erc-log-channels-directory' is non-nil, the directory +is writeable (it will be created as necessary) and +`erc-enable-logging' returns a non-nil value. + +\(fn &optional BUFFER)" nil nil) + +(autoload (quote erc-save-buffer-in-logs) "erc-log" "\ +Append BUFFER contents to the log file, if logging is enabled. +If BUFFER is not provided, current buffer is used. +Logging is enabled if `erc-logging-enabled' returns non-nil. + +This is normally done on exit, to save the unsaved portion of the +buffer, since only the text that runs off the buffer limit is logged +automatically. + +You can save every individual message by putting this function on +`erc-insert-post-hook'. + +\(fn &optional BUFFER)" t nil) + +;;;*** + +;;;### (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" +;;;;;; (17372 48744)) +;;; Generated autoloads from erc/erc-match.el + (autoload 'erc-match-mode "erc-match") + +(autoload (quote erc-add-pal) "erc-match" "\ +Add pal interactively to `erc-pals'. + +\(fn)" t nil) + +(autoload (quote erc-delete-pal) "erc-match" "\ +Delete pal interactively to `erc-pals'. + +\(fn)" t nil) + +(autoload (quote erc-add-fool) "erc-match" "\ +Add fool interactively to `erc-fools'. + +\(fn)" t nil) + +(autoload (quote erc-delete-fool) "erc-match" "\ +Delete fool interactively to `erc-fools'. + +\(fn)" t nil) + +(autoload (quote erc-add-keyword) "erc-match" "\ +Add keyword interactively to `erc-keywords'. + +\(fn)" t nil) + +(autoload (quote erc-delete-keyword) "erc-match" "\ +Delete keyword interactively to `erc-keywords'. + +\(fn)" t nil) + +(autoload (quote erc-add-dangerous-host) "erc-match" "\ +Add dangerous-host interactively to `erc-dangerous-hosts'. + +\(fn)" t nil) + +(autoload (quote erc-delete-dangerous-host) "erc-match" "\ +Delete dangerous-host interactively to `erc-dangerous-hosts'. + +\(fn)" t nil) + +;;;*** + +;;;### (autoloads (erc-server-select erc-determine-network) "erc-nets" +;;;;;; "erc/erc-nets.el" (17372 48744)) +;;; Generated autoloads from erc/erc-nets.el + +(autoload (quote erc-determine-network) "erc-nets" "\ +Return the name of the network or \"Unknown\" as a symbol. Use the +server parameter NETWORK if provided, otherwise parse the server name and +search for a match in `erc-networks-alist'. + +\(fn)" nil nil) + +(autoload (quote erc-server-select) "erc-nets" "\ +Interactively select a server to connect to using `erc-server-alist'. + +\(fn)" t nil) + +;;;*** + +;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" +;;;;;; (17372 48744)) +;;; Generated autoloads from erc/erc-netsplit.el + (autoload 'erc-netsplit-mode "erc-netsplit") + +(autoload (quote erc-cmd-WHOLEFT) "erc-netsplit" "\ +Show who's gone. + +\(fn)" nil nil) + +;;;*** + +;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) +;;;;;; "erc-nickserv" "erc/erc-nickserv.el" (17372 48744)) +;;; Generated autoloads from erc/erc-nickserv.el + (autoload 'erc-services-mode "erc-nickserv" nil t) + +(autoload (quote erc-nickserv-identify-mode) "erc-nickserv" "\ +Set up hooks according to which MODE the user has chosen. + +\(fn MODE)" t nil) + +(autoload (quote erc-nickserv-identify) "erc-nickserv" "\ +Send an \"identify \" message to NickServ. +When called interactively, read the password using `read-passwd'. + +\(fn PASSWORD)" t nil) + +;;;*** + +;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" +;;;;;; "erc/erc-notify.el" (17372 48744)) +;;; Generated autoloads from erc/erc-notify.el + (autoload 'erc-notify-mode "erc-notify" nil t) + +(autoload (quote erc-cmd-NOTIFY) "erc-notify" "\ +Change `erc-notify-list' or list current notify-list members online. +Without args, list the current list of notificated people online, +with args, toggle notify status of people. + +\(fn &rest ARGS)" nil nil) + +(autoload (quote pcomplete/erc-mode/NOTIFY) "erc-notify" "\ +Not documented + +\(fn)" nil nil) + +;;;*** + +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17372 48744)) +;;; Generated autoloads from erc/erc-page.el + (autoload 'erc-page-mode "erc-page") + +;;;*** + +;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17372 +;;;;;; 48744)) +;;; Generated autoloads from erc/erc-pcomplete.el + (autoload 'erc-completion-mode "erc-pcomplete" nil t) + +;;;*** + +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17372 48744)) +;;; Generated autoloads from erc/erc-replace.el + (autoload 'erc-replace-mode "erc-replace") + +;;;*** + +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17372 48744)) +;;; Generated autoloads from erc/erc-ring.el + (autoload 'erc-ring-mode "erc-ring" nil t) + +;;;*** + +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17372 48744)) +;;; Generated autoloads from erc/erc-sound.el + (autoload 'erc-sound-mode "erc-sound") + +;;;*** + +;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" +;;;;;; (17373 24060)) +;;; Generated autoloads from erc/erc-speedbar.el + +(autoload (quote erc-speedbar-browser) "erc-speedbar" "\ +Initialize speedbar to display an ERC browser. +This will add a speedbar major display mode. + +\(fn)" t nil) + +;;;*** + +;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17372 +;;;;;; 48744)) +;;; Generated autoloads from erc/erc-spelling.el + (autoload 'erc-spelling-mode "erc-spelling" nil t) + +;;;*** + +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17374 44611)) +;;; Generated autoloads from erc/erc-stamp.el + (autoload 'erc-timestamp-mode "erc-stamp" nil t) + +;;;*** + +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17372 48744)) +;;; 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) + +;;;*** + +;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) +;;;;;; "erc-truncate" "erc/erc-truncate.el" (17372 48744)) +;;; Generated autoloads from erc/erc-truncate.el + (autoload 'erc-truncate-mode "erc-truncate" nil t) + +(autoload (quote erc-truncate-buffer-to-size) "erc-truncate" "\ +Truncates the buffer to the size SIZE. +If BUFFER is not provided, the current buffer is assumed. The deleted +region is logged if `erc-logging-enabled' returns non-nil. + +\(fn SIZE &optional BUFFER)" nil nil) + +(autoload (quote erc-truncate-buffer) "erc-truncate" "\ +Truncates the current buffer to `erc-max-buffer-size'. +Meant to be used in hooks, like `erc-insert-post-hook'. + +\(fn)" t nil) + +;;;*** + +;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" +;;;;;; (17372 48744)) +;;; Generated autoloads from erc/erc-xdcc.el + +(autoload (quote erc-xdcc-add-file) "erc-xdcc" "\ +Add a file to `erc-xdcc-files'. + +\(fn FILE)" t nil) + ;;;*** ;;;### (autoloads (eshell-mode) "esh-mode" "eshell/esh-mode.el" (17140 @@ -9214,7 +9752,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" (17185 27568)) +;;;;;; "ethio-util" "language/ethio-util.el" (17324 5851)) ;;; Generated autoloads from language/ethio-util.el (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ @@ -9260,7 +9798,7 @@ See also the descriptions of the variables \(fn &optional SECONDARY FORCE)" t nil) (autoload (quote ethio-sera-to-fidel-mail-or-marker) "ethio-util" "\ -Execute ethio-sera-to-fidel-mail or ethio-sera-to-fidel-marker depending on the current major mode. +Execute `ethio-sera-to-fidel-mail' or `ethio-sera-to-fidel-marker' depending on the current major mode. If in rmail-mode or in mail-mode, execute the former; otherwise latter. \(fn &optional ARG)" t nil) @@ -9320,7 +9858,7 @@ See also the descriptions of the variables \(fn &optional SECONDARY FORCE)" t nil) (autoload (quote ethio-fidel-to-sera-mail-or-marker) "ethio-util" "\ -Execute ethio-fidel-to-sera-mail or ethio-fidel-to-sera-marker depending on the current major mode. +Execute `ethio-fidel-to-sera-mail' or `ethio-fidel-to-sera-marker' depending on the current major mode. If in rmail-mode or in mail-mode, execute the former; otherwise latter. \(fn &optional ARG)" t nil) @@ -9409,7 +9947,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" -;;;;;; (17185 27585)) +;;;;;; (17259 28136)) ;;; Generated autoloads from net/eudc.el (autoload (quote eudc-set-server) "eudc" "\ @@ -9616,7 +10154,7 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17239 32377)) +;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17279 1515)) ;;; Generated autoloads from progmodes/f90.el (autoload (quote f90-mode) "f90" "\ @@ -9887,7 +10425,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" (17239 32329)) +;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17259 28131)) ;;; Generated autoloads from mail/feedmail.el (autoload (quote feedmail-send-it) "feedmail" "\ @@ -9941,7 +10479,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" (17239 32205)) +;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17279 6020)) ;;; Generated autoloads from ffap.el (autoload (quote ffap-next) "ffap" "\ @@ -10183,7 +10721,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" (17246 34220)) +;;;;;; "emacs-lisp/find-func.el" (17362 39736)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload (quote find-library) "find-func" "\ @@ -10203,7 +10741,7 @@ The search is done in the source for library LIBRARY. (autoload (quote find-function-noselect) "find-func" "\ Return a pair (BUFFER . POINT) pointing to the definition of FUNCTION. -Finds the Emacs Lisp library containing the definition of FUNCTION +Finds the source file containing the definition of FUNCTION in a buffer and the point of the definition. The buffer is not selected. @@ -10216,7 +10754,7 @@ in `load-path'. (autoload (quote find-function) "find-func" "\ Find the definition of the FUNCTION near point. -Finds the Emacs Lisp library containing the definition of the function +Finds the source file containing the definition of the function near point (selected by `function-called-at-point') in a buffer and places point before the definition. Set mark before moving, if the buffer already existed. @@ -10235,18 +10773,17 @@ See `find-function' for more details. \(fn FUNCTION)" t nil) (autoload (quote find-function-other-frame) "find-func" "\ -Find, in ananother frame, the definition of FUNCTION near point. +Find, in another frame, the definition of FUNCTION near point. See `find-function' for more details. \(fn FUNCTION)" t nil) (autoload (quote find-variable-noselect) "find-func" "\ -Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL. +Return a pair `(BUFFER . POINT)' pointing to the definition of VARIABLE. -Finds the Emacs Lisp library containing the definition of SYMBOL -in a buffer, and the point of the definition. It does not switch -to the buffer or display it. +Finds the library containing the definition of VARIABLE in a buffer and +the point of the definition. The buffer is not selected. The library where VARIABLE is defined is searched for in FILE or `find-function-source-path', if non nil, otherwise in `load-path'. @@ -10256,7 +10793,7 @@ The library where VARIABLE is defined is searched for in FILE or (autoload (quote find-variable) "find-func" "\ Find the definition of the VARIABLE near point. -Finds the Emacs Lisp library containing the definition of the variable +Finds the library containing the definition of the variable near point (selected by `variable-at-point') in a buffer and places point before the definition. @@ -10276,7 +10813,7 @@ See `find-variable' for more details. \(fn VARIABLE)" t nil) (autoload (quote find-variable-other-frame) "find-func" "\ -Find, in annother frame, the definition of VARIABLE near point. +Find, in another frame, the definition of VARIABLE near point. See `find-variable' for more details. @@ -10284,9 +10821,9 @@ See `find-variable' for more details. (autoload (quote find-definition-noselect) "find-func" "\ Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL. -TYPE says what type of definition: nil for a function, -`defvar' or `defface' for a variable or face. This function -does not switch to the buffer or display it. +TYPE says what type of definition: nil for a function, `defvar' for a +variabke, `defface' for a face. This function does not switch to the +buffer nor display it. The library where SYMBOL is defined is searched for in FILE or `find-function-source-path', if non nil, otherwise in `load-path'. @@ -10320,7 +10857,7 @@ Find directly the function at point in the other window. \(fn)" t nil) (autoload (quote find-variable-at-point) "find-func" "\ -Find directly the function at point in the other window. +Find directly the variable at point in the other window. \(fn)" t nil) @@ -10332,7 +10869,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" (17185 27434)) +;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17279 1470)) ;;; Generated autoloads from find-lisp.el (autoload (quote find-lisp-find-dired) "find-lisp" "\ @@ -10353,7 +10890,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" (17245 51608)) +;;;;;; "finder" "finder.el" (17245 60154)) ;;; Generated autoloads from finder.el (autoload (quote finder-list-keywords) "finder" "\ @@ -10397,7 +10934,7 @@ to get the effect of a C-q. ;;;*** ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" -;;;;;; (17148 25106)) +;;;;;; (17259 28124)) ;;; Generated autoloads from gnus/flow-fill.el (autoload (quote fill-flowed-encode) "flow-fill" "\ @@ -10413,7 +10950,7 @@ Not documented ;;;*** ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) -;;;;;; "flymake" "progmodes/flymake.el" (17205 6169)) +;;;;;; "flymake" "progmodes/flymake.el" (17351 27304)) ;;; Generated autoloads from progmodes/flymake.el (autoload (quote flymake-mode) "flymake" "\ @@ -10437,7 +10974,7 @@ Turn flymake mode off. ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off ;;;;;; flyspell-mode flyspell-prog-mode) "flyspell" "textmodes/flyspell.el" -;;;;;; (17249 49356)) +;;;;;; (17370 30566)) ;;; Generated autoloads from textmodes/flyspell.el (autoload (quote flyspell-prog-mode) "flyspell" "\ @@ -10568,200 +11105,6 @@ in your `~/.emacs' file, replacing [f7] by your favourite key: \(fn &optional ARG)" t nil) -;;;*** - -;;;### (autoloads (font-lock-fontify-buffer font-lock-remove-keywords -;;;;;; font-lock-add-keywords font-lock-mode-internal) "font-lock" -;;;;;; "font-lock.el" (17244 43734)) -;;; Generated autoloads from font-lock.el - -(defvar font-lock-keywords nil "\ -A list of the keywords to highlight. -There are two kinds of values: user-level, and compiled. - -A user-level keywords list is what a major mode or the user would -set up. Normally the list would come from `font-lock-defaults'. -through selection of a fontification level and evaluation of any -contained expressions. You can also alter it by calling -`font-lock-add-keywords' or `font-lock-remove-keywords' with MODE = nil. - -Each element in a user-level keywords list should have one of these forms: - - MATCHER - (MATCHER . SUBEXP) - (MATCHER . FACENAME) - (MATCHER . HIGHLIGHT) - (MATCHER HIGHLIGHT ...) - (eval . FORM) - -where MATCHER can be either the regexp to search for, or the function name to -call to make the search (called with one argument, the limit of the search; -it should return non-nil, move point, and set `match-data' appropriately iff -it succeeds; like `re-search-forward' would). -MATCHER regexps can be generated via the function `regexp-opt'. - -FORM is an expression, whose value should be a keyword element, evaluated when -the keyword is (first) used in a buffer. This feature can be used to provide a -keyword that can only be generated when Font Lock mode is actually turned on. - -HIGHLIGHT should be either MATCH-HIGHLIGHT or MATCH-ANCHORED. - -For highlighting single items, for example each instance of the word \"foo\", -typically only MATCH-HIGHLIGHT is required. -However, if an item or (typically) items are to be highlighted following the -instance of another item (the anchor), for example each instance of the -word \"bar\" following the word \"anchor\" then MATCH-ANCHORED may be required. - -MATCH-HIGHLIGHT should be of the form: - - (SUBEXP FACENAME [OVERRIDE [LAXMATCH]]) - -SUBEXP is the number of the subexpression of MATCHER to be highlighted. - -FACENAME is an expression whose value is the face name to use. -Instead of a face, FACENAME can evaluate to a property list -of the form (face FACE PROP1 VAL1 PROP2 VAL2 ...) -in which case all the listed text-properties will be set rather than -just FACE. In such a case, you will most likely want to put those -properties in `font-lock-extra-managed-props' or to override -`font-lock-unfontify-region-function'. - -OVERRIDE and LAXMATCH are flags. If OVERRIDE is t, existing fontification can -be overwritten. If `keep', only parts not already fontified are highlighted. -If `prepend' or `append', existing fontification is merged with the new, in -which the new or existing fontification, respectively, takes precedence. -If LAXMATCH is non-nil, that means don't signal an error if there is -no match for SUBEXP in MATCHER. - -For example, an element of the form highlights (if not already highlighted): - - \"\\\\\\=\" discrete occurrences of \"foo\" in the value of the - variable `font-lock-keyword-face'. - (\"fu\\\\(bar\\\\)\" . 1) substring \"bar\" within all occurrences of \"fubar\" in - the value of `font-lock-keyword-face'. - (\"fubar\" . fubar-face) Occurrences of \"fubar\" in the value of `fubar-face'. - (\"foo\\\\|bar\" 0 foo-bar-face t) - occurrences of either \"foo\" or \"bar\" in the value - of `foo-bar-face', even if already highlighted. - (fubar-match 1 fubar-face) - the first subexpression within all occurrences of - whatever the function `fubar-match' finds and matches - in the value of `fubar-face'. - -MATCH-ANCHORED should be of the form: - - (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...) - -where MATCHER is a regexp to search for or the function name to call to make -the search, as for MATCH-HIGHLIGHT above, but with one exception; see below. -PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after -the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be -used to initialize before, and cleanup after, MATCHER is used. Typically, -PRE-MATCH-FORM is used to move to some position relative to the original -MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might -be used to move back, before resuming with MATCH-ANCHORED's parent's MATCHER. - -For example, an element of the form highlights (if not already highlighted): - - (\"\\\\\\=\" (0 anchor-face) (\"\\\\\\=\" nil nil (0 item-face))) - - discrete occurrences of \"anchor\" in the value of `anchor-face', and subsequent - discrete occurrences of \"item\" (on the same line) in the value of `item-face'. - (Here PRE-MATCH-FORM and POST-MATCH-FORM are nil. Therefore \"item\" is - initially searched for starting from the end of the match of \"anchor\", and - searching for subsequent instances of \"anchor\" resumes from where searching - for \"item\" concluded.) - -The above-mentioned exception is as follows. The limit of the MATCHER search -defaults to the end of the line after PRE-MATCH-FORM is evaluated. -However, if PRE-MATCH-FORM returns a position greater than the position after -PRE-MATCH-FORM is evaluated, that position is used as the limit of the search. -It is generally a bad idea to return a position greater than the end of the -line, i.e., cause the MATCHER search to span lines. - -These regular expressions can match text which spans lines, although -it is better to avoid it if possible since updating them while editing -text is slower, and it is not guaranteed to be always correct when using -support modes like jit-lock or lazy-lock. - -This variable is set by major modes via the variable `font-lock-defaults'. -Be careful when composing regexps for this list; a poorly written pattern can -dramatically slow things down! - -A compiled keywords list starts with t. It is produced internal -by `font-lock-compile-keywords' from a user-level keywords list. -Its second element is the user-level keywords list that was -compiled. The remaining elements have the same form as -user-level keywords, but normally their values have been -optimized.") - -(autoload (quote font-lock-mode-internal) "font-lock" "\ -Not documented - -\(fn ARG)" nil nil) - -(autoload (quote font-lock-add-keywords) "font-lock" "\ -Add highlighting KEYWORDS for MODE. - -MODE should be a symbol, the major mode command name, such as `c-mode' -or nil. If nil, highlighting keywords are added for the current buffer. -KEYWORDS should be a list; see the variable `font-lock-keywords'. -By default they are added at the beginning of the current highlighting list. -If optional argument APPEND is `set', they are used to replace the current -highlighting list. If APPEND is any other non-nil value, they are added at the -end of the current highlighting list. - -For example: - - (font-lock-add-keywords 'c-mode - '((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 font-lock-warning-face prepend) - (\"\\\\\\=<\\\\(and\\\\|or\\\\|not\\\\)\\\\\\=>\" . font-lock-keyword-face))) - -adds two fontification patterns for C mode, to fontify `FIXME:' words, even in -comments, and to fontify `and', `or' and `not' words as keywords. - -The above procedure will only add the keywords for C mode, not -for modes derived from C mode. To add them for derived modes too, -pass nil for MODE and add the call to c-mode-hook. - -For example: - - (add-hook 'c-mode-hook - (lambda () - (font-lock-add-keywords nil - '((\"\\\\\\=<\\\\(FIXME\\\\):\" 1 font-lock-warning-face prepend) - (\"\\\\\\=<\\\\(and\\\\|or\\\\|not\\\\)\\\\\\=>\" . - font-lock-keyword-face))))) - -The above procedure may fail to add keywords to derived modes if -some involved major mode does not follow the standard conventions. -File a bug report if this happens, so the major mode can be corrected. - -Note that some modes have specialized support for additional patterns, e.g., -see the variables `c-font-lock-extra-types', `c++-font-lock-extra-types', -`objc-font-lock-extra-types' and `java-font-lock-extra-types'. - -\(fn MODE KEYWORDS &optional APPEND)" nil nil) - -(autoload (quote font-lock-remove-keywords) "font-lock" "\ -Remove highlighting KEYWORDS for MODE. - -MODE should be a symbol, the major mode command name, such as `c-mode' -or nil. If nil, highlighting keywords are removed for the current buffer. - -To make the removal apply to modes derived from MODE as well, -pass nil for MODE and add the call to MODE-hook. This may fail -for some derived modes if some involved major mode does not -follow the standard conventions. File a bug report if this -happens, so the major mode can be corrected. - -\(fn MODE KEYWORDS)" nil nil) - -(autoload (quote font-lock-fontify-buffer) "font-lock" "\ -Fontify the current buffer the way the function `font-lock-mode' would. - -\(fn)" t nil) - ;;;*** ;;;### (autoloads (footnote-mode) "footnote" "mail/footnote.el" (17148 @@ -10823,7 +11166,7 @@ Visit a file in Forms mode in other window. ;;;*** ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" -;;;;;; "progmodes/fortran.el" (17239 32378)) +;;;;;; "progmodes/fortran.el" (17360 50495)) ;;; Generated autoloads from progmodes/fortran.el (defvar fortran-tab-mode-default nil "\ @@ -11030,7 +11373,7 @@ default appearance of fringes on all frames, see the command ;;;*** ;;;### (autoloads (gdb-enable-debug-log gdba) "gdb-ui" "progmodes/gdb-ui.el" -;;;;;; (17247 12425)) +;;;;;; (17333 9525)) ;;; Generated autoloads from progmodes/gdb-ui.el (autoload (quote gdba) "gdb-ui" "\ @@ -11169,7 +11512,7 @@ regular expression that can be used as an element of ;;;*** ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" -;;;;;; (17196 24556)) +;;;;;; (17333 9525)) ;;; Generated autoloads from progmodes/glasses.el (autoload (quote glasses-mode) "glasses" "\ @@ -11182,7 +11525,7 @@ at places they belong to. ;;;*** ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server -;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17205 6099)) +;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17324 5849)) ;;; Generated autoloads from gnus/gnus.el (autoload (quote gnus-slave-no-server) "gnus" "\ @@ -11233,7 +11576,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" (17239 32296)) +;;;;;; "gnus/gnus-agent.el" (17324 5844)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload (quote gnus-unplugged) "gnus-agent" "\ @@ -11270,16 +11613,20 @@ Save GCC if Gnus is unplugged. \(fn)" nil nil) (autoload (quote gnus-agent-rename-group) "gnus-agent" "\ -Rename fully-qualified OLD-GROUP as NEW-GROUP. Always updates the agent, even when -disabled, as the old agent files would corrupt gnus when the agent was -next enabled. Depends upon the caller to determine whether group renaming is supported. +Rename fully-qualified OLD-GROUP as NEW-GROUP. +Always updates the agent, even when disabled, as the old agent +files would corrupt gnus when the agent was next enabled. +Depends upon the caller to determine whether group renaming is +supported. \(fn OLD-GROUP NEW-GROUP)" nil nil) (autoload (quote gnus-agent-delete-group) "gnus-agent" "\ -Delete fully-qualified GROUP. Always updates the agent, even when -disabled, as the old agent files would corrupt gnus when the agent was -next enabled. Depends upon the caller to determine whether group deletion is supported. +Delete fully-qualified GROUP. +Always updates the agent, even when disabled, as the old agent +files would corrupt gnus when the agent was next enabled. +Depends upon the caller to determine whether group deletion is +supported. \(fn GROUP)" nil nil) @@ -11320,7 +11667,7 @@ If CLEAN, obsolete (ignore). ;;;*** ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" -;;;;;; (17242 24869)) +;;;;;; (17370 3981)) ;;; Generated autoloads from gnus/gnus-art.el (autoload (quote gnus-article-prepare-display) "gnus-art" "\ @@ -11343,8 +11690,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" (17148 -;;;;;; 25111)) +;;;;;; gnus-jog-cache) "gnus-cache" "gnus/gnus-cache.el" (17305 +;;;;;; 29739)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload (quote gnus-jog-cache) "gnus-cache" "\ @@ -11366,27 +11713,29 @@ Generate NOV files recursively starting in DIR. \(fn DIR)" t nil) (autoload (quote gnus-cache-rename-group) "gnus-cache" "\ -Rename OLD-GROUP as NEW-GROUP. Always updates the cache, even when -disabled, as the old cache files would corrupt gnus when the cache was -next enabled. Depends upon the caller to determine whether group renaming is supported. +Rename OLD-GROUP as NEW-GROUP. +Always updates the cache, even when disabled, as the old cache +files would corrupt Gnus when the cache was next enabled. It +depends on the caller to determine whether group renaming is +supported. \(fn OLD-GROUP NEW-GROUP)" nil nil) (autoload (quote gnus-cache-delete-group) "gnus-cache" "\ -Delete GROUP. Always updates the cache, even when -disabled, as the old cache files would corrupt gnus when the cache was -next enabled. Depends upon the caller to determine whether group deletion is supported. +Delete GROUP from the cache. +Always updates the cache, even when disabled, as the old cache +files would corrupt gnus when the cache was next enabled. +Depends upon the caller to determine whether group deletion is +supported. \(fn GROUP)" nil nil) ;;;*** ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) -;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17148 25112)) +;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17296 17599)) ;;; Generated autoloads from gnus/gnus-delay.el -(defgroup gnus-delay nil "Arrange for sending postings later." :version "22.1" :group (quote gnus)) - (autoload (quote gnus-delay-article) "gnus-delay" "\ Delay this article by some time. DELAY is a string, giving the length of the time. Possible values are: @@ -11483,7 +11832,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" (17148 25115)) +;;;;;; "gnus-group" "gnus/gnus-group.el" (17360 50473)) ;;; Generated autoloads from gnus/gnus-group.el (autoload (quote gnus-fetch-group) "gnus-group" "\ @@ -11653,7 +12002,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" (17185 27515)) +;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17351 27285)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload (quote gnus-msg-mail) "gnus-msg" "\ @@ -11850,8 +12199,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" (17239 -;;;;;; 32303)) +;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17360 +;;;;;; 50474)) ;;; Generated autoloads from gnus/gnus-start.el (autoload (quote gnus-declare-backend) "gnus-start" "\ @@ -11904,7 +12253,7 @@ Use \\[describe-mode] for more info. ;;;*** ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" -;;;;;; "net/goto-addr.el" (17140 20941)) +;;;;;; "net/goto-addr.el" (17333 9522)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") @@ -11921,7 +12270,8 @@ there, then load the URL at or before point. Sets up goto-address functionality in the current buffer. Allows user to use mouse/keyboard command to click to go to a URL or to send e-mail. -By default, goto-address binds to mouse-2 and C-c RET. +By default, goto-address binds `goto-address-at-point' to mouse-2 and C-c RET +only on URLs and e-mail addresses. Also fontifies the buffer appropriately (see `goto-address-fontify-p' and `goto-address-highlight-p' for more information). @@ -12070,7 +12420,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** ;;;### (autoloads (gud-tooltip-mode gdb-script-mode bashdb jdb pdb -;;;;;; perldb xdb dbx sdb gdb) "gud" "progmodes/gud.el" (17247 12425)) +;;;;;; perldb xdb dbx sdb gdb) "gud" "progmodes/gud.el" (17342 22194)) ;;; Generated autoloads from progmodes/gud.el (autoload (quote gdb) "gud" "\ @@ -12343,8 +12693,9 @@ different regions. With numeric argument ARG, behaves like ;;;*** ;;;### (autoloads (describe-categories describe-syntax describe-variable -;;;;;; variable-at-point describe-function-1 help-C-file-name describe-function -;;;;;; help-with-tutorial) "help-fns" "help-fns.el" (17250 21610)) +;;;;;; 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" (17370 3962)) ;;; Generated autoloads from help-fns.el (autoload (quote help-with-tutorial) "help-fns" "\ @@ -12367,8 +12718,10 @@ KIND should be `var' for a variable or `subr' for a subroutine. \(fn SUBR-OR-VAR KIND)" nil nil) -(defface help-argument-name (quote ((((supports :slant italic)) :inherit italic))) "\ -Face to highlight argument names in *Help* buffers." :group (quote help)) +(autoload (quote describe-simplify-lib-file-name) "help-fns" "\ +Simplify a library name FILE to a relative name, and make it a source file. + +\(fn FILE)" nil nil) (autoload (quote describe-function-1) "help-fns" "\ Not documented @@ -12408,7 +12761,7 @@ BUFFER should be a buffer or a buffer name. ;;;*** ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" -;;;;;; (17148 24982)) +;;;;;; (17314 42605)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -12424,7 +12777,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" (17148 24983)) +;;;;;; help-mode) "help-mode" "help-mode.el" (17333 9514)) ;;; Generated autoloads from help-mode.el (autoload (quote help-mode) "help-mode" "\ @@ -12618,22 +12971,19 @@ 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 -;;;;;; hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" (17205 -;;;;;; 6005)) +;;;;;; global-hi-lock-mode hi-lock-mode) "hi-lock" "hi-lock.el" +;;;;;; (17379 9020)) ;;; Generated autoloads from hi-lock.el -(defvar hi-lock-mode nil "\ -Toggle hi-lock, for interactively adding font-lock text-highlighting patterns.") - -(custom-autoload (quote hi-lock-mode) "hi-lock") - (autoload (quote hi-lock-mode) "hi-lock" "\ Toggle minor mode for interactively adding font-lock highlighting patterns. -If ARG positive turn hi-lock on. Issuing a hi-lock command will also -turn hi-lock on. When hi-lock is turned on, a \"Regexp Highlighting\" -submenu is added to the \"Edit\" menu. The commands in the submenu, -which can be called interactively, are: +If ARG positive, turn hi-lock on. Issuing a hi-lock command will also +turn hi-lock on. To turn hi-lock on in all buffers use +`global-hi-lock-mode' or in your .emacs file (global-hi-lock-mode 1). +When hi-lock is turned on, a \"Regexp Highlighting\" submenu is added +to the \"Edit\" menu. The commands in the submenu, which can be +called interactively, are: \\[highlight-regexp] REGEXP FACE Highlight matches of pattern REGEXP in current buffer with FACE. @@ -12650,10 +13000,10 @@ which can be called interactively, are: Remove highlighting on matches of REGEXP in current buffer. \\[hi-lock-write-interactive-patterns] - Write active REGEXPs into buffer as comments (if possible). They will + Write active REGEXPs into buffer as comments (if possible). They will be read the next time file is loaded or when the \\[hi-lock-find-patterns] command is issued. The inserted regexps are in the form of font lock keywords. - (See `font-lock-keywords') They may be edited and re-loaded with \\[hi-lock-find-patterns], + (See `font-lock-keywords'.) They may be edited and re-loaded with \\[hi-lock-find-patterns], any valid `font-lock-keywords' form is acceptable. \\[hi-lock-find-patterns] @@ -12662,12 +13012,30 @@ which can be called interactively, are: When hi-lock is started and if the mode is not excluded, the beginning of the buffer is searched for lines of the form: Hi-lock: FOO -where FOO is a list of patterns. These are added to the font lock keywords -already present. The patterns must start before position (number -of characters into buffer) `hi-lock-file-patterns-range'. Patterns -will be read until +where FOO is a list of patterns. These are added to the font lock +keywords already present. The patterns must start before position +\(number of characters into buffer) `hi-lock-file-patterns-range'. +Patterns will be read until Hi-lock: end -is found. A mode is excluded if it's in the list `hi-lock-exclude-modes'. +is found. A mode is excluded if it's in the list `hi-lock-exclude-modes'. + +\(fn &optional ARG)" t nil) + +(defvar global-hi-lock-mode nil "\ +Non-nil if Global-Hi-Lock mode is enabled. +See the command `global-hi-lock-mode' for a description of this minor-mode. +Setting this variable directly does not take effect; +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. +Hi-Lock mode is actually not turned on in every buffer but only in those +in which `turn-on-hi-lock-if-enabled' turns it on. \(fn &optional ARG)" t nil) @@ -12679,7 +13047,7 @@ Set face of all lines containing a match of REGEXP to FACE. Interactively, prompt for REGEXP then FACE. Buffer-local history list maintained for regexps, global history maintained for faces. \\Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item. -\(See info node `Minibuffer History') +\(See info node `Minibuffer History'.) \(fn REGEXP &optional FACE)" t nil) @@ -12691,7 +13059,7 @@ Set face of each match of REGEXP to FACE. Interactively, prompt for REGEXP then FACE. Buffer-local history list maintained for regexps, global history maintained for faces. \\Use \\[next-history-element] and \\[previous-history-element] to retrieve next or previous history item. -\(See info node `Minibuffer History') +\(See info node `Minibuffer History'.) \(fn REGEXP &optional FACE)" t nil) @@ -12843,7 +13211,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" (17148 24984)) +;;;;;; "hilit-chg" "hilit-chg.el" (17379 9021)) ;;; Generated autoloads from hilit-chg.el (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ @@ -12951,7 +13319,7 @@ Turn on or off global Highlight Changes mode. When called interactively: - if no prefix, toggle global Highlight Changes mode on or off - if called with a positive prefix (or just C-u) turn it on in active mode -- if called with a zero prefix turn it on in passive mode +- if called with a zero prefix turn it on in passive mode - if called with a negative prefix turn it off When called from a program: @@ -13046,7 +13414,7 @@ argument VERBOSE non-nil makes the function verbose. ;;;*** ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" -;;;;;; (17148 24985)) +;;;;;; (17363 55566)) ;;; Generated autoloads from hl-line.el (autoload (quote hl-line-mode) "hl-line" "\ @@ -13088,7 +13456,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" -;;;;;; (17239 32269)) +;;;;;; (17306 39719)) ;;; Generated autoloads from calendar/holidays.el (autoload (quote holidays) "holidays" "\ @@ -13150,10 +13518,11 @@ Convert HTML to plain text in the current buffer. ;;;*** ;;;### (autoloads (ibuffer-do-occur ibuffer-mark-dired-buffers ibuffer-mark-read-only-buffers -;;;;;; ibuffer-mark-special-buffers ibuffer-mark-old-buffers ibuffer-mark-help-buffers -;;;;;; ibuffer-mark-dissociated-buffers ibuffer-mark-unsaved-buffers -;;;;;; ibuffer-mark-modified-buffers ibuffer-mark-by-mode ibuffer-mark-by-file-name-regexp -;;;;;; ibuffer-mark-by-mode-regexp ibuffer-mark-by-name-regexp ibuffer-copy-filename-as-kill +;;;;;; ibuffer-mark-special-buffers ibuffer-mark-old-buffers ibuffer-mark-compressed-file-buffers +;;;;;; ibuffer-mark-help-buffers ibuffer-mark-dissociated-buffers +;;;;;; ibuffer-mark-unsaved-buffers ibuffer-mark-modified-buffers +;;;;;; ibuffer-mark-by-mode ibuffer-mark-by-file-name-regexp ibuffer-mark-by-mode-regexp +;;;;;; ibuffer-mark-by-name-regexp ibuffer-copy-filename-as-kill ;;;;;; ibuffer-diff-with-file ibuffer-jump-to-buffer ibuffer-do-kill-lines ;;;;;; ibuffer-backwards-next-marked ibuffer-forward-next-marked ;;;;;; ibuffer-add-to-tmp-show ibuffer-add-to-tmp-hide ibuffer-bs-show @@ -13170,7 +13539,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" (17239 32209)) +;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17379 9021)) ;;; Generated autoloads from ibuf-ext.el (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ @@ -13501,6 +13870,11 @@ Mark buffers like *Help*, *Apropos*, *Info*. \(fn)" t nil) +(autoload (quote ibuffer-mark-compressed-file-buffers) "ibuf-ext" "\ +Mark buffers whose associated file is compressed. + +\(fn)" t nil) + (autoload (quote ibuffer-mark-old-buffers) "ibuf-ext" "\ Mark buffers which have not been viewed in `ibuffer-old-time' days. @@ -13618,7 +13992,7 @@ bound to the current value of the filter. ;;;*** ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) -;;;;;; "ibuffer" "ibuffer.el" (17167 2779)) +;;;;;; "ibuffer" "ibuffer.el" (17379 9022)) ;;; Generated autoloads from ibuffer.el (autoload (quote ibuffer-list-buffers) "ibuffer" "\ @@ -13733,7 +14107,7 @@ With a numeric argument, turn Icomplete mode on iff ARG is positive. ;;;*** -;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17140 20972)) +;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17279 1518)) ;;; Generated autoloads from progmodes/icon.el (autoload (quote icon-mode) "icon" "\ @@ -13774,7 +14148,7 @@ with no args, if that value is non-nil. ;;;*** ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" -;;;;;; (17239 32385)) +;;;;;; (17299 17751)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload (quote idlwave-shell) "idlw-shell" "\ @@ -13800,7 +14174,7 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" -;;;;;; (17205 6190)) +;;;;;; (17279 1521)) ;;; Generated autoloads from progmodes/idlwave.el (autoload (quote idlwave-mode) "idlwave" "\ @@ -13936,8 +14310,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" (17239 -;;;;;; 32211)) +;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17305 +;;;;;; 29723)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -13976,7 +14350,7 @@ As you type in a string, all of the buffers matching the string are displayed if substring-matching is used (default). Look at `ido-enable-prefix' and `ido-toggle-prefix'. When you have found the buffer you want, it can then be selected. As you type, most keys have -their normal keybindings, except for the following: \\ +their normal keybindings, except for the following: \\ RET Select the buffer at the front of the list of matches. If the list is empty, possibly prompt to create new buffer. @@ -14053,7 +14427,7 @@ type in a string, all of the filenames matching the string are displayed if substring-matching is used (default). Look at `ido-enable-prefix' and `ido-toggle-prefix'. When you have found the filename you want, it can then be selected. As you type, most keys have their normal keybindings, -except for the following: \\ +except for the following: \\ RET Select the file at the front of the list of matches. If the list is empty, possibly prompt to create new file. @@ -14072,7 +14446,7 @@ in a separate window. \\[ido-merge-work-directories] search for file in the work directory history. \\[ido-forget-work-directory] removes current directory from the work directory history. \\[ido-prev-work-file] or \\[ido-next-work-file] cycle through the work file history. -\\[ido-wide-find-file] and \\[ido-wide-find-dir] prompts and uses find to locate files or directories. +\\[ido-wide-find-file-or-pop-dir] and \\[ido-wide-find-dir-or-delete-dir] prompts and uses find to locate files or directories. \\[ido-make-directory] prompts for a directory to create in current directory. \\[ido-fallback-command] Fallback to non-ido version of current command. \\[ido-toggle-regexp] Toggle regexp searching. @@ -14229,7 +14603,7 @@ Toggle inline image minor mode. ;;;### (autoloads (defimage find-image remove-images insert-sliced-image ;;;;;; insert-image put-image create-image image-type-available-p ;;;;;; image-type-from-file-name image-type-from-file-header image-type-from-buffer -;;;;;; image-type-from-data) "image" "image.el" (17245 4868)) +;;;;;; image-type-from-data) "image" "image.el" (17245 60154)) ;;; Generated autoloads from image.el (autoload (quote image-type-from-data) "image" "\ @@ -14443,7 +14817,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" (17205 6006)) +;;;;;; "image-mode" "image-mode.el" (17379 9022)) ;;; Generated autoloads from image-mode.el (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) (push '("\\.png\\'" . image-mode) auto-mode-alist) @@ -14601,11 +14975,11 @@ 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" (17102 18773)) +;;;;;; "ind-util" "language/ind-util.el" (17340 722)) ;;; Generated autoloads from language/ind-util.el (autoload (quote indian-compose-region) "ind-util" "\ -Compose the region according to `composition-function-table'. +Compose the region according to `composition-function-table'. \(fn FROM TO)" t nil) @@ -14710,22 +15084,22 @@ 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-standalone info-emacs-manual info info-other-window) -;;;;;; "info" "info.el" (17248 29269)) +;;;;;; Info-directory Info-on-current-buffer info-standalone info-emacs-manual +;;;;;; info info-other-window) "info" "info.el" (17370 3964)) ;;; Generated autoloads from info.el (autoload (quote info-other-window) "info" "\ Like `info' but show the Info buffer in another window. -\(fn &optional FILE)" t nil) +\(fn &optional FILE-OR-NODE)" t nil) (add-hook 'same-window-regexps "\\*info\\*\\(\\|<[0-9]+>\\)") (put 'info 'info-file "emacs") (autoload (quote info) "info" "\ Enter Info, the documentation browser. -Optional argument FILE specifies the file to examine; +Optional argument FILE-OR-NODE specifies the file to examine; the default is the top-level directory of Info. -Called from a program, FILE may specify an Info node of the form +Called from a program, FILE-OR-NODE may specify an Info node of the form `(FILENAME)NODENAME'. Optional argument BUFFER specifies the Info buffer name; the default buffer name is *info*. If BUFFER exists, @@ -14741,7 +15115,7 @@ The search path for Info files is in the variable `Info-directory-list'. The top-level Info directory is made by combining all the files named `dir' in all the directories in that path. -\(fn &optional FILE BUFFER)" t nil) +\(fn &optional FILE-OR-NODE BUFFER)" t nil) (autoload (quote info-emacs-manual) "info" "\ Display the Emacs manual in Info mode. @@ -14755,6 +15129,13 @@ In standalone mode, \\\\[Info-exit] exits Emacs itself. \(fn)" nil nil) +(autoload (quote Info-on-current-buffer) "info" "\ +Use Info mode to browse the current Info buffer. +With a prefix arg, this queries for the node name to visit first; +otherwise, that defaults to `Top'. + +\(fn &optional NODENAME)" t nil) + (autoload (quote Info-directory) "info" "\ Go to the Info directory node. @@ -15151,7 +15532,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" -;;;;;; (17244 43761)) +;;;;;; (17370 30854)) ;;; Generated autoloads from textmodes/ispell.el (defvar ispell-personal-dictionary nil "\ @@ -15175,11 +15556,11 @@ re-start emacs.") (setq ispell-dictionary-alist-2 (quote (("czech" "[A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "[^A-Za-z\301\311\314\315\323\332\331\335\256\251\310\330\317\253\322\341\351\354\355\363\372\371\375\276\271\350\370\357\273\362]" "" nil ("-B") nil iso-8859-2) ("dansk" "[A-Z\306\330\305a-z\346\370\345]" "[^A-Z\306\330\305a-z\346\370\345]" "[']" nil ("-C") nil iso-8859-1) ("deutsch" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("deutsch8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "deutsch") "~latin1" iso-8859-1) ("english" "[A-Za-z]" "[^A-Za-z]" "[']" nil ("-B") nil iso-8859-1)))) -(setq ispell-dictionary-alist-3 (quote (("esperanto" "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[-']" t ("-C") "~latin3" iso-8859-1) ("esperanto-tex" "[A-Za-z^\\]" "[^A-Za-z^\\]" "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-1) ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil iso-8859-1) ("francais" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[-']" t nil "~list" iso-8859-1) ("francais-tex" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[-'^`\"]" t nil "~tex" iso-8859-1)))) +(setq ispell-dictionary-alist-3 (quote (("esperanto" "[A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[^A-Za-z\246\254\266\274\306\330\335\336\346\370\375\376]" "[-']" t ("-C") "~latin3" iso-8859-1) ("esperanto-tex" "[A-Za-z^\\]" "[^A-Za-z^\\]" "[-'`\"]" t ("-C" "-d" "esperanto") "~tex" iso-8859-1) ("francais7" "[A-Za-z]" "[^A-Za-z]" "[`'^---]" t nil nil iso-8859-1) ("francais" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374]" "[-'.@]" t nil "~list" iso-8859-1) ("francais-tex" "[A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[^A-Za-z\300\302\306\307\310\311\312\313\316\317\324\331\333\334\340\342\347\350\351\352\353\356\357\364\371\373\374\\]" "[-'^`\".@]" t nil "~tex" iso-8859-1)))) -(setq ispell-dictionary-alist-4 (quote (("german" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("german8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1) ("italiano" "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[-]" nil ("-B" "-d" "italian") "~tex" iso-8859-1) ("nederlands" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("nederlands8" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1)))) +(setq ispell-dictionary-alist-4 (quote (("german" "[a-zA-Z\"]" "[^a-zA-Z\"]" "[']" t ("-C") "~tex" iso-8859-1) ("german8" "[a-zA-Z\304\326\334\344\366\337\374]" "[^a-zA-Z\304\326\334\344\366\337\374]" "[']" t ("-C" "-d" "german") "~latin1" iso-8859-1) ("italiano" "[A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[^A-Z\300\301\310\311\314\315\322\323\331\332a-z\340\341\350\351\354\355\363\371\372]" "[-.]" nil ("-B" "-d" "italian") "~tex" iso-8859-1) ("nederlands" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1) ("nederlands8" "[A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[^A-Za-z\300\301\302\303\304\305\307\310\311\312\313\314\315\316\317\322\323\324\325\326\331\332\333\334\340\341\342\343\344\345\347\350\351\352\353\354\355\356\357\361\362\363\364\365\366\371\372\373\374]" "[']" t ("-C") nil iso-8859-1)))) -(setq ispell-dictionary-alist-5 (quote (("norsk" "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[\"]" nil nil "~list" iso-8859-1) ("norsk7-tex" "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]" "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1) ("polish" "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "" nil nil nil iso-8859-2) ("portugues" "[a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[^a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[']" t ("-C") "~latin1" iso-8859-1)))) +(setq ispell-dictionary-alist-5 (quote (("norsk" "[A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[^A-Za-z\305\306\307\310\311\322\324\330\345\346\347\350\351\362\364\370]" "[\"]" nil nil "~list" iso-8859-1) ("norsk7-tex" "[A-Za-z{}\\'^`]" "[^A-Za-z{}\\'^`]" "[\"]" nil ("-d" "norsk") "~plaintex" iso-8859-1) ("polish" "[A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "[^A-Za-z\241\243\246\254\257\261\263\266\274\277\306\312\321\323\346\352\361\363]" "." nil nil nil iso-8859-2) ("portugues" "[a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[^a-zA-Z\301\302\311\323\340\341\342\351\352\355\363\343\372]" "[']" t ("-C") "~latin1" iso-8859-1)))) (setq ispell-dictionary-alist-6 (quote (("russian" "[\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "[^\341\342\367\347\344\345\263\366\372\351\352\353\354\355\356\357\360\362\363\364\365\346\350\343\376\373\375\370\371\377\374\340\361\301\302\327\307\304\305\243\326\332\311\312\313\314\315\316\317\320\322\323\324\325\306\310\303\336\333\335\330\331\337\334\300\321]" "" nil nil nil koi8-r) ("russianw" "[\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "[^\300\301\302\303\304\305\250\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\334\333\332\335\336\337\340\341\342\343\344\345\270\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\374\373\372\375\376\377]" "" nil nil nil windows-1251) ("slovak" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B") nil iso-8859-2) ("slovenian" "[A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "[^A-Za-z\301\304\311\315\323\332\324\300\305\245\335\256\251\310\317\253\322\341\344\351\355\363\372\364\340\345\265\375\276\271\350\357\273\362]" "" nil ("-B" "-d" "slovenian") nil iso-8859-2) ("svenska" "[A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[^A-Za-z\345\344\366\351\340\374\350\346\370\347\305\304\326\311\300\334\310\306\330\307]" "[']" nil ("-C") "~list" iso-8859-1)))) @@ -15437,8 +15818,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to ;;;*** -;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17239 -;;;;;; 32217)) +;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17360 +;;;;;; 50461)) ;;; Generated autoloads from iswitchb.el (defvar iswitchb-mode nil "\ @@ -15539,24 +15920,10 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. \(fn PROMPT &optional INITIAL-INPUT)" nil nil) -;;;*** - -;;;### (autoloads (jit-lock-register) "jit-lock" "jit-lock.el" (17246 -;;;;;; 24773)) -;;; Generated autoloads from jit-lock.el - -(autoload (quote jit-lock-register) "jit-lock" "\ -Register FUN as a fontification function to be called in this buffer. -FUN will be called with two arguments START and END indicating the region -that needs to be (re)fontified. -If non-nil, CONTEXTUAL means that a contextual fontification would be useful. - -\(fn FUN &optional CONTEXTUAL)" nil nil) - ;;;*** ;;;### (autoloads (jka-compr-uninstall jka-compr-handler) "jka-compr" -;;;;;; "jka-compr.el" (17148 24997)) +;;;;;; "jka-compr.el" (17279 1475)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -15637,7 +16004,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' ;;;*** ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" -;;;;;; (17102 18716)) +;;;;;; (17305 29743)) ;;; Generated autoloads from international/kinsoku.el (autoload (quote kinsoku) "kinsoku" "\ @@ -15913,11 +16280,12 @@ 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" (17102 18717)) +;;;;;; "latexenc" "international/latexenc.el" (17370 29947)) ;;; 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))) "\ -Mapping from encoding names used by LaTeX's \"inputenc.sty\" to Emacs coding systems. +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") @@ -16056,10 +16424,12 @@ Unconditionally turn on Lazy Lock mode. ;;;*** ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" -;;;;;; (17159 1485)) +;;;;;; (17352 559)) ;;; Generated autoloads from progmodes/ld-script.el -(add-to-list (quote auto-mode-alist) (quote ("\\.lds" . ld-script-mode))) +(add-to-list (quote auto-mode-alist) (quote ("\\.ld[si]?\\>" . ld-script-mode))) + +(add-to-list (quote auto-mode-alist) (quote ("\\.x[bdsru]?[cn]?\\'" . ld-script-mode))) (autoload (quote ld-script-mode) "ld-script" "\ A major mode to edit GNU ld script files @@ -16140,7 +16510,7 @@ such as redefining an Emacs function. ;;;*** ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) -;;;;;; "locate" "locate.el" (17244 43734)) +;;;;;; "locate" "locate.el" (17333 9514)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches "-al" "\ @@ -16165,7 +16535,7 @@ shown; this is often useful to constrain a big search. ;;;*** -;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17239 32218)) +;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17296 17586)) ;;; Generated autoloads from log-edit.el (autoload (quote log-edit) "log-edit" "\ @@ -16186,8 +16556,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" (17185 -;;;;;; 27447)) +;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17370 +;;;;;; 3964)) ;;; Generated autoloads from log-view.el (autoload (quote log-view-mode) "log-view" "\ @@ -16197,8 +16567,8 @@ Major mode for browsing CVS log output. ;;;*** -;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17248 -;;;;;; 29269)) +;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17324 +;;;;;; 5836)) ;;; Generated autoloads from longlines.el (autoload (quote longlines-mode) "longlines" "\ @@ -16314,7 +16684,7 @@ for further customization of the printer command. ;;;*** ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" -;;;;;; (17148 25015)) +;;;;;; (17288 11724)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -16325,8 +16695,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** -;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17167 -;;;;;; 2792)) +;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17306 +;;;;;; 39720)) ;;; Generated autoloads from calendar/lunar.el (autoload (quote phases-of-moon) "lunar" "\ @@ -16339,8 +16709,8 @@ This function is suitable for execution in a .emacs file. ;;;*** -;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17140 -;;;;;; 20977)) +;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17279 +;;;;;; 1521)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload (quote m4-mode) "m4-mode" "\ @@ -16455,14 +16825,15 @@ and then select the region of un-tablified names and use ;;;*** ;;;### (autoloads (what-domain mail-extract-address-components) "mail-extr" -;;;;;; "mail/mail-extr.el" (17148 25155)) +;;;;;; "mail/mail-extr.el" (17305 54216)) ;;; Generated autoloads from mail/mail-extr.el (autoload (quote mail-extract-address-components) "mail-extr" "\ Given an RFC-822 address ADDRESS, extract full name and canonical address. -Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). -If no name can be extracted, FULL-NAME will be nil. Also see -`mail-extr-ignore-single-names' and `mail-extr-ignore-realname-equals-mailbox-name'. +Returns a list of the form (FULL-NAME CANONICAL-ADDRESS). If no +name can be extracted, FULL-NAME will be nil. Also see +`mail-extr-ignore-single-names' and +`mail-extr-ignore-realname-equals-mailbox-name'. If the optional argument ALL is non-nil, then ADDRESS can contain zero or more recipients, separated by commas, and we return a list of @@ -16640,7 +17011,7 @@ current header, calls `mail-complete-function' and passes prefix arg if any. ;;;*** ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" -;;;;;; (17239 32330)) +;;;;;; (17379 9044)) ;;; Generated autoloads from mail/mailclient.el (autoload (quote mailclient-send-it) "mailclient" "\ @@ -16652,9 +17023,9 @@ The mail client is taken to be the handler of mailto URLs. ;;;*** -;;;### (autoloads (makefile-bsdmake-mode makefile-makepp-mode makefile-gmake-mode -;;;;;; makefile-automake-mode makefile-mode) "make-mode" "progmodes/make-mode.el" -;;;;;; (17239 32386)) +;;;### (autoloads (makefile-imake-mode makefile-bsdmake-mode makefile-makepp-mode +;;;;;; makefile-gmake-mode makefile-automake-mode makefile-mode) +;;;;;; "make-mode" "progmodes/make-mode.el" (17360 50495)) ;;; Generated autoloads from progmodes/make-mode.el (autoload (quote makefile-mode) "make-mode" "\ @@ -16662,7 +17033,8 @@ Major mode for editing standard Makefiles. If you are editing a file for a different make, try one of the variants `makefile-automake-mode', `makefile-gmake-mode', -`makefile-makepp-mode' or `makefile-bsdmake-mode'. All but the +`makefile-makepp-mode', `makefile-bsdmake-mode' or, +`makefile-imake-mode'All but the last should be correctly chosen based on the file name, except if it is *.mk. This function ends by invoking the function(s) `makefile-mode-hook'. @@ -16764,6 +17136,11 @@ An adapted `makefile-mode' that knows about BSD make. \(fn)" t nil) +(autoload (quote makefile-imake-mode) "make-mode" "\ +An adapted `makefile-mode' that knows about imake. + +\(fn)" t nil) + ;;;*** ;;;### (autoloads (make-command-summary) "makesum" "makesum.el" (17148 @@ -16778,7 +17155,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads (man-follow man) "man" "man.el" (17239 32219)) +;;;### (autoloads (man-follow man) "man" "man.el" (17360 50462)) ;;; Generated autoloads from man.el (defalias (quote manual-entry) (quote man)) @@ -16827,8 +17204,8 @@ yourself the value of `master-of' by calling `master-show-slave'. ;;;*** -;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17246 -;;;;;; 34622)) +;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17324 +;;;;;; 5836)) ;;; Generated autoloads from menu-bar.el (put (quote menu-bar-mode) (quote standard-value) (quote (t))) @@ -16864,7 +17241,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" (17242 24871)) +;;;;;; "gnus/message.el" (17379 9043)) ;;; Generated autoloads from gnus/message.el (defvar message-from-style (quote default) "\ @@ -17118,7 +17495,7 @@ which specify the range to operate on. ;;;*** ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" -;;;;;; (17239 32386)) +;;;;;; (17279 1522)) ;;; Generated autoloads from progmodes/meta-mode.el (autoload (quote metafont-mode) "meta-mode" "\ @@ -17188,167 +17565,184 @@ redisplayed as output is inserted. ;;;*** -;;;### (autoloads (mh-letter-mode mh-smail-other-window mh-user-agent-compose -;;;;;; mh-smail-batch mh-smail) "mh-comp" "mh-e/mh-comp.el" (17249 -;;;;;; 49352)) +;;;### (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" (17379 9046)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload (quote mh-smail) "mh-comp" "\ -Compose and send mail with the MH mail system. -This function is an entry point to MH-E, the Emacs interface to the MH mail -system. +Compose a message with the MH mail system. +See `mh-send' for more details on composing mail. +\(fn)" t nil) + +(autoload (quote mh-smail-other-window) "mh-comp" "\ +Compose a message with the MH mail system in other window. See `mh-send' for more details on composing mail. \(fn)" t nil) (autoload (quote mh-smail-batch) "mh-comp" "\ -Set up a mail composition draft with the MH mail system. -This function is an entry point to MH-E, the Emacs interface to the MH mail -system. This function does not prompt the user for any header fields, and thus -is suitable for use by programs that want to create a mail buffer. Users -should use `mh-smail' to compose mail. +Compose a message with the MH mail system. -Optional arguments for setting certain fields include TO, SUBJECT, and -OTHER-HEADERS. Additional arguments are IGNORED. +This function does not prompt the user for any header fields, and +thus is suitable for use by programs that want to create a mail +buffer. Users should use \\[mh-smail] to compose mail. + +Optional arguments for setting certain fields include TO, +SUBJECT, and OTHER-HEADERS. Additional arguments are IGNORED. + +This function remains for Emacs 21 compatibility. New +applications should use `mh-user-agent-compose'. \(fn &optional TO SUBJECT OTHER-HEADERS &rest IGNORED)" nil nil) +(define-mail-user-agent (quote mh-e-user-agent) (quote mh-user-agent-compose) (quote mh-send-letter) (quote mh-fully-kill-draft) (quote mh-before-send-letter-hook)) + (autoload (quote mh-user-agent-compose) "mh-comp" "\ Set up mail composition draft with the MH mail system. -This is `mail-user-agent' entry point to MH-E. +This is the `mail-user-agent' entry point to MH-E. This function +conforms to the contract specified by `define-mail-user-agent' +which means that this function should accept the same arguments +as `compose-mail'. The optional arguments TO and SUBJECT specify recipients and the initial Subject field, respectively. -OTHER-HEADERS is an alist specifying additional -header fields. Elements look like (HEADER . VALUE) where both -HEADER and VALUE are strings. +OTHER-HEADERS is an alist specifying additional header fields. +Elements look like (HEADER . VALUE) where both HEADER and VALUE +are strings. -CONTINUE, SWITCH-FUNCTION, YANK-ACTION and SEND-ACTIONS are ignored. +CONTINUE, SWITCH-FUNCTION, YANK-ACTION and SEND-ACTIONS are +ignored. \(fn &optional TO SUBJECT OTHER-HEADERS CONTINUE SWITCH-FUNCTION YANK-ACTION SEND-ACTIONS)" nil nil) -(autoload (quote mh-smail-other-window) "mh-comp" "\ -Compose and send mail in other window with the MH mail system. -This function is an entry point to MH-E, the Emacs interface to the MH mail -system. +(autoload (quote mh-send-letter) "mh-comp" "\ +Save draft and send message. -See `mh-send' for more details on composing mail. +When you are all through editing a message, you send it with this +command. You can give a prefix argument ARG to monitor the first stage +of the delivery; this output can be found in a buffer called \"*MH-E +Mail Delivery*\". -\(fn)" t nil) +The hook `mh-before-send-letter-hook' is run at the beginning of +this command. For example, if you want to check your spelling in +your message before sending, add the function `ispell-message'. -(autoload (quote mh-letter-mode) "mh-comp" "\ -Mode for composing letters in MH-E.\\ +In case the MH \"send\" program is installed under a different name, +use `mh-send-prog' to tell MH-E the name. -When you have finished composing, type \\[mh-send-letter] to send the message -using the MH mail handling system. +\(fn &optional ARG)" t nil) -There are two types of tags used by MH-E when composing MIME messages: MML and -MH. The option `mh-compose-insertion' controls what type of tags are inserted -by MH-E commands. These tags can be converted to MIME body parts by running -\\[mh-mh-to-mime] for MH-style directives or \\[mh-mml-to-mime] for MML tags. +(autoload (quote mh-fully-kill-draft) "mh-comp" "\ +Quit editing and delete draft message. -Options that control this mode can be changed with \\[customize-group]; -specify the \"mh-compose\" group. - -When a message is composed, the hooks `text-mode-hook' and -`mh-letter-mode-hook' are run. - -\\{mh-letter-mode-map} +If for some reason you are not happy with the draft, you can use +this command to kill the draft buffer and delete the draft +message. Use the command \\[kill-buffer] if you don't want to +delete the draft message. \(fn)" t nil) ;;;*** -;;;### (autoloads (mh-folder-mode mh-version mh-nmail mh-rmail) "mh-e" -;;;;;; "mh-e/mh-e.el" (17249 49352)) +;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17380 37607)) ;;; Generated autoloads from mh-e/mh-e.el -(autoload (quote mh-rmail) "mh-e" "\ -Inc(orporate) new mail with MH. -Scan an MH folder if ARG is non-nil. This function is an entry point to MH-E, -the Emacs interface to the MH mail system. - -\(fn &optional ARG)" t nil) - -(autoload (quote mh-nmail) "mh-e" "\ -Check for new mail in inbox folder. -Scan an MH folder if ARG is non-nil. This function is an entry point to MH-E, -the Emacs interface to the MH mail system. - -\(fn &optional ARG)" t nil) - -(autoload (quote mh-version) "mh-e" "\ -Display version information about MH-E and the MH mail handling system. - -\(fn)" t nil) - -(autoload (quote mh-folder-mode) "mh-e" "\ -Major MH-E mode for \"editing\" an MH folder scan listing.\\ - -You can show the message the cursor is pointing to, and step through the -messages. Messages can be marked for deletion or refiling into another -folder; these commands are executed all at once with a separate command. - -Options that control this mode can be changed with \\[customize-group]; -specify the \"mh\" group. In particular, please see the `mh-scan-format-file' -option if you wish to modify scan's format. - -When a folder is visited, the hook `mh-folder-mode-hook' is run. - -Ranges -====== -Many commands that operate on individual messages, such as `mh-forward' or -`mh-refile-msg' take a RANGE argument. This argument can be used in several -ways. - -If you provide the prefix argument (\\[universal-argument]) to these commands, -then you will be prompted for the message range. This can be any valid MH -range which can include messages, sequences, and the abbreviations (described -in the mh(1) man page): - -- - Indicates all messages in the range to , inclusive. The range - must be nonempty. - -`:N' -`:+N' -`:-N' - Up to N messages beginning with (or ending with) message num. Num may be - any of the pre-defined symbols: first, prev, cur, next or last. - -`first:N' -`prev:N' -`next:N' -`last:N' - The first, previous, next or last messages, if they exist. - -`all' - All of the messages. - -For example, a range that shows all of these things is `1 2 3 5-10 last:5 -unseen'. - -If the option `transient-mark-mode' is set to t and you set a region in the -MH-Folder buffer, then the MH-E command will perform the operation on all -messages in that region. - -\\{mh-folder-mode-map} - -\(fn)" t nil) - -;;;*** - -;;;### (autoloads nil "mh-init" "mh-e/mh-init.el" (17239 32348)) -;;; Generated autoloads from mh-e/mh-init.el - (put (quote mh-progs) (quote risky-local-variable) t) (put (quote mh-lib) (quote risky-local-variable) t) (put (quote mh-lib-progs) (quote risky-local-variable) t) +(autoload (quote mh-version) "mh-e" "\ +Display version information about MH-E and the MH mail handling system. + +\(fn)" t nil) + +;;;*** + +;;;### (autoloads (mh-folder-mode mh-nmail mh-rmail) "mh-folder" +;;;;;; "mh-e/mh-folder.el" (17377 17201)) +;;; Generated autoloads from mh-e/mh-folder.el + +(autoload (quote mh-rmail) "mh-folder" "\ +Incorporate new mail with MH. +Scan an MH folder if ARG is non-nil. + +This function is an entry point to MH-E, the Emacs interface to +the MH mail system. + +\(fn &optional ARG)" t nil) + +(autoload (quote mh-nmail) "mh-folder" "\ +Check for new mail in inbox folder. +Scan an MH folder if ARG is non-nil. + +This function is an entry point to MH-E, the Emacs interface to +the MH mail system. + +\(fn &optional ARG)" t nil) + +(autoload (quote mh-folder-mode) "mh-folder" "\ +Major MH-E mode for \"editing\" an MH folder scan listing.\\ + +You can show the message the cursor is pointing to, and step through +the messages. Messages can be marked for deletion or refiling into +another folder; these commands are executed all at once with a +separate command. + +Options that control this mode can be changed with +\\[customize-group]; specify the \"mh\" group. In particular, please +see the `mh-scan-format-file' option if you wish to modify scan's +format. + +When a folder is visited, the hook `mh-folder-mode-hook' is run. + +Ranges +====== +Many commands that operate on individual messages, such as +`mh-forward' or `mh-refile-msg' take a RANGE argument. This argument +can be used in several ways. + +If you provide the prefix argument (\\[universal-argument]) to +these commands, then you will be prompted for the message range. +This can be any valid MH range which can include messages, +sequences, and the abbreviations (described in the mh(1) man +page): + +- + Indicates all messages in the range to , inclusive. + The range must be nonempty. + +:N +:+N +:-N + Up to N messages beginning with (or ending with) message num. Num + may be any of the predefined symbols: first, prev, cur, next or + last. + +first:N +prev:N +next:N +last:N + The first, previous, next or last messages, if they exist. + +all + All of the messages. + +For example, a range that shows all of these things is `1 2 3 +5-10 last:5 unseen'. + +If the option `transient-mark-mode' is set to t and you set a +region in the MH-Folder buffer, then the MH-E command will +perform the operation on all messages in that region. + +\\{mh-folder-mode-map} + +\(fn)" t nil) + ;;;*** ;;;### (autoloads (midnight-delay-set clean-buffer-list) "midnight" @@ -17423,7 +17817,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" -;;;;;; (17102 18776)) +;;;;;; (17340 722)) ;;; Generated autoloads from language/mlm-util.el (autoload (quote malayalam-compose-region) "mlm-util" "\ @@ -17438,7 +17832,7 @@ Not documented (autoload (quote malayalam-composition-function) "mlm-util" "\ Compose Malayalam characters in REGION, or STRING if specified. -Assume that the REGION or STRING must fully match the composable +Assume that the REGION or STRING must fully match the composable PATTERN regexp. \(fn FROM TO PATTERN &optional STRING)" nil nil) @@ -17474,7 +17868,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" (17239 32315)) +;;;;;; "mm-url" "gnus/mm-url.el" (17314 42614)) ;;; Generated autoloads from gnus/mm-url.el (autoload (quote mm-url-insert-file-contents) "mm-url" "\ @@ -17490,14 +17884,23 @@ Insert file contents of URL using `mm-url-program'. ;;;*** -;;;### (autoloads (mm-uu-dissect) "mm-uu" "gnus/mm-uu.el" (17239 -;;;;;; 32316)) +;;;### (autoloads (mm-uu-dissect-text-parts mm-uu-dissect) "mm-uu" +;;;;;; "gnus/mm-uu.el" (17379 9044)) ;;; Generated autoloads from gnus/mm-uu.el (autoload (quote mm-uu-dissect) "mm-uu" "\ Dissect the current buffer and return a list of uu handles. +The optional NOHEADER means there's no header in the buffer. +MIME-TYPE specifies a MIME type and parameters, which defaults to the +value of `mm-uu-text-plain-type'. -\(fn)" nil nil) +\(fn &optional NOHEADER MIME-TYPE)" nil nil) + +(autoload (quote mm-uu-dissect-text-parts) "mm-uu" "\ +Dissect text parts and put uu handles into HANDLE. +Assume text has been decoded if DECODED is non-nil. + +\(fn HANDLE &optional DECODED)" nil nil) ;;;*** @@ -17560,7 +17963,7 @@ Not documented ;;;*** ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" -;;;;;; (17075 55530)) +;;;;;; (17279 1522)) ;;; Generated autoloads from progmodes/modula2.el (autoload (quote modula-2-mode) "modula2" "\ @@ -18001,7 +18404,7 @@ basis, this may not be accurate. ;;;*** ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" -;;;;;; (17148 25020)) +;;;;;; (17259 28110)) ;;; Generated autoloads from mwheel.el (defvar mouse-wheel-mode nil "\ @@ -18127,7 +18530,7 @@ Open a network connection to HOST on PORT. ;;;;;; 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" -;;;;;; (17148 25021)) +;;;;;; (17380 37601)) ;;; Generated autoloads from newcomment.el (defalias (quote indent-for-comment) (quote comment-indent)) @@ -18146,7 +18549,7 @@ to understand comments or not in the given buffer. Major modes should set this variable.") (defvar comment-column 32 "\ -*Column to indent right-margin comments to. +Column to indent right-margin comments to. Each mode establishes a different default value for this variable; you 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 @@ -18184,7 +18587,7 @@ Applicable at least in modes for languages like fixed-format Fortran where comments always start in column zero.") (defvar comment-style (quote plain) "\ -*Style to be used for `comment-region'. +Style to be used for `comment-region'. See `comment-styles' for a list of available styles.") (custom-autoload (quote comment-style) "newcomment") @@ -18200,7 +18603,7 @@ makes the comment easier to read. Default is 1. nil means 0.") (custom-autoload (quote comment-padding) "newcomment") (defvar comment-multi-line nil "\ -*Non-nil means `comment-indent-new-line' continues comments. +Non-nil means `comment-indent-new-line' continues comments. That is, it inserts no new terminator or starter. This affects `auto-fill-mode', which is the main reason to customize this variable. @@ -18280,6 +18683,7 @@ If the region is active and `transient-mark-mode' is on, call Else, if the current line is empty, insert a comment and indent it. Else if a prefix ARG is specified, call `comment-kill'. Else, call `comment-indent'. +You can configure `comment-style' to change the way regions are commented. \(fn ARG)" t nil) @@ -18308,10 +18712,26 @@ unless optional argument SOFT is non-nil. ;;;*** -;;;### (autoloads (newsticker-show-news newsticker-start) "newsticker" -;;;;;; "net/newsticker.el" (17239 32359)) +;;;### (autoloads (newsticker-show-news newsticker-start-ticker newsticker-start +;;;;;; newsticker-ticker-running-p newsticker-running-p) "newsticker" +;;;;;; "net/newsticker.el" (17379 9054)) ;;; Generated autoloads from net/newsticker.el +(autoload (quote newsticker-running-p) "newsticker" "\ +Check whether newsticker is running. +Return t if newsticker is running, nil otherwise. Newsticker is +considered to be running if the newsticker timer list is not empty. + +\(fn)" nil nil) + +(autoload (quote newsticker-ticker-running-p) "newsticker" "\ +Check whether newsticker's actual ticker is running. +Return t if ticker is running, nil otherwise. Newsticker is +considered to be running if the newsticker timer list is not +empty. + +\(fn)" nil nil) + (autoload (quote newsticker-start) "newsticker" "\ Start the newsticker. Start the timers for display and retrieval. If the newsticker, i.e. the @@ -18321,6 +18741,13 @@ Run `newsticker-start-hook' if newsticker was not running already. \(fn &optional DO-NOT-COMPLAIN-IF-RUNNING)" t nil) +(autoload (quote newsticker-start-ticker) "newsticker" "\ +Start newsticker's ticker (but not the news retrieval). +Start display timer for the actual ticker if wanted and not +running already. + +\(fn)" t nil) + (autoload (quote newsticker-show-news) "newsticker" "\ Switch to newsticker buffer. You may want to bind this to a key. @@ -18444,7 +18871,7 @@ to future sessions. ;;;*** ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" -;;;;;; (17148 25209)) +;;;;;; (17380 37608)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload (quote nroff-mode) "nroff-mode" "\ @@ -18473,7 +18900,7 @@ If KEY is not a string, prompt for it with completion. ;;;*** ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" -;;;;;; (17186 62981)) +;;;;;; (17288 15866)) ;;; Generated autoloads from progmodes/octave-inf.el (autoload (quote inferior-octave) "octave-inf" "\ @@ -18496,7 +18923,7 @@ startup file, `~/.emacs-octave'. ;;;*** ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" -;;;;;; (17239 32387)) +;;;;;; (17306 44350)) ;;; Generated autoloads from progmodes/octave-mod.el (autoload (quote octave-mode) "octave-mod" "\ @@ -18618,13 +19045,14 @@ The Custom feature is intended to make this obsolete. ;;;### (autoloads (org-export-icalendar-combine-agenda-files org-export-icalendar-all-agenda-files ;;;;;; orgtbl-mode turn-on-orgtbl org-remember-handler org-remember-annotation -;;;;;; org-store-link org-diary org-agenda org-agenda-mode org-mode) -;;;;;; "org" "textmodes/org.el" (17245 51610)) +;;;;;; org-store-link org-tags-view org-diary org-todo-list org-agenda-list +;;;;;; org-agenda org-agenda-mode org-mode) "org" "textmodes/org.el" +;;;;;; (17379 9062)) ;;; Generated autoloads from textmodes/org.el (autoload (quote org-mode) "org" "\ Outline-based notes management and organizer, alias -\"Carstens outline-mode for keeping track of everything.\" +\"Carsten's outline-mode for keeping track of everything.\" Org-mode develops organizational tasks around a NOTES file which contains information about projects as plain text. Org-mode is @@ -18653,16 +19081,51 @@ The following commands are available: \(fn)" t nil) (autoload (quote org-agenda) "org" "\ +Dispatch agenda commands to collect entries to the agenda buffer. +Prompts for a character to select a command. Any prefix arg will be passed +on to the selected command. The default selections are: + +a Call `org-agenda' to display the agenda for the current day or week. +t Call `org-todo-list' to display the global todo list. +T Call `org-todo-list' to display the global todo list, select only + entries with a specific TODO keyword (the user gets a prompt). +m Call `org-tags-view' to display headlines with tags matching + a condition (the user is prompted for the condition). +M Like `m', but select only TODO entries, no ordinary headlines. + +More commands can be added by configuring the variable +`org-agenda-custom-commands'. In particular, specific tags and TODO keyword +searches can be pre-defined in this way. + +If the current buffer is in Org-mode and visiting a file, you can also +first press `1' to indicate that the agenda should be temporarily (until the +next use of \\[org-agenda]) restricted to the current file. + +\(fn ARG)" t nil) + +(autoload (quote org-agenda-list) "org" "\ Produce a weekly view from all files in variable `org-agenda-files'. The view will be for the current week, but from the overview buffer you will be able to go to other weeks. With one \\[universal-argument] prefix argument INCLUDE-ALL, all unfinished TODO items will also be shown, under the current date. +With two \\[universal-argument] prefix argument INCLUDE-ALL, all TODO entries marked DONE +on the days are also shown. See the variable `org-log-done' for how +to turn on logging. START-DAY defaults to TODAY, or to the most recent match for the weekday given in `org-agenda-start-on-weekday'. NDAYS defaults to `org-agenda-ndays'. -\(fn &optional INCLUDE-ALL START-DAY NDAYS)" t nil) +\(fn &optional INCLUDE-ALL START-DAY NDAYS KEEP-MODES)" t nil) + +(autoload (quote org-todo-list) "org" "\ +Show all TODO entries from all agenda file in a single list. +The prefix arg can be used to select a specific TODO keyword and limit +the list to these. When using \\[universal-argument], you will be prompted +for a keyword. A numeric prefix directly selects the Nth keyword in +`org-todo-keywords'. + +\(fn ARG &optional KEEP-MODES)" t nil) (autoload (quote org-diary) "org" "\ Return diary information from org-files. @@ -18710,13 +19173,19 @@ function from a program - use `org-agenda-get-day-entries' instead. \(fn &rest ARGS)" nil nil) +(autoload (quote org-tags-view) "org" "\ +Show all headlines for all `org-agenda-files' matching a TAGS criterion. +The prefix arg TODO-ONLY limits the search to TODO entries. + +\(fn &optional TODO-ONLY MATCH KEEP-MODES)" t nil) + (autoload (quote org-store-link) "org" "\ \\Store an org-link to the current location. This link can later be inserted into an org-buffer with \\[org-insert-link]. For some link types, a prefix arg is interpreted: For links to usenet articles, arg negates `org-usenet-links-prefer-google'. -For file links, arg negates `org-line-numbers-in-file-links'. +For file links, arg negates `org-context-in-file-links'. \(fn ARG)" t nil) @@ -18735,7 +19204,7 @@ of `org-default-notes-file' is used. Then the command offers the headings tree of the selected file in order to file the text at a specific location. You can either immediately press RET to get the note appended to the -file. Or you can use vertical cursor motion and visibility cycling (TAB) to +file, or you can use vertical cursor motion and visibility cycling (TAB) to find a better place. Then press RET or or in insert the note. Key Cursor position Note gets inserted @@ -18790,7 +19259,7 @@ The file is stored under the name `org-combined-agenda-icalendar-file'. ;;;*** ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" -;;;;;; (17239 32223)) +;;;;;; (17360 50463)) ;;; Generated autoloads from outline.el (autoload (quote outline-mode) "outline" "\ @@ -18845,7 +19314,7 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17148 25021)) +;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17333 9514)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -18871,7 +19340,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time. ;;;*** ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" -;;;;;; (17102 18474)) +;;;;;; (17306 39720)) ;;; Generated autoloads from calendar/parse-time.el (autoload (quote parse-time-string) "parse-time" "\ @@ -18883,8 +19352,8 @@ unknown are returned as nil. ;;;*** -;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17239 -;;;;;; 32388)) +;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17279 +;;;;;; 1523)) ;;; Generated autoloads from progmodes/pascal.el (autoload (quote pascal-mode) "pascal" "\ @@ -19215,7 +19684,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" (17239 32224)) +;;;;;; "pcvs.el" (17305 29728)) ;;; Generated autoloads from pcvs.el (autoload (quote cvs-checkout) "pcvs" "\ @@ -19300,7 +19769,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" -;;;;;; (17185 27660)) +;;;;;; (17279 1524)) ;;; Generated autoloads from progmodes/perl-mode.el (autoload (quote perl-mode) "perl-mode" "\ @@ -19357,55 +19826,101 @@ 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-region) "pgg" -;;;;;; "pgg.el" (17244 47844)) +;;;;;; pgg-decrypt-region pgg-encrypt pgg-encrypt-symmetric pgg-encrypt-symmetric-region +;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17251 23307)) ;;; Generated autoloads from pgg.el (autoload (quote pgg-encrypt-region) "pgg" "\ Encrypt the current region between START and END for RCPTS. + If optional argument SIGN is non-nil, do a combined sign and encrypt. -\(fn START END RCPTS &optional SIGN)" t nil) +If optional PASSPHRASE is not specified, it will be obtained from the +passphrase cache or user. + +\(fn START END RCPTS &optional SIGN PASSPHRASE)" t nil) + +(autoload (quote pgg-encrypt-symmetric-region) "pgg" "\ +Encrypt the current region between START and END symmetric with passphrase. + +If optional PASSPHRASE is not specified, it will be obtained from the +cache or user. + +\(fn START END &optional PASSPHRASE)" t nil) + +(autoload (quote pgg-encrypt-symmetric) "pgg" "\ +Encrypt the current buffer using a symmetric, rather than key-pair, cipher. -(autoload (quote pgg-encrypt) "pgg" "\ -Encrypt the current buffer for RCPTS. -If optional argument SIGN is non-nil, do a combined sign and encrypt. If optional arguments START and END are specified, only encrypt within the region. -\(fn RCPTS &optional SIGN START END)" t nil) +If optional PASSPHRASE is not specified, it will be obtained from the +passphrase cache or user. + +\(fn &optional START END PASSPHRASE)" t nil) + +(autoload (quote pgg-encrypt) "pgg" "\ +Encrypt the current buffer for RCPTS. + +If optional argument SIGN is non-nil, do a combined sign and encrypt. + +If optional arguments START and END are specified, only encrypt within +the region. + +If optional PASSPHRASE is not specified, it will be obtained from the +passphrase cache or user. + +\(fn RCPTS &optional SIGN START END PASSPHRASE)" t nil) (autoload (quote pgg-decrypt-region) "pgg" "\ Decrypt the current region between START and END. -\(fn START END)" t nil) +If optional PASSPHRASE is not specified, it will be obtained from the +passphrase cache or user. + +\(fn START END &optional PASSPHRASE)" t nil) (autoload (quote pgg-decrypt) "pgg" "\ Decrypt the current buffer. + If optional arguments START and END are specified, only decrypt within the region. -\(fn &optional START END)" t nil) +If optional PASSPHRASE is not specified, it will be obtained from the +passphrase cache or user. + +\(fn &optional START END PASSPHRASE)" t nil) (autoload (quote pgg-sign-region) "pgg" "\ Make the signature from text between START and END. + If the optional 3rd argument CLEARTEXT is non-nil, it does not create a detached signature. + If this function is called interactively, CLEARTEXT is enabled and the the output is displayed. -\(fn START END &optional CLEARTEXT)" t nil) +If optional PASSPHRASE is not specified, it will be obtained from the +passphrase cache or user. + +\(fn START END &optional CLEARTEXT PASSPHRASE)" t nil) (autoload (quote pgg-sign) "pgg" "\ Sign the current buffer. + If the optional argument CLEARTEXT is non-nil, it does not create a detached signature. + If optional arguments START and END are specified, only sign data within the region. + If this function is called interactively, CLEARTEXT is enabled and the the output is displayed. -\(fn &optional CLEARTEXT START END)" t nil) +If optional PASSPHRASE is not specified, it will be obtained from the +passphrase cache or user. + +\(fn &optional CLEARTEXT START END PASSPHRASE)" t nil) (autoload (quote pgg-verify-region) "pgg" "\ Verify the current region between START and END. @@ -19443,68 +19958,88 @@ Import public keys in the current buffer. \(fn)" t nil) +;;;*** + +;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el" +;;;;;; (17251 23307)) +;;; Generated autoloads from pgg-gpg.el + +(autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\ +True if decoded armor MESSAGE-KEYS has symmetric encryption indicator. + +\(fn MESSAGE-KEYS)" nil nil) + ;;;*** ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" -;;;;;; (17148 25215)) +;;;;;; (17324 5868)) ;;; Generated autoloads from textmodes/picture.el (autoload (quote picture-mode) "picture" "\ Switch to Picture mode, in which a quarter-plane screen model is used. +\\ Printing characters replace instead of inserting themselves with motion afterwards settable by these commands: - C-c < Move left after insertion. - C-c > Move right after insertion. - C-c ^ Move up after insertion. - C-c . Move down after insertion. - C-c ` Move northwest (nw) after insertion. - C-c ' Move northeast (ne) after insertion. - C-c / Move southwest (sw) after insertion. - C-c \\ Move southeast (se) after insertion. - C-u C-c ` Move westnorthwest (wnw) after insertion. - C-u C-c ' Move eastnortheast (ene) after insertion. - C-u C-c / Move westsouthwest (wsw) after insertion. - C-u C-c \\ Move eastsoutheast (ese) after insertion. + + Move left after insertion: \\[picture-movement-left] + Move right after insertion: \\[picture-movement-right] + Move up after insertion: \\[picture-movement-up] + Move down after insertion: \\[picture-movement-down] + + Move northwest (nw) after insertion: \\[picture-movement-nw] + Move northeast (ne) after insertion: \\[picture-movement-ne] + Move southwest (sw) after insertion: \\[picture-movement-sw] + Move southeast (se) after insertion: \\[picture-movement-se] + + Move westnorthwest (wnw) after insertion: C-u \\[picture-movement-nw] + Move eastnortheast (ene) after insertion: C-u \\[picture-movement-ne] + Move westsouthwest (wsw) after insertion: C-u \\[picture-movement-sw] + Move eastsoutheast (ese) after insertion: C-u \\[picture-movement-se] + The current direction is displayed in the mode line. The initial direction is right. Whitespace is inserted and tabs are changed to spaces when required by movement. You can move around in the buffer with these commands: - \\[picture-move-down] Move vertically to SAME column in previous line. - \\[picture-move-up] Move vertically to SAME column in next line. - \\[picture-end-of-line] Move to column following last non-whitespace character. - \\[picture-forward-column] Move right inserting spaces if required. - \\[picture-backward-column] Move left changing tabs to spaces if required. - C-c C-f Move in direction of current picture motion. - C-c C-b Move in opposite direction of current picture motion. - Return Move to beginning of next line. + + Move vertically to SAME column in previous line: \\[picture-move-down] + Move vertically to SAME column in next line: \\[picture-move-up] + Move to column following last + non-whitespace character: \\[picture-end-of-line] + Move right, inserting spaces if required: \\[picture-forward-column] + Move left changing tabs to spaces if required: \\[picture-backward-column] + Move in direction of current picture motion: \\[picture-motion] + Move opposite to current picture motion: \\[picture-motion-reverse] + Move to beginning of next line: \\[next-line] + You can edit tabular text with these commands: - M-Tab Move to column beneath (or at) next interesting character. - `Indents' relative to a previous line. - Tab Move to next stop in tab stop list. - C-c Tab Set tab stops according to context of this line. - With ARG resets tab stops to default (global) value. - See also documentation of variable picture-tab-chars - which defines \"interesting character\". You can manually - change the tab stop list with command \\[edit-tab-stops]. + + Move to column beneath (or at) next interesting + character (see variable `picture-tab-chars'): \\[picture-tab-search] + Move to next stop in tab stop list: \\[picture-tab] + Set tab stops according to context of this line: \\[picture-set-tab-stops] + (With ARG, resets tab stops to default value.) + Change the tab stop list: \\[edit-tab-stops] + You can manipulate text with these commands: - C-d Clear (replace) ARG columns after point without moving. - C-c C-d Delete char at point - the command normally assigned to C-d. - \\[picture-backward-clear-column] Clear (replace) ARG columns before point, moving back over them. - \\[picture-clear-line] Clear ARG lines, advancing over them. The cleared - text is saved in the kill ring. - \\[picture-open-line] Open blank line(s) beneath current line. + Clear ARG columns after point without moving: \\[picture-clear-column] + Delete char at point: \\[delete-char] + Clear ARG columns backward: \\[picture-backward-clear-column] + Clear ARG lines, advancing over them: \\[picture-clear-line] + (the cleared text is saved in the kill ring) + Open blank line(s) beneath current line: \\[picture-open-line] + You can manipulate rectangles with these commands: - C-c C-k Clear (or kill) a rectangle and save it. - C-c C-w Like C-c C-k except rectangle is saved in named register. - C-c C-y Overlay (or insert) currently saved rectangle at point. - C-c C-x Like C-c C-y except rectangle is taken from named register. - C-c C-r Draw a rectangular box around mark and point. - \\[copy-rectangle-to-register] Copies a rectangle to a register. - \\[advertised-undo] Can undo effects of rectangle overlay commands - if invoked soon enough. -You can return to the previous mode with: - C-c C-c Which also strips trailing whitespace from every line. - Stripping is suppressed by supplying an argument. + Clear a rectangle and save it: \\[picture-clear-rectangle] + Clear a rectangle, saving in a named register: \\[picture-clear-rectangle-to-register] + Insert currently saved rectangle at point: \\[picture-yank-rectangle] + Insert rectangle from named register: \\[picture-yank-rectangle-from-register] + Draw a rectangular box around mark and point: \\[picture-draw-rectangle] + Copies a rectangle to a register: \\[copy-rectangle-to-register] + Undo effects of rectangle overlay commands: \\[advertised-undo] + +You can return to the previous mode with \\[picture-mode-exit], which +also strips trailing whitespace from every line. Stripping is suppressed +by supplying an argument. Entry to this mode calls the value of `picture-mode-hook' if non-nil. @@ -19604,7 +20139,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" -;;;;;; (17239 32228)) +;;;;;; (17279 1479)) ;;; Generated autoloads from printing.el (autoload (quote pr-interface) "printing" "\ @@ -20192,7 +20727,7 @@ are both set to t. ;;;*** ;;;### (autoloads (run-prolog prolog-mode) "prolog" "progmodes/prolog.el" -;;;;;; (17185 27661)) +;;;;;; (17279 1524)) ;;; Generated autoloads from progmodes/prolog.el (autoload (quote prolog-mode) "prolog" "\ @@ -20212,7 +20747,7 @@ Run an inferior Prolog process, input and output via buffer *prolog*. ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17131 20680)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17324 5837)) ;;; 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"))) "\ @@ -20221,8 +20756,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17205 -;;;;;; 6191)) +;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17279 +;;;;;; 1524)) ;;; Generated autoloads from progmodes/ps-mode.el (autoload (quote ps-mode) "ps-mode" "\ @@ -20590,7 +21125,7 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" -;;;;;; (17239 32390)) +;;;;;; (17362 7769)) ;;; Generated autoloads from progmodes/python.el (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) @@ -20677,7 +21212,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" (17249 49351)) +;;;;;; "international/quail.el" (17251 22049)) ;;; Generated autoloads from international/quail.el (autoload (quote quail-title) "quail" "\ @@ -20980,7 +21515,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** -;;;### (autoloads (rcirc) "rcirc" "net/rcirc.el" (17240 44365)) +;;;### (autoloads (rcirc) "rcirc" "net/rcirc.el" (17379 9054)) ;;; Generated autoloads from net/rcirc.el (autoload (quote rcirc) "rcirc" "\ @@ -20988,7 +21523,7 @@ Connect to IRC. If any of the the optional SERVER, PORT, NICK or CHANNELS are not supplied, they are taken from the variables `rcirc-server', -`rcirc-port', `rcirc-nick', and `rcirc-startup-channels', +`rcirc-port', `rcirc-nick', and `rcirc-startup-channels-alist', respectively. \(fn &optional SERVER PORT NICK CHANNELS)" t nil) @@ -21022,7 +21557,7 @@ Construct a regexp interactively. ;;;*** -;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17239 32234)) +;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17314 42609)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -21192,7 +21727,7 @@ refilling if they would cause auto-filling. ;;;*** ;;;### (autoloads (reftex-reset-scanning-information reftex-mode -;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17205 6264)) +;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17279 1533)) ;;; Generated autoloads from textmodes/reftex.el (autoload (quote turn-on-reftex) "reftex" "\ @@ -21451,7 +21986,7 @@ Clear out the file used for transmitting args when Emacs resumes. ;;;*** ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" -;;;;;; (17148 25035)) +;;;;;; (17351 27278)) ;;; Generated autoloads from reveal.el (autoload (quote reveal-mode) "reveal" "\ @@ -21484,52 +22019,6 @@ With zero or negative ARG turn mode off. \(fn &optional ARG)" t nil) -;;;*** - -;;;### (autoloads (file-name-shadow-mode file-name-shadow-tty-properties -;;;;;; file-name-shadow-properties) "rfn-eshadow" "rfn-eshadow.el" -;;;;;; (17148 25035)) -;;; Generated autoloads from rfn-eshadow.el - -(defvar file-name-shadow-properties (quote (face file-name-shadow field shadow)) "\ -Properties given to the `shadowed' part of a filename in the minibuffer. -Only used when `file-name-shadow-mode' is active. -If emacs is not running under a window system, -`file-name-shadow-tty-properties' is used instead.") - -(custom-autoload (quote file-name-shadow-properties) "rfn-eshadow") - -(defvar file-name-shadow-tty-properties (quote (before-string "{" after-string "} " field shadow)) "\ -Properties given to the `shadowed' part of a filename in the minibuffer. -Only used when `file-name-shadow-mode' is active and emacs -is not running under a window-system; if emacs is running under a window -system, `file-name-shadow-properties' is used instead.") - -(custom-autoload (quote file-name-shadow-tty-properties) "rfn-eshadow") - -(defvar file-name-shadow-mode nil "\ -Non-nil if File-Name-Shadow mode is enabled. -See the command `file-name-shadow-mode' for a description of this minor-mode. -Setting this variable directly does not take effect; -use either \\[customize] or the function `file-name-shadow-mode'.") - -(custom-autoload (quote file-name-shadow-mode) "rfn-eshadow") - -(put (quote file-name-shadow-mode) (quote custom-set) (quote custom-set-minor-mode)) - -(autoload (quote file-name-shadow-mode) "rfn-eshadow" "\ -Toggle File-Name Shadow mode. -When active, any part of a filename being read in the minibuffer -that would be ignored (because the result is passed through -`substitute-in-file-name') is given the properties in -`file-name-shadow-properties', which can be used to make -that portion dim, invisible, or otherwise less visually noticeable. - -With prefix argument ARG, turn on if positive, otherwise off. -Returns non-nil if the new state is enabled. - -\(fn &optional ARG)" t nil) - ;;;*** ;;;### (autoloads (make-ring ring-p) "ring" "emacs-lisp/ring.el" @@ -21599,8 +22088,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" (17239 -;;;;;; 32332)) +;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17360 +;;;;;; 50485)) ;;; Generated autoloads from mail/rmail.el (autoload (quote rmail-movemail-variant-p) "rmail" "\ @@ -21722,7 +22211,11 @@ This is set to nil by default.") *If non-nil, RMAIL uses MIME feature. If the value is t, RMAIL automatically shows MIME decoded message. If the value is neither t nor nil, RMAIL does not show MIME decoded message -until a user explicitly requires it.") +until a user explicitly requires it. + +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") @@ -21763,7 +22256,10 @@ LIMIT is the position specifying the end of header.") (defvar rmail-mime-feature (quote rmail-mime) "\ Feature to require to load MIME support in Rmail. When starting Rmail, if `rmail-enable-mime' is non-nil, -this feature is required with `require'.") +this feature is required with `require'. + +The default value is `rmail-mime'. This feature is provided by +the rmail-mime package available at .") (defvar rmail-decode-mime-charset t "\ *Non-nil means a message is decoded by MIME's charset specification. @@ -21923,7 +22419,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" (17239 32332)) +;;;;;; "mail/rmailout.el" (17362 13268)) ;;; Generated autoloads from mail/rmailout.el (defvar rmail-output-file-alist nil "\ @@ -21947,11 +22443,11 @@ appended in inbox format, the same way `rmail-output' does it. The default file name comes from `rmail-default-rmail-file', which is updated to the name you use in this command. -A prefix argument N says to output N consecutive messages +A prefix argument COUNT says to output that many consecutive messages, starting with the current one. Deleted messages are skipped and don't count. -If optional argument STAY is non-nil, then leave the last filed -mesasge up instead of moving forward to the next non-deleted message. +If the optional argument STAY is non-nil, then leave the last filed +message up instead of moving forward to the next non-deleted message. \(fn FILE-NAME &optional COUNT STAY)" t nil) @@ -21962,9 +22458,9 @@ mesasge up instead of moving forward to the next non-deleted message. (autoload (quote rmail-output) "rmailout" "\ Append this message to system-inbox-format mail file named FILE-NAME. -A prefix argument N says to output N consecutive messages +A prefix argument COUNT says to output that many consecutive messages, starting with the current one. Deleted messages are skipped and don't count. -When called from lisp code, N may be omitted. +When called from lisp code, COUNT may be omitted and defaults to 1. If the pruned message header is shown on the current message, then messages will be appended with pruned headers; otherwise, messages @@ -22043,7 +22539,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" (17239 32333)) +;;;;;; "rmailsum" "mail/rmailsum.el" (17370 3984)) ;;; Generated autoloads from mail/rmailsum.el (defvar rmail-summary-scroll-between-messages t "\ @@ -22538,34 +23034,34 @@ enclosed in `(and ...)'. ;;;*** -;;;### (autoloads (savehist-save savehist-load) "savehist" "savehist.el" -;;;;;; (17245 9380)) +;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el" +;;;;;; (17379 9023)) ;;; Generated autoloads from savehist.el -(autoload (quote savehist-load) "savehist" "\ -Load the minibuffer histories from `savehist-file'. -Unless NO-INSTALL is present and non-nil, the function will also install -`savehist-autosave' in `kill-emacs-hook' and on a timer, ensuring that -history is saved before leaving Emacs. +(defvar savehist-mode nil "\ +Mode for automatic saving of minibuffer history. +Set this by calling the `savehist-mode' function or using the customize +interface.") -This function should be normally used from your Emacs init file. Since -it removes your current minibuffer histories, it is unwise to call it at -any other time. +(custom-autoload (quote savehist-mode) "savehist") -\(fn &optional NO-INSTALL)" t nil) +(autoload (quote savehist-mode) "savehist" "\ +Toggle savehist-mode. +Positive ARG turns on `savehist-mode'. When on, savehist-mode causes +minibuffer history to be saved periodically and when exiting Emacs. +When turned on for the first time in an Emacs session, it causes the +previous minibuffer history to be loaded from `savehist-file'. -(autoload (quote savehist-save) "savehist" "\ -Save the values of minibuffer history variables. -Unbound symbols referenced in `savehist-additional-variables' are ignored. -If AUTO-SAVE is non-nil, compare the saved contents to the one last saved, - and don't save the buffer if they are the same. +This mode should normally be turned on from your Emacs init file. +Calling it at any other time replaces your current minibuffer histories, +which is probably undesirable. -\(fn &optional AUTO-SAVE)" t nil) +\(fn ARG)" t nil) ;;;*** ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" -;;;;;; (17239 32390)) +;;;;;; (17279 1524)) ;;; Generated autoloads from progmodes/scheme.el (autoload (quote scheme-mode) "scheme" "\ @@ -22690,13 +23186,13 @@ during scrolling. ;;;;;; mail-citation-prefix-regexp mail-citation-hook mail-indentation-spaces ;;;;;; mail-yank-prefix mail-setup-hook mail-personal-alias-file ;;;;;; mail-alias-file mail-default-reply-to mail-archive-file-name -;;;;;; mail-header-separator send-mail-function mail-yank-ignored-headers -;;;;;; mail-interactive mail-self-blind mail-specify-envelope-from -;;;;;; mail-from-style) "sendmail" "mail/sendmail.el" (17239 43866)) +;;;;;; mail-header-separator send-mail-function mail-interactive +;;;;;; mail-self-blind mail-specify-envelope-from mail-from-style) +;;;;;; "sendmail" "mail/sendmail.el" (17333 9520)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style (quote angles) "\ -*Specifies how \"From:\" fields look. +Specifies how \"From:\" fields look. If `nil', they contain just the return address like: king@grassland.com @@ -22715,7 +23211,7 @@ controlled by a separate variable, `mail-specify-envelope-from'.") (custom-autoload (quote mail-from-style) "sendmail") (defvar mail-specify-envelope-from nil "\ -*If non-nil, specify the envelope-from address when sending mail. +If non-nil, specify the envelope-from address when sending mail. The value used to specify it is whatever is found in the variable `mail-envelope-from', with `user-mail-address' as fallback. @@ -22727,22 +23223,19 @@ variable `feedmail-deduce-envelope-from'.") (custom-autoload (quote mail-specify-envelope-from) "sendmail") (defvar mail-self-blind nil "\ -*Non-nil means insert BCC to self in messages to be sent. +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") (defvar mail-interactive nil "\ -*Non-nil means when sending a message wait for and display errors. +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") -(defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:\\|^mail-reply-to:\\|^mail-followup-to:" "\ -*Delete these headers from old message when it's inserted in a reply.") - -(custom-autoload (quote mail-yank-ignored-headers) "sendmail") +(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))))) (defvar send-mail-function (if (and window-system (memq system-type (quote (darwin windows-nt)))) (quote mailclient-send-it) (quote sendmail-send-it)) "\ Function to call to send the current buffer as mail. @@ -22755,25 +23248,25 @@ This is used by the default mail-sending commands. See also (custom-autoload (quote send-mail-function) "sendmail") (defvar mail-header-separator "--text follows this line--" "\ -*Line used to separate headers from text in messages being composed.") +Line used to separate headers from text in messages being composed.") (custom-autoload (quote mail-header-separator) "sendmail") (defvar mail-archive-file-name nil "\ -*Name of file to write all outgoing messages in, or nil for none. +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") (defvar mail-default-reply-to nil "\ -*Address to insert as default Reply-to field of outgoing messages. +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") (defvar mail-alias-file nil "\ -*If non-nil, the name of a file to use instead of `/usr/lib/aliases'. +If non-nil, the name of a file to use instead of `/usr/lib/aliases'. 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.") @@ -22781,7 +23274,7 @@ This variable has no effect unless your system uses sendmail as its mailer.") (custom-autoload (quote mail-alias-file) "sendmail") (defvar mail-personal-alias-file "~/.mailrc" "\ -*If non-nil, the name of the user's personal mail alias file. +If non-nil, the name of the user's personal mail alias file. 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.") @@ -22803,19 +23296,19 @@ The alias definitions in the file have this form: alias ALIAS MEANING") (defvar mail-yank-prefix nil "\ -*Prefix insert on lines of yanked message being replied to. +Prefix insert on lines of yanked message being replied to. nil means use indentation.") (custom-autoload (quote mail-yank-prefix) "sendmail") (defvar mail-indentation-spaces 3 "\ -*Number of spaces to insert at the beginning of each cited line. +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") (defvar mail-citation-hook nil "\ -*Hook for modifying a citation just inserted in the mail buffer. +Hook for modifying a citation just inserted in the mail buffer. Each hook function can find the citation between (point) and (mark t), and should leave point and mark around the citation text as modified. The hook functions can find the header of the cited message @@ -22828,7 +23321,7 @@ instead of no action.") (custom-autoload (quote mail-citation-hook) "sendmail") (defvar mail-citation-prefix-regexp "[ ]*[-a-z0-9A-Z]*>+[ ]*\\|[ ]*" "\ -*Regular expression to match a citation prefix plus whitespace. +Regular expression to match a citation prefix plus whitespace. 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.") @@ -22836,7 +23329,7 @@ The default value matches citations like `foo-bar>' plus whitespace.") (custom-autoload (quote mail-citation-prefix-regexp) "sendmail") (defvar mail-signature nil "\ -*Text inserted at end of mail buffer when a message is initialized. +Text inserted at end of mail buffer when a message is initialized. If t, it means to insert the contents of the file `mail-signature-file'. If a string, that string is inserted. (To make a proper signature, the string should begin with \\n\\n-- \\n, @@ -22847,26 +23340,26 @@ and should insert whatever you want to insert.") (custom-autoload (quote mail-signature) "sendmail") (defvar mail-signature-file "~/.signature" "\ -*File containing the text inserted at end of mail buffer.") +File containing the text inserted at end of mail buffer.") (custom-autoload (quote mail-signature-file) "sendmail") (defvar mail-default-directory "~/" "\ -*Directory for mail buffers. +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") (defvar mail-default-headers nil "\ -*A string containing header lines, to be inserted in outgoing messages. +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") (defvar mail-bury-selects-summary t "\ -*If non-nil, try to show RMAIL summary buffer after returning from mail. +If non-nil, try to show RMAIL summary buffer after returning from mail. 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.") @@ -22874,7 +23367,7 @@ is non-nil.") (custom-autoload (quote mail-bury-selects-summary) "sendmail") (defvar mail-send-nonascii (quote mime) "\ -*Specify whether to allow sending non-ASCII characters in mail. +Specify whether to allow sending non-ASCII characters in mail. If t, that means do allow it. nil means don't allow it. `query' means ask the user each time. `mime' means add an appropriate MIME header if none already present. @@ -22887,7 +23380,10 @@ for the recipient, who may not know how to decode them properly.") (autoload (quote mail-mode) "sendmail" "\ Major mode for editing mail to be sent. Like Text Mode but with these additional commands: -\\[mail-send] mail-send (send the message) \\[mail-send-and-exit] mail-send-and-exit + +\\[mail-send] mail-send (send the message) +\\[mail-send-and-exit] mail-send-and-exit (send the message and exit) + Here are commands that move to a header field (and create it if there isn't): \\[mail-to] move to To: \\[mail-subject] move to Subject: \\[mail-cc] move to CC: \\[mail-bcc] move to BCC: @@ -22993,7 +23489,7 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** ;;;### (autoloads (server-mode server-start) "server" "server.el" -;;;;;; (17244 48630)) +;;;;;; (17245 60155)) ;;; Generated autoloads from server.el (autoload (quote server-start) "server" "\ @@ -23027,7 +23523,7 @@ Server mode runs a process that accepts commands from the ;;;*** -;;;### (autoloads (ses-mode) "ses" "ses.el" (17239 32237)) +;;;### (autoloads (ses-mode) "ses" "ses.el" (17370 3965)) ;;; Generated autoloads from ses.el (autoload (quote ses-mode) "ses" "\ @@ -23046,7 +23542,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" -;;;;;; (17185 27753)) +;;;;;; (17360 50505)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload (quote sgml-mode) "sgml-mode" "\ @@ -23114,7 +23610,7 @@ To work around that, do: ;;;*** ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" -;;;;;; (17242 7322)) +;;;;;; (17324 5862)) ;;; Generated autoloads from progmodes/sh-script.el (autoload (quote sh-mode) "sh-script" "\ @@ -23132,7 +23628,7 @@ shell-specific features. The default style of this mode is that of Rosenblatt's Korn shell book. The syntax of the statements varies with the shell being used. The following commands are available, based on the current shell's syntax: - +\\ \\[sh-case] case statement \\[sh-for] for loop \\[sh-function] function definition @@ -23192,7 +23688,7 @@ If BINARY is non-nil, return a string in binary form. ;;;*** ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" -;;;;;; (17148 25098)) +;;;;;; (17288 11730)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload (quote list-load-path-shadows) "shadow" "\ @@ -23362,8 +23858,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. ;;;*** -;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17140 -;;;;;; 20980)) +;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17279 +;;;;;; 1526)) ;;; Generated autoloads from progmodes/simula.el (autoload (quote simula-mode) "simula" "\ @@ -23522,7 +24018,7 @@ symmetrical ones, and the same character twice for the others. ;;;*** ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" -;;;;;; (17247 15785)) +;;;;;; (17251 22027)) ;;; Generated autoloads from smerge-mode.el (autoload (quote smerge-ediff) "smerge-mode" "\ @@ -23559,7 +24055,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" (17120 44799)) +;;;;;; "mail/smtpmail.el" (17360 50485)) ;;; Generated autoloads from mail/smtpmail.el (autoload (quote smtpmail-send-it) "smtpmail" "\ @@ -23629,7 +24125,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" (17239 32270)) +;;;;;; "solar" "calendar/solar.el" (17306 39720)) ;;; 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 ")"))) "\ @@ -23920,8 +24416,8 @@ From a program takes two point or marker arguments, BEG and END. ;;;*** -;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17148 -;;;;;; 25153)) +;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17360 +;;;;;; 50482)) ;;; Generated autoloads from gnus/spam.el (autoload (quote spam-initialize) "spam" "\ @@ -23976,7 +24472,7 @@ Spam reports will be queued with the method used when ;;;*** ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" -;;;;;; "speedbar.el" (17239 32244)) +;;;;;; "speedbar.el" (17296 17593)) ;;; Generated autoloads from speedbar.el (defalias (quote speedbar) (quote speedbar-frame-mode)) @@ -24620,7 +25116,7 @@ Studlify-case the current buffer. ;;;*** -;;;### (autoloads (locate-library) "subr" "subr.el" (17250 21630)) +;;;### (autoloads (locate-library) "subr" "subr.el" (17379 9027)) ;;; Generated autoloads from subr.el (autoload (quote locate-library) "subr" "\ @@ -24672,20 +25168,6 @@ before, and `sc-post-hook' is run after the guts of this function. \(fn)" nil nil) -;;;*** - -;;;### (autoloads (syntax-ppss) "syntax" "emacs-lisp/syntax.el" (17242 -;;;;;; 7313)) -;;; Generated autoloads from emacs-lisp/syntax.el - -(autoload (quote syntax-ppss) "syntax" "\ -Parse-Partial-Sexp State at POS. -The returned value is the same as `parse-partial-sexp' except that -the 2nd and 6th values of the returned state cannot be relied upon. -Point is at POS when this function returns. - -\(fn &optional POS)" nil nil) - ;;;*** ;;;### (autoloads (tabify untabify) "tabify" "tabify.el" (17148 25050)) @@ -24723,7 +25205,7 @@ 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" (17159 1496)) +;;;;;; "table" "textmodes/table.el" (17379 9064)) ;;; Generated autoloads from textmodes/table.el (defvar table-cell-map-hook nil "\ @@ -25321,7 +25803,7 @@ Connect to display DISPLAY for the Emacs talk group. ;;;*** -;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17242 7312)) +;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17279 1483)) ;;; Generated autoloads from tar-mode.el (autoload (quote tar-mode) "tar-mode" "\ @@ -25333,7 +25815,7 @@ or click mouse-2 on the file's line in the Tar mode buffer. Type `c' to copy an entry from the tar file into another file on disk. If you edit a sub-file of this archive (as with the `e' command) and -save it with Control-x Control-s, the contents of that buffer will be +save it with \\[save-buffer], the contents of that buffer will be saved back into the tar-file buffer; in this way you can edit a file inside of a tar archive without extracting it and re-archiving it. @@ -25345,7 +25827,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" -;;;;;; "progmodes/tcl.el" (17102 19053)) +;;;;;; "progmodes/tcl.el" (17351 27304)) ;;; Generated autoloads from progmodes/tcl.el (autoload (quote tcl-mode) "tcl" "\ @@ -25423,8 +25905,8 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17248 -;;;;;; 29270)) +;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17360 +;;;;;; 50467)) ;;; Generated autoloads from term.el (autoload (quote make-term) "term" "\ @@ -25833,7 +26315,7 @@ Major mode to edit DocTeX files. ;;;*** ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) -;;;;;; "texinfmt" "textmodes/texinfmt.el" (17148 25229)) +;;;;;; "texinfmt" "textmodes/texinfmt.el" (17314 42628)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload (quote texinfo-format-buffer) "texinfmt" "\ @@ -25873,7 +26355,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" (17246 24773)) +;;;;;; "texinfo" "textmodes/texinfo.el" (17279 1535)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote "``" "\ @@ -26059,9 +26541,9 @@ Not documented ;;;*** -;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show-all thumbs-dired-show-marked -;;;;;; thumbs-show-all-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" -;;;;;; (17245 51608)) +;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked +;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" +;;;;;; (17379 9027)) ;;; Generated autoloads from thumbs.el (autoload (quote thumbs-find-thumb) "thumbs" "\ @@ -26069,7 +26551,7 @@ Display the thumbnail for IMG. \(fn IMG)" t nil) -(autoload (quote thumbs-show-all-from-dir) "thumbs" "\ +(autoload (quote thumbs-show-from-dir) "thumbs" "\ Make a preview buffer for all images in DIR. Optional argument REG to select file matching a regexp, and SAME-WINDOW to show thumbs in the same window. @@ -26077,16 +26559,16 @@ and SAME-WINDOW to show thumbs in the same window. \(fn DIR &optional REG SAME-WINDOW)" t nil) (autoload (quote thumbs-dired-show-marked) "thumbs" "\ -In dired, make a thumbs buffer with all marked files. +In dired, make a thumbs buffer with marked files. \(fn)" t nil) -(autoload (quote thumbs-dired-show-all) "thumbs" "\ +(autoload (quote thumbs-dired-show) "thumbs" "\ In dired, make a thumbs buffer with all files in current directory. \(fn)" t nil) -(defalias (quote thumbs) (quote thumbs-show-all-from-dir)) +(defalias (quote thumbs) (quote thumbs-show-from-dir)) (autoload (quote thumbs-dired-setroot) "thumbs" "\ In dired, call the setroot program on the image at point. @@ -26179,7 +26661,7 @@ Not documented ;;;*** ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" -;;;;;; (17205 6265)) +;;;;;; (17342 23959)) ;;; Generated autoloads from textmodes/tildify.el (autoload (quote tildify-region) "tildify" "\ @@ -26203,7 +26685,7 @@ This function performs no refilling of the changed text. ;;;*** ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) -;;;;;; "time" "time.el" (17148 25057)) +;;;;;; "time" "time.el" (17360 50467)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -26246,8 +26728,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" (17239 -;;;;;; 32270)) +;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17306 +;;;;;; 39720)) ;;; Generated autoloads from calendar/time-date.el (autoload (quote date-to-time) "time-date" "\ @@ -26369,7 +26851,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" -;;;;;; (17239 32271)) +;;;;;; (17306 39721)) ;;; Generated autoloads from calendar/timeclock.el (autoload (quote timeclock-modeline-display) "timeclock" "\ @@ -26470,7 +26952,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" (17148 25099)) +;;;;;; "emacs-lisp/timer.el" (17259 28122)) ;;; Generated autoloads from emacs-lisp/timer.el (defalias (quote disable-timeout) (quote cancel-timer)) @@ -26629,7 +27111,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" (17102 18477)) +;;;;;; "todo-mode" "calendar/todo-mode.el" (17306 39721)) ;;; Generated autoloads from calendar/todo-mode.el (autoload (quote todo-add-category) "todo-mode" "\ @@ -26690,7 +27172,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" -;;;;;; (17250 21105)) +;;;;;; (17324 5838)) ;;; Generated autoloads from tool-bar.el (put (quote tool-bar-mode) (quote standard-value) (quote (t))) @@ -26727,7 +27209,7 @@ ICON.xbm, using `find-image'. \(fn ICON DEF KEY MAP &rest PROPS)" nil nil) (autoload (quote tool-bar-add-item-from-menu) "tool-bar" "\ -Define tool bar binding for COMMAND using the given ICON in keymap MAP. +Define tool bar binding for COMMAND in keymap MAP using the given ICON. This makes a binding for COMMAND in `tool-bar-map', copying its binding from the menu bar in MAP (which defaults to `global-map'), but modifies the binding by adding an image specification for ICON. It @@ -26737,19 +27219,20 @@ properties to add to the binding. MAP must contain appropriate binding for `[menu-bar]' which holds a keymap. Use this function only to make bindings in the global value of `tool-bar-map'. -To define items in any other map, use `tool-bar-local-item'. +To define items in any other map, use `tool-bar-local-item-from-menu'. \(fn COMMAND ICON &optional MAP &rest PROPS)" nil nil) (autoload (quote tool-bar-local-item-from-menu) "tool-bar" "\ -Define tool bar binding for COMMAND using the given ICON in keymap MAP. +Define local tool bar binding for COMMAND using the given ICON. This makes a binding for COMMAND in IN-MAP, copying its binding from the menu bar in FROM-MAP (which defaults to `global-map'), but modifies the binding by adding an image specification for ICON. It finds ICON just like `tool-bar-add-item'. PROPS are additional properties to add to the binding. -MAP must contain appropriate binding for `[menu-bar]' which holds a keymap. +FROM-MAP must contain appropriate binding for `[menu-bar]' which +holds a keymap. \(fn COMMAND ICON IN-MAP &optional FROM-MAP &rest PROPS)" nil nil) @@ -26849,9 +27332,10 @@ the window or buffer configuration at all. ;;;*** -;;;### (autoloads (tramp-completion-file-name-handler tramp-file-name-handler +;;;### (autoloads (tramp-unload-tramp tramp-unload-file-name-handler-alist +;;;;;; tramp-completion-file-name-handler tramp-file-name-handler ;;;;;; tramp-completion-file-name-regexp tramp-file-name-regexp) -;;;;;; "tramp" "net/tramp.el" (17250 21105)) +;;;;;; "tramp" "net/tramp.el" (17379 9057)) ;;; Generated autoloads from net/tramp.el (defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ @@ -26925,6 +27409,53 @@ Falls back to normal file name handler if no tramp file name handler exists. (add-to-list (quote file-name-handler-alist) (cons tramp-file-name-regexp (quote tramp-file-name-handler))) +(autoload (quote tramp-unload-file-name-handler-alist) "tramp" "\ +Not documented + +\(fn)" nil nil) + +(autoload (quote tramp-unload-tramp) "tramp" "\ +Not documented + +\(fn)" t nil) + +;;;*** + +;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" +;;;;;; (17370 3984)) +;;; Generated autoloads from net/tramp-ftp.el + +(autoload (quote tramp-ftp-enable-ange-ftp) "tramp-ftp" "\ +Not documented + +\(fn)" nil nil) + +;;;*** + +;;;### (autoloads (tumme-setup-dired-keybindings tumme-dired) "tumme" +;;;;;; "tumme.el" (17370 3971)) +;;; Generated autoloads from tumme.el + +(autoload (quote tumme-dired) "tumme" "\ +Open directory DIR and create a default window configuration. + +Convenience command that: + + - Opens dired in folder DIR + - Splits windows in most useful (?) way + - Set `truncate-lines' to t + +If called with prefix argument ARG, skip splitting of windows. + +\(fn DIR &optional ARG)" t nil) + +(autoload (quote tumme-setup-dired-keybindings) "tumme" "\ +Setup easy-to-use keybindings for the commands to be used in dired mode. +Note that n, p and and will be hijacked and bound to +`tumme-dired-x-line'. + +\(fn)" t nil) + ;;;*** ;;;### (autoloads (2C-split 2C-associate-buffer 2C-two-columns) "two-column" @@ -27221,8 +27752,8 @@ Convert Rmail file FILE to system inbox format file TO-FILE. ;;;*** -;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17148 -;;;;;; 25100)) +;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17379 +;;;;;; 9028)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload (quote unsafep) "unsafep" "\ @@ -27234,10 +27765,33 @@ of symbols with local bindings. ;;;*** -;;;### (autoloads nil "url" "url/url.el" (17239 32426)) +;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" +;;;;;; "url/url.el" (17351 27305)) ;;; Generated autoloads from url/url.el -(defvar url-configuration-directory "~/.url") +(autoload (quote url-retrieve) "url" "\ +Retrieve URL asynchronously and call CALLBACK with CBARGS when finished. +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. + +Return the buffer URL will load into, or nil if the process has +already completed. + +\(fn URL CALLBACK &optional CBARGS)" nil nil) + +(autoload (quote url-retrieve-synchronously) "url" "\ +Retrieve URL synchronously. +Return the buffer containing the data, or nil if there are no data +associated with it (the case for dired, info, or mailto URLs that need +no further processing). URL is either a string or a parsed URL. + +\(fn URL)" nil nil) ;;;*** @@ -27284,8 +27838,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" (17141 -;;;;;; 252)) +;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17340 +;;;;;; 731)) ;;; Generated autoloads from url/url-cache.el (autoload (quote url-store-in-cache) "url-cache" "\ @@ -27318,44 +27872,6 @@ Not documented \(fn URL)" nil nil) -;;;*** - -;;;### (autoloads (url-cookie-setup-save-timer url-cookie-handle-set-cookie -;;;;;; url-cookie-generate-header-lines url-cookie-retrieve url-cookie-write-file -;;;;;; url-cookie-parse-file) "url-cookie" "url/url-cookie.el" (17141 -;;;;;; 252)) -;;; Generated autoloads from url/url-cookie.el - -(autoload (quote url-cookie-parse-file) "url-cookie" "\ -Not documented - -\(fn &optional FNAME)" nil nil) - -(autoload (quote url-cookie-write-file) "url-cookie" "\ -Not documented - -\(fn &optional FNAME)" nil nil) - -(autoload (quote url-cookie-retrieve) "url-cookie" "\ -Retrieve all the netscape-style cookies for a specified HOST and LOCALPART. - -\(fn HOST LOCALPART &optional SECURE)" nil nil) - -(autoload (quote url-cookie-generate-header-lines) "url-cookie" "\ -Not documented - -\(fn HOST LOCALPART SECURE)" nil nil) - -(autoload (quote url-cookie-handle-set-cookie) "url-cookie" "\ -Not documented - -\(fn STR)" nil nil) - -(autoload (quote url-cookie-setup-save-timer) "url-cookie" "\ -Reset the cookie saver timer. - -\(fn)" t nil) - ;;;*** ;;;### (autoloads (url-dav-vc-registered url-dav-supported-p) "url-dav" @@ -27404,8 +27920,8 @@ Will not make a connection if `url-gateway-unplugged' is non-nil. ;;;*** ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file -;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17239 -;;;;;; 43869)) +;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17340 +;;;;;; 731)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -27447,35 +27963,10 @@ Not documented \(fn URL &optional VISIT BEG END REPLACE)" nil nil) -;;;*** - -;;;### (autoloads (url-history-save-history url-history-parse-history -;;;;;; url-history-setup-save-timer) "url-history" "url/url-history.el" -;;;;;; (17141 258)) -;;; Generated autoloads from url/url-history.el - -(autoload (quote url-history-setup-save-timer) "url-history" "\ -Reset the history list timer. - -\(fn)" t nil) - -(autoload (quote url-history-parse-history) "url-history" "\ -Parse a history file stored in FNAME. - -\(fn &optional FNAME)" nil nil) - -(autoload (quote url-history-save-history) "url-history" "\ -Write the global history file into `url-history-file'. -The type of data written is determined by what is in the file to begin -with. If the type of storage cannot be determined, then prompt the -user for what type to save as. - -\(fn &optional FNAME)" t nil) - ;;;*** ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p -;;;;;; url-http) "url-http" "url/url-http.el" (17239 43869)) +;;;;;; url-http) "url-http" "url/url-http.el" (17279 1536)) ;;; Generated autoloads from url/url-http.el (autoload (quote url-http) "url-http" "\ @@ -27601,7 +28092,7 @@ Fetch a data URL (RFC 2397). ;;;*** ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" -;;;;;; (17167 2802)) +;;;;;; (17360 50508)) ;;; Generated autoloads from url/url-news.el (autoload (quote url-news) "url-news" "\ @@ -27677,11 +28168,11 @@ Format is: ;;;*** ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" -;;;;;; (17141 263)) +;;;;;; (17351 27305)) ;;; Generated autoloads from url/url-privacy.el (autoload (quote url-setup-privacy-info) "url-privacy" "\ -Not documented +Setup variables that expose info about you and your system. \(fn)" t nil) @@ -27846,7 +28337,7 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf-7" "international/utf-7.el" (17245 4870)) +;;;### (autoloads nil "utf-7" "international/utf-7.el" (17245 60163)) ;;; Generated autoloads from international/utf-7.el (autoload-coding-system 'utf-7 '(require 'utf-7)) @@ -27884,23 +28375,23 @@ 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" (17245 51609)) +;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17370 3974)) ;;; Generated autoloads from vc.el (defvar vc-checkout-hook nil "\ -*Normal hook (list of functions) run after checking out a file. +Normal hook (list of functions) run after checking out a file. See `run-hooks'.") (custom-autoload (quote vc-checkout-hook) "vc") (defvar vc-checkin-hook nil "\ -*Normal hook (list of functions) run after a checkin is done. +Normal hook (list of functions) run after a checkin is done. See also `log-edit-done-hook'.") (custom-autoload (quote vc-checkin-hook) "vc") (defvar vc-before-checkin-hook nil "\ -*Normal hook (list of functions) run before a file is checked in. +Normal hook (list of functions) run before a file is checked in. See `run-hooks'.") (custom-autoload (quote vc-before-checkin-hook) "vc") @@ -27938,8 +28429,9 @@ Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the current buffer if BUFFER is t. If the destination buffer is not already current, set it up properly and erase it. The command is considered successful if its exit status does not exceed OKSTATUS (if -OKSTATUS is nil, that means to ignore errors, if it is 'async, that -means not to wait for termination of the subprocess). FILE is the +OKSTATUS is nil, that means to ignore error status, if it is `async', that +means not to wait for termination of the subprocess; if it is t it means to +ignore all execution errors). FILE is the name of the working file (may also be nil, to execute commands that don't expect a file name). If an optional list of FLAGS is present, that is inserted into the command line before the filename. @@ -28167,7 +28659,7 @@ mode-specific menu. `vc-annotate-color-map' and `vc-annotate-very-old-color' defines the mapping of time to colors. `vc-annotate-background' specifies the background color. -\(fn PREFIX &optional REVISION DISPLAY-MODE)" t nil) +\(fn FILE REV &optional DISPLAY-MODE BUF)" t nil) ;;;*** @@ -28181,7 +28673,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17148 25060)) +;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17259 28116)) ;;; Generated autoloads from vc-cvs.el (defun vc-cvs-registered (f) (when (file-readable-p (expand-file-name @@ -28191,7 +28683,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17239 32248)) +;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17314 42611)) ;;; Generated autoloads from vc-mcvs.el (defun vc-mcvs-registered (file) (if (vc-find-root file "MCVS/CVS") @@ -28202,7 +28694,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" -;;;;;; (17148 25062)) +;;;;;; (17370 29804)) ;;; Generated autoloads from vc-rcs.el (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -28215,7 +28707,7 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" -;;;;;; (17148 25063)) +;;;;;; (17370 29804)) ;;; Generated autoloads from vc-sccs.el (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -28232,7 +28724,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vc-svn" "vc-svn.el" (17148 25063)) +;;;### (autoloads nil "vc-svn" "vc-svn.el" (17314 42611)) ;;; Generated autoloads from vc-svn.el (defun vc-svn-registered (f) (when (file-readable-p (expand-file-name @@ -28887,8 +29379,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" (17250 -;;;;;; 21105)) +;;;;;; view-file-other-window view-file) "view" "view.el" (17297 +;;;;;; 44104)) ;;; Generated autoloads from view.el (defvar view-mode nil "\ @@ -29052,12 +29544,14 @@ p searches backward for last regular expression. \\[View-kill-and-leave] quit View mode, kill current buffer and go back to other buffer. The effect of \\[View-leave] , \\[View-quit] and \\[View-kill-and-leave] depends on how view-mode was entered. If it was -entered by view-file, view-file-other-window or view-file-other-frame -\(\\[view-file], \\[view-file-other-window], \\[view-file-other-frame] or the dired mode v command), then \\[View-quit] will -try to kill the current buffer. If view-mode was entered from another buffer -as is done by View-buffer, View-buffer-other-window, View-buffer-other frame, -View-file, View-file-other-window or View-file-other-frame then \\[View-leave] , \\[View-quit] and \\[View-kill-and-leave] -will return to that buffer. +entered by view-file, view-file-other-window, view-file-other-frame, or +\\[dired-view-file] (\\[view-file], \\[view-file-other-window], +\\[view-file-other-frame], or the Dired mode v command), +then \\[View-quit] will try to kill the current buffer. +If view-mode was entered from another buffer, by \\[view-buffer], +\\[view-buffer-other-window], \\[view-buffer-other frame], \\[view-file], +\\[view-file-other-window], or \\[view-file-other-frame], +then \\[View-leave] , \\[View-quit] and \\[View-kill-and-leave] will return to that buffer. Entry to view-mode runs the normal hook `view-mode-hook'. @@ -29112,7 +29606,7 @@ Turn on VIP emulation of VI. ;;;*** ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" -;;;;;; (17244 43743)) +;;;;;; (17379 9029)) ;;; Generated autoloads from emulation/viper.el (autoload (quote toggle-viper-mode) "viper" "\ @@ -29217,7 +29711,7 @@ this is equivalent to `display-warning', using ;;;*** ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" -;;;;;; (17205 6053)) +;;;;;; (17351 27279)) ;;; Generated autoloads from wdired.el (autoload (quote wdired-change-to-wdired-mode) "wdired" "\ @@ -29233,7 +29727,7 @@ See `wdired-mode'. ;;;*** -;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17140 20945)) +;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17333 9522)) ;;; Generated autoloads from net/webjump.el (autoload (quote webjump) "webjump" "\ @@ -29401,8 +29895,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" (17244 -;;;;;; 43741)) +;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17370 +;;;;;; 3976)) ;;; Generated autoloads from wid-edit.el (autoload (quote widgetp) "wid-edit" "\ @@ -29432,7 +29926,9 @@ Call `insert' with ARGS even if surrounding text is read only. \(fn &rest ARGS)" nil nil) -(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " (quote widget-forward)) (define-key map [(shift tab)] (quote widget-backward)) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map " " (quote widget-button-press)) map) "\ +(defalias (quote advertised-widget-backward) (quote widget-backward)) + +(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " (quote widget-forward)) (define-key map " " (quote widget-backward)) (define-key map [(shift tab)] (quote advertised-widget-backward)) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map "" (quote widget-button-press)) map) "\ Keymap containing useful binding for buffers containing widgets. Recommended as a parent keymap for modes using widgets.") @@ -29666,7 +30162,7 @@ The key bindings are: ;;;*** ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" -;;;;;; (17148 25076)) +;;;;;; (17379 9028)) ;;; Generated autoloads from xml.el (autoload (quote xml-parse-file) "xml" "\ @@ -29691,8 +30187,8 @@ If PARSE-NS is non-nil, then QNAMES are expanded. ;;;*** -;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17148 -;;;;;; 25076)) +;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17333 +;;;;;; 9520)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -29737,7 +30233,7 @@ Extract file name from an yenc header. ;;;*** ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism -;;;;;; yow) "yow" "play/yow.el" (17140 20949)) +;;;;;; yow) "yow" "play/yow.el" (17297 34964)) ;;; Generated autoloads from play/yow.el (autoload (quote yow) "yow" "\ @@ -29826,23 +30322,26 @@ Zone-mode does two things: ;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/levents.el" "emacs-lisp/lisp-mnt.el" ;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/lmenu.el" ;;;;;; "emacs-lisp/lselect.el" "emacs-lisp/lucid.el" "emacs-lisp/map-ynp.el" -;;;;;; "emacs-lisp/regi.el" "emacs-lisp/sregex.el" "emacs-lisp/tcover-ses.el" -;;;;;; "emacs-lisp/tcover-unsafep.el" "emacs-lock.el" "emulation/cua-gmrk.el" -;;;;;; "emulation/cua-rect.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" -;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/tpu-mapper.el" -;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" -;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" -;;;;;; "emulation/viper-util.el" "env.el" "eshell/em-alias.el" "eshell/em-banner.el" -;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" -;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" -;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" -;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" -;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "eshell/esh-arg.el" -;;;;;; "eshell/esh-cmd.el" "eshell/esh-ext.el" "eshell/esh-groups.el" -;;;;;; "eshell/esh-io.el" "eshell/esh-maint.el" "eshell/esh-module.el" -;;;;;; "eshell/esh-opt.el" "eshell/esh-proc.el" "eshell/esh-util.el" -;;;;;; "eshell/esh-var.el" "ezimage.el" "faces.el" "files.el" "finder-inf.el" -;;;;;; "foldout.el" "font-core.el" "format.el" "forms-d2.el" "forms-pass.el" +;;;;;; "emacs-lisp/regi.el" "emacs-lisp/sregex.el" "emacs-lisp/syntax.el" +;;;;;; "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" +;;;;;; "emacs-lock.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el" +;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el" +;;;;;; "emulation/edt-vt100.el" "emulation/tpu-mapper.el" "emulation/viper-cmd.el" +;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" +;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" +;;;;;; "env.el" "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" +;;;;;; "erc/erc-identd.el" "erc/erc-lang.el" "erc/erc-menu.el" "erc/erc-nicklist.el" +;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el" +;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el" +;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el" +;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el" +;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el" +;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" +;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" +;;;;;; "eshell/esh-maint.el" "eshell/esh-module.el" "eshell/esh-opt.el" +;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el" +;;;;;; "ezimage.el" "faces.el" "files.el" "finder-inf.el" "foldout.el" +;;;;;; "font-core.el" "font-lock.el" "format.el" "forms-d2.el" "forms-pass.el" ;;;;;; "frame.el" "generic-x.el" "gnus/compface.el" "gnus/dig.el" ;;;;;; "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el" ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el" @@ -29877,36 +30376,39 @@ Zone-mode does two things: ;;;;;; "international/subst-gb2312.el" "international/subst-jis.el" ;;;;;; "international/subst-ksc.el" "international/ucs-tables.el" ;;;;;; "international/utf-16.el" "international/utf-8.el" "isearch.el" -;;;;;; "jka-cmpr-hook.el" "kermit.el" "language/chinese.el" "language/cyrillic.el" -;;;;;; "language/czech.el" "language/devanagari.el" "language/english.el" -;;;;;; "language/ethiopic.el" "language/european.el" "language/georgian.el" -;;;;;; "language/greek.el" "language/hebrew.el" "language/indian.el" -;;;;;; "language/japanese.el" "language/kannada.el" "language/korean.el" -;;;;;; "language/lao.el" "language/malayalam.el" "language/misc-lang.el" -;;;;;; "language/romanian.el" "language/slovak.el" "language/tamil.el" -;;;;;; "language/thai-word.el" "language/thai.el" "language/tibetan.el" -;;;;;; "language/utf-8-lang.el" "language/vietnamese.el" "ldefs-boot.el" -;;;;;; "loadup.el" "mail/blessmail.el" "mail/mailheader.el" "mail/mailpost.el" -;;;;;; "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el" +;;;;;; "jit-lock.el" "jka-cmpr-hook.el" "kermit.el" "language/chinese.el" +;;;;;; "language/cyrillic.el" "language/czech.el" "language/devanagari.el" +;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el" +;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el" +;;;;;; "language/indian.el" "language/japanese.el" "language/kannada.el" +;;;;;; "language/korean.el" "language/lao.el" "language/malayalam.el" +;;;;;; "language/misc-lang.el" "language/romanian.el" "language/slovak.el" +;;;;;; "language/tamil.el" "language/thai-word.el" "language/thai.el" +;;;;;; "language/tibetan.el" "language/utf-8-lang.el" "language/vietnamese.el" +;;;;;; "ldefs-boot.el" "ldefs.el" "ldefs1.el" "loadup.el" "mail/blessmail.el" +;;;;;; "mail/mailheader.el" "mail/mailpost.el" "mail/mspools.el" +;;;;;; "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el" ;;;;;; "mail/uce.el" "mail/vms-pmail.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el" -;;;;;; "mh-e/mh-customize.el" "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" -;;;;;; "mh-e/mh-identity.el" "mh-e/mh-inc.el" "mh-e/mh-index.el" -;;;;;; "mh-e/mh-junk.el" "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" -;;;;;; "mh-e/mh-pick.el" "mh-e/mh-print.el" "mh-e/mh-seq.el" "mh-e/mh-speed.el" -;;;;;; "mh-e/mh-utils.el" "misc.el" "mouse-copy.el" "mouse-drag.el" -;;;;;; "mouse.el" "net/eudc-vars.el" "net/eudcb-bbdb.el" "net/eudcb-ldap.el" -;;;;;; "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" "net/tls.el" -;;;;;; "net/tramp-ftp.el" "net/tramp-smb.el" "net/tramp-util.el" -;;;;;; "net/tramp-uu.el" "net/tramp-vc.el" "net/trampver.el" "obsolete/awk-mode.el" -;;;;;; "obsolete/bg-mouse.el" "obsolete/float.el" "obsolete/hilit19.el" -;;;;;; "obsolete/iso-insert.el" "obsolete/iso-swed.el" "obsolete/keyswap.el" -;;;;;; "obsolete/mlsupport.el" "obsolete/ooutline.el" "obsolete/profile.el" -;;;;;; "obsolete/rnews.el" "obsolete/sc.el" "obsolete/sun-curs.el" -;;;;;; "obsolete/sun-fns.el" "obsolete/swedish.el" "obsolete/uncompress.el" -;;;;;; "obsolete/x-apollo.el" "obsolete/x-menu.el" "patcomp.el" -;;;;;; "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" -;;;;;; "pgg-def.el" "pgg-gpg.el" "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" -;;;;;; "play/gamegrid.el" "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" +;;;;;; "mh-e/mh-buffers.el" "mh-e/mh-compat.el" "mh-e/mh-funcs.el" +;;;;;; "mh-e/mh-gnus.el" "mh-e/mh-identity.el" "mh-e/mh-inc.el" +;;;;;; "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" +;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" +;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" +;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" +;;;;;; "mh-e/mh-utils.el" "mh-e/mh-xface.el" "misc.el" "mouse-copy.el" +;;;;;; "mouse-drag.el" "mouse.el" "net/eudc-vars.el" "net/eudcb-bbdb.el" +;;;;;; "net/eudcb-ldap.el" "net/eudcb-mab.el" "net/eudcb-ph.el" +;;;;;; "net/ldap.el" "net/netrc.el" "net/tls.el" "net/tramp-smb.el" +;;;;;; "net/tramp-util.el" "net/tramp-uu.el" "net/tramp-vc.el" "net/trampver.el" +;;;;;; "obsolete/awk-mode.el" "obsolete/bg-mouse.el" "obsolete/float.el" +;;;;;; "obsolete/hilit19.el" "obsolete/iso-insert.el" "obsolete/iso-swed.el" +;;;;;; "obsolete/keyswap.el" "obsolete/mlsupport.el" "obsolete/ooutline.el" +;;;;;; "obsolete/profile.el" "obsolete/rnews.el" "obsolete/sc.el" +;;;;;; "obsolete/sun-curs.el" "obsolete/sun-fns.el" "obsolete/swedish.el" +;;;;;; "obsolete/uncompress.el" "obsolete/x-apollo.el" "obsolete/x-menu.el" +;;;;;; "patcomp.el" "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" +;;;;;; "pgg-def.el" "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" "play/gamegrid.el" +;;;;;; "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" ;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" ;;;;;; "progmodes/cc-cmds.el" "progmodes/cc-compat.el" "progmodes/cc-defs.el" ;;;;;; "progmodes/cc-fonts.el" "progmodes/cc-langs.el" "progmodes/cc-menus.el" @@ -29915,29 +30417,30 @@ Zone-mode does two things: ;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el" ;;;;;; "progmodes/idlw-help.el" "progmodes/idlw-rinfo.el" "progmodes/idlw-toolbar.el" ;;;;;; "progmodes/mantemp.el" "progmodes/xscheme.el" "register.el" -;;;;;; "replace.el" "s-region.el" "saveplace.el" "sb-image.el" "scroll-bar.el" -;;;;;; "select.el" "simple.el" "soundex.el" "startup.el" "subdirs.el" -;;;;;; "tempo.el" "term/AT386.el" "term/apollo.el" "term/bobcat.el" -;;;;;; "term/cygwin.el" "term/internal.el" "term/iris-ansi.el" "term/linux.el" -;;;;;; "term/lk201.el" "term/mac-win.el" "term/news.el" "term/pc-win.el" -;;;;;; "term/rxvt.el" "term/sun-mouse.el" "term/sun.el" "term/sup-mouse.el" -;;;;;; "term/tty-colors.el" "term/tvi970.el" "term/vt100.el" "term/vt102.el" -;;;;;; "term/vt125.el" "term/vt200.el" "term/vt201.el" "term/vt220.el" -;;;;;; "term/vt240.el" "term/vt300.el" "term/vt320.el" "term/vt400.el" -;;;;;; "term/vt420.el" "term/w32-win.el" "term/wyse50.el" "term/x-win.el" -;;;;;; "term/xterm.el" "textmodes/bib-mode.el" "textmodes/fill.el" -;;;;;; "textmodes/makeinfo.el" "textmodes/page-ext.el" "textmodes/page.el" -;;;;;; "textmodes/paragraphs.el" "textmodes/refbib.el" "textmodes/refer.el" -;;;;;; "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" -;;;;;; "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" "textmodes/reftex-vars.el" -;;;;;; "textmodes/texnfo-upd.el" "textmodes/text-mode.el" "timezone.el" -;;;;;; "tooltip.el" "tree-widget.el" "uniquify.el" "url/url-about.el" -;;;;;; "url/url-dired.el" "url/url-expand.el" "url/url-ftp.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") (17250 22703 990875)) +;;;;;; "replace.el" "rfn-eshadow.el" "s-region.el" "saveplace.el" +;;;;;; "sb-image.el" "scroll-bar.el" "select.el" "simple.el" "soundex.el" +;;;;;; "startup.el" "subdirs.el" "tempo.el" "term/AT386.el" "term/apollo.el" +;;;;;; "term/bobcat.el" "term/cygwin.el" "term/internal.el" "term/iris-ansi.el" +;;;;;; "term/linux.el" "term/lk201.el" "term/mac-win.el" "term/news.el" +;;;;;; "term/pc-win.el" "term/rxvt.el" "term/sun-mouse.el" "term/sun.el" +;;;;;; "term/sup-mouse.el" "term/tty-colors.el" "term/tvi970.el" +;;;;;; "term/vt100.el" "term/vt102.el" "term/vt125.el" "term/vt200.el" +;;;;;; "term/vt201.el" "term/vt220.el" "term/vt240.el" "term/vt300.el" +;;;;;; "term/vt320.el" "term/vt400.el" "term/vt420.el" "term/w32-win.el" +;;;;;; "term/wyse50.el" "term/x-win.el" "term/xterm.el" "textmodes/bib-mode.el" +;;;;;; "textmodes/fill.el" "textmodes/makeinfo.el" "textmodes/page-ext.el" +;;;;;; "textmodes/page.el" "textmodes/paragraphs.el" "textmodes/refbib.el" +;;;;;; "textmodes/refer.el" "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" +;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" +;;;;;; "textmodes/reftex-vars.el" "textmodes/texnfo-upd.el" "textmodes/text-mode.el" +;;;;;; "timezone.el" "tooltip.el" "tree-widget.el" "uniquify.el" +;;;;;; "url/url-about.el" "url/url-cookie.el" "url/url-dired.el" +;;;;;; "url/url-expand.el" "url/url-ftp.el" "url/url-history.el" +;;;;;; "url/url-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") (17380 37693 953000)) ;;;*** From 4a99f153c4f529f8bc531dce406440b6bf10ce10 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 4 Feb 2006 12:12:39 +0000 Subject: [PATCH 16/42] (Info-index, Info-mode): Improve the description of the `i' command. --- lisp/ChangeLog | 3 +++ lisp/info.el | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f533d50a75d..b01328b58bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2006-02-04 Eli Zaretskii + * info.el (Info-index, Info-mode): Improve the description of the + `i' command. + * ldefs-boot.el: Regenerate. 2006-02-03 Werner Lemberg diff --git a/lisp/info.el b/lisp/info.el index 912e31f62ad..dbcfaed31c4 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -2775,11 +2775,11 @@ If FILE is nil, check the current Info file." ;;;###autoload (defun Info-index (topic) - "Look up a string TOPIC in the index for this file. + "Look up a string TOPIC in the index for this manual and go to that entry. If there are no exact matches to the specified topic, this chooses the first match which is a case-insensitive substring of a topic. Use the \\\\[Info-index-next] command to see the other matches. -Give a blank topic name to go to the Index node itself." +Give an empty topic name to go to the Index node itself." (interactive (list (let ((Info-complete-menu-buffer (clone-buffer)) @@ -3352,7 +3352,7 @@ Advanced commands: \\[Info-search-case-sensitively] Search through this Info file for specified regexp case-sensitively. \\[Info-search-next] Search for another occurrence of regexp from a previous \\\\[Info-search] command. -\\[Info-index] Look up a topic in this file's Index and move to that node. +\\[Info-index] Look up a topic in this manual's Index and move to that index entry. \\[Info-index-next] (comma) Move to the next match from a previous \\\\[Info-index] command. \\[info-apropos] Look for a string in the indices of all manuals. \\[Info-goto-node] Move to node specified by name. From 62ffcd76a94fd453bede61d63d50d697da6f518f Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 4 Feb 2006 12:19:27 +0000 Subject: [PATCH 17/42] (display-message-or-buffer): Count screen lines instead of buffer lines when determining whether the message will fit in the echo area/minibuffer window. --- lisp/ChangeLog | 6 ++++++ lisp/simple.el | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b01328b58bf..d91434f318e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2006-02-04 Kevin Rodgers + + * simple.el (display-message-or-buffer): Count screen lines + instead of buffer lines when determining whether the message + will fit in the echo area/minibuffer window. + 2006-02-04 Eli Zaretskii * info.el (Info-index, Info-mode): Improve the description of the diff --git a/lisp/simple.el b/lisp/simple.el index d0fecbc3586..9ca1cf2c9f3 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1922,7 +1922,7 @@ and only used if a buffer is displayed." (let ((lines (if (= (buffer-size) 0) 0 - (count-lines (point-min) (point-max))))) + (count-screen-lines nil nil nil (minibuffer-window))))) (cond ((= lines 0)) ((and (or (<= lines 1) (<= lines From aca2d9bb9259184f742eb697444175bc1efae14b Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 4 Feb 2006 21:48:50 +0000 Subject: [PATCH 18/42] (display-message-or-buffer): Compare the number of characters to the frame width when determining whether a 1-line message string will fit in the echo area. --- lisp/ChangeLog | 8 +++++--- lisp/simple.el | 7 +++++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d91434f318e..8c47effeaac 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,8 +1,10 @@ 2006-02-04 Kevin Rodgers - * simple.el (display-message-or-buffer): Count screen lines - instead of buffer lines when determining whether the message - will fit in the echo area/minibuffer window. + * simple.el (display-message-or-buffer): Compare the number of + characters to the frame width when determining whether a 1-line + message string will fit in the echo area. Count screen lines + instead of buffer lines when determining whether a multi-line + message will fit in the echo area/minibuffer window. 2006-02-04 Eli Zaretskii diff --git a/lisp/simple.el b/lisp/simple.el index 9ca1cf2c9f3..58b0ba2de57 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1901,11 +1901,14 @@ the contents are inserted into the buffer anyway. Optional arguments NOT-THIS-WINDOW and FRAME are as for `display-buffer', and only used if a buffer is displayed." - (cond ((and (stringp message) (not (string-match "\n" message))) + (cond ((and (stringp message) + (not (string-match "\n" message)) + (<= (length message) (frame-width))) ;; Trivial case where we can use the echo area (message "%s" message)) ((and (stringp message) - (= (string-match "\n" message) (1- (length message)))) + (= (string-match "\n" message) (1- (length message))) + (<= (1- (length message)) (frame-width))) ;; Trivial case where we can just remove single trailing newline (message "%s" (substring message 0 (1- (length message))))) (t From 533919895efd86a2bfdd7d3fb573bbf50e369a94 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sat, 4 Feb 2006 23:33:35 +0000 Subject: [PATCH 19/42] *** empty log message *** --- lisp/ChangeLog | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8c47effeaac..0fb84d7de34 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-02-05 Kim F. Storm + + * files.el (magic-mode-regexp-match-limit): New defvar. + (set-auto-mode): Use it to limit magic-mode-alist matching. + 2006-02-04 Kevin Rodgers * simple.el (display-message-or-buffer): Compare the number of From 5cce080e9551156ad58ca9391a69734777f3a07e Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sat, 4 Feb 2006 23:33:53 +0000 Subject: [PATCH 20/42] (magic-mode-regexp-match-limit): New defvar. (set-auto-mode): Use it to limit magic-mode-alist matching. --- lisp/files.el | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/lisp/files.el b/lisp/files.el index 112056e4f9e..969c2d93659 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2047,6 +2047,9 @@ to decide the buffer's major mode. If FUNCTION is nil, then it is not called. (That is a way of saying \"allow `auto-mode-alist' to decide for these files.\")") +(defvar magic-mode-regexp-match-limit 4000 + "Upper limit on `magic-mode-alist' regexp matches.") + (defun set-auto-mode (&optional keep-mode-if-same) "Select major mode appropriate for current buffer. @@ -2120,9 +2123,13 @@ only set the major mode, if that would change it." (unless done (if (setq done (save-excursion (goto-char (point-min)) - (assoc-default nil magic-mode-alist - (lambda (re dummy) - (looking-at re))))) + (save-restriction + (narrow-to-region (point-min) + (min (point-max) + (+ (point-min) magic-mode-regexp-match-limit))) + (assoc-default nil magic-mode-alist + (lambda (re dummy) + (looking-at re)))))) (set-auto-mode-0 done keep-mode-if-same) ;; Compare the filename against the entries in auto-mode-alist. (if buffer-file-name From 39ee09ff0bc821d86bb497cef47be991d8cc6202 Mon Sep 17 00:00:00 2001 From: Peter Galbraith Date: Sun, 5 Feb 2006 03:17:46 +0000 Subject: [PATCH 21/42] * mh-mime.el (mh-file-mime-type-substitutions): Added entries to handle openoffice documents, as provided by Eric Ding. --- lisp/mh-e/ChangeLog | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 8d8b64c75fb..920f4023005 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,8 @@ +2006-02-04 Peter S Galbraith + + * mh-mime.el (mh-file-mime-type-substitutions): Added entries to + handle openoffice documents, as provided by Eric Ding. + 2006-02-03 Bill Wohler * mh-e.el (Version, mh-version): Add +cvs to version. @@ -19,7 +24,7 @@ 88) with (min-colors 64) in face specifications so that MH-E still looks good on systems with fewer colors (such as Eric Ding's). -2006-02-03 Peter Galbraith +2006-02-03 Peter S Galbraith * mh-utils.el (mh-image-load-path): New variable to optionally hold the directory where MH-E images are stored. If nil, then From 632966a7327a77b834ebd1b6376b7a1c1d0b6126 Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Sun, 5 Feb 2006 03:35:05 +0000 Subject: [PATCH 22/42] *** empty log message *** --- lisp/ChangeLog | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0fb84d7de34..86408a86c61 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-02-04 Luc Teirlinck + + * ldefs-boot.el (widget-keymap): Fix corrupted value. + 2006-02-05 Kim F. Storm * files.el (magic-mode-regexp-match-limit): New defvar. From 82bda03877ffa74c3b0e410cd2ae5a759fed61ad Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Sun, 5 Feb 2006 03:42:36 +0000 Subject: [PATCH 23/42] (widget-keymap): Fix corrupted value. --- lisp/ldefs-boot.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 8f1c2a2f844..79c03ae4d6c 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -29928,7 +29928,7 @@ Call `insert' with ARGS even if surrounding text is read only. (defalias (quote advertised-widget-backward) (quote widget-backward)) -(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " (quote widget-forward)) (define-key map " " (quote widget-backward)) (define-key map [(shift tab)] (quote advertised-widget-backward)) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map "" (quote widget-button-press)) map) "\ +(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " (quote widget-forward)) (define-key map " " (quote widget-backward)) (define-key map [(shift tab)] (quote advertised-widget-backward)) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map " " (quote widget-button-press)) map) "\ Keymap containing useful binding for buffers containing widgets. Recommended as a parent keymap for modes using widgets.") From 6ada44a109cf4cc63cc1afc489b6a274cb9b920f Mon Sep 17 00:00:00 2001 From: Peter Galbraith Date: Sun, 5 Feb 2006 04:55:42 +0000 Subject: [PATCH 24/42] * mh-mime.el (mh-file-mime-type-substitutions): Added entries to handle openoffice documents, as provided by Eric Ding. --- lisp/mh-e/mh-mime.el | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index 787f5c371fe..b35b1e6aace 100644 --- a/lisp/mh-e/mh-mime.el +++ b/lisp/mh-e/mh-mime.el @@ -1733,7 +1733,19 @@ Returns nil if file command not on system." (defvar mh-file-mime-type-substitutions '(("application/msword" "\.xls" "application/ms-excel") ("application/msword" "\.ppt" "application/ms-powerpoint") - ("text/plain" "\.vcf" "text/x-vcard")) + ("text/plain" "\.vcf" "text/x-vcard") + ("text/rtf" "\.rtf" "application/rtf") + ("application/x-zip" "\.sxc" "application/vnd.sun.xml.calc") + ("application/x-zip" "\.sxd" "application/vnd.sun.xml.draw") + ("application/x-zip" "\.sxi" "application/vnd.sun.xml.impress") + ("application/x-zip" "\.sxw" "application/vnd.sun.xml.writer") + ("application/x-zip" "\.odg" "application/vnd.oasis.opendocument.graphics") + ("application/x-zip" "\.odi" "application/vnd.oasis.opendocument.image") + ("application/x-zip" "\.odp" + "application/vnd.oasis.opendocument.presentation") + ("application/x-zip" "\.ods" + "application/vnd.oasis.opendocument.spreadsheet") + ("application/x-zip" "\.odt" "application/vnd.oasis.opendocument.text")) "Substitutions to make for Content-Type returned from file command. The first element is the Content-Type returned by the file command. The second element is a regexp matching the file name, usually the From 7b0fed568b2e9963297bc43d99879760a5bfb2d5 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Sun, 5 Feb 2006 05:24:03 +0000 Subject: [PATCH 25/42] Stallman sent an email recently that ChangeLog entries for submitted patches should have their name. If the submitter has submitted papers, no problem, but entries for other small (say, < 15 lines) patches should have a "(tiny change)" after the submitter's email address. --- lisp/mh-e/ChangeLog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 920f4023005..8c2b843a282 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,7 +1,7 @@ -2006-02-04 Peter S Galbraith +2006-02-04 Eric Ding * mh-mime.el (mh-file-mime-type-substitutions): Added entries to - handle openoffice documents, as provided by Eric Ding. + handle OpenOffice documents. 2006-02-03 Bill Wohler From dc4d94d55f579557f4ff3d8b427f107b8f1fa543 Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Sun, 5 Feb 2006 05:35:44 +0000 Subject: [PATCH 26/42] (mh-inc-spool-list): Update example for Emacs 22 which has an emacsclient command that supports --eval. I had read that gnudoit was deprecated in favor of gnuclient anyway. --- lisp/mh-e/ChangeLog | 6 ++++++ lisp/mh-e/mh-e.el | 7 +++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 8c2b843a282..47c7808f192 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,9 @@ +2006-02-04 Bill Wohler + + * mh-e.el (mh-inc-spool-list): Update example for Emacs 22 which + has an emacsclient command that supports --eval. I had read that + gnudoit was deprecated in favor of gnuclient anyway. + 2006-02-04 Eric Ding * mh-mime.el (mh-file-mime-type-substitutions): Added entries to diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 9be827a8071..8012eab5c8a 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -1521,14 +1521,17 @@ on the \"INS\" button. Enter a \"Spool File\" of \"~/mail/mh-e\", a \"Folder\" of \"mh-e\", and a \"Key Binding\" of \"m\". You can use \"xbuffy\" to automate the incorporation of this mail -using the \"gnudoit\" command in the \"gnuserv\" package as follows: +using the Emacs 22 command \"emacsclient\" as follows: box ~/mail/mh-e title mh-e origMode polltime 10 headertime 0 - command gnudoit -q '(mh-inc-spool-mh-e)'" + command emacsclient --eval '(mh-inc-spool-mh-e)' + +In XEmacs, the command \"gnuclient\" is used in a similar +fashion." :type '(repeat (list (file :tag "Spool File") (string :tag "Folder") (character :tag "Key Binding"))) From c67a6c4884634f2424355cc517816e5fa3de04ff Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Sun, 5 Feb 2006 05:58:26 +0000 Subject: [PATCH 27/42] (find-definition-noselect): Minor doc fix. --- lisp/emacs-lisp/find-func.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index 4c218263a62..f9957a98e68 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -414,7 +414,7 @@ See `find-variable' for more details." (defun find-definition-noselect (symbol type &optional file) "Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL. TYPE says what type of definition: nil for a function, `defvar' for a -variabke, `defface' for a face. This function does not switch to the +variable, `defface' for a face. This function does not switch to the buffer nor display it. The library where SYMBOL is defined is searched for in FILE or From bec510112fc1862253975c6e4b00328983e511c4 Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Sun, 5 Feb 2006 06:04:32 +0000 Subject: [PATCH 28/42] *** empty log message *** --- lisp/ChangeLog | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 86408a86c61..200c8f0cd23 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,8 @@ 2006-02-04 Luc Teirlinck - * ldefs-boot.el (widget-keymap): Fix corrupted value. + * ldefs-boot.el: Regenerate. + + * emacs-lisp/find-func.el (find-definition-noselect): Minor doc fix. 2006-02-05 Kim F. Storm From 99155348ea17091cb91a99bf8e99851a1c6204b9 Mon Sep 17 00:00:00 2001 From: Luc Teirlinck Date: Sun, 5 Feb 2006 06:11:41 +0000 Subject: [PATCH 29/42] Regenerate. --- lisp/ldefs-boot.el | 715 ++++++++++++++++++++++----------------------- 1 file changed, 356 insertions(+), 359 deletions(-) diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 79c03ae4d6c..043c916564e 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -64,7 +64,7 @@ should return a grid vector array that is the new solution. ;;;*** ;;;### (autoloads (ada-mode ada-add-extensions) "ada-mode" "progmodes/ada-mode.el" -;;;;;; (17279 1509)) +;;;;;; (17276 44726)) ;;; Generated autoloads from progmodes/ada-mode.el (autoload (quote ada-add-extensions) "ada-mode" "\ @@ -151,7 +151,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" (17352 52670)) +;;;;;; "add-log.el" (17352 9346)) ;;; Generated autoloads from add-log.el (defvar add-log-current-defun-function nil "\ @@ -289,7 +289,7 @@ Fix any old-style date entries in the current log file to default format. ;;;### (autoloads (defadvice ad-add-advice ad-default-compilation-action ;;;;;; ad-redefinition-action) "advice" "emacs-lisp/advice.el" (17245 -;;;;;; 60162)) +;;;;;; 16459)) ;;; Generated autoloads from emacs-lisp/advice.el (defvar ad-redefinition-action (quote warn) "\ @@ -388,7 +388,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" (17324 5832)) +;;;;;; align) "align" "align.el" (17320 4537)) ;;; Generated autoloads from align.el (autoload (quote align) "align" "\ @@ -478,7 +478,7 @@ A replacement function for `newline-and-indent', aligning as it goes. ;;;*** ;;;### (autoloads (outlineify-sticky allout-mode) "allout" "allout.el" -;;;;;; (17296 21724)) +;;;;;; (17296 51181)) ;;; Generated autoloads from allout.el (autoload (quote allout-mode) "allout" "\ @@ -809,7 +809,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" (17306 39716)) +;;;;;; appt-issue-message) "appt" "calendar/appt.el" (17307 14150)) ;;; Generated autoloads from calendar/appt.el (defvar appt-issue-message t "\ @@ -897,7 +897,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" (17333 9509)) +;;;;;; "apropos.el" (17328 26188)) ;;; Generated autoloads from apropos.el (autoload (quote apropos-read-pattern) "apropos" "\ @@ -994,7 +994,7 @@ Returns list of symbols and documentation found. ;;;*** ;;;### (autoloads (archive-mode) "arc-mode" "arc-mode.el" (17379 -;;;;;; 14363)) +;;;;;; 25495)) ;;; Generated autoloads from arc-mode.el (autoload (quote archive-mode) "arc-mode" "\ @@ -1014,7 +1014,7 @@ archive. ;;;*** -;;;### (autoloads (array-mode) "array" "array.el" (17360 50450)) +;;;### (autoloads (array-mode) "array" "array.el" (17358 48216)) ;;; Generated autoloads from array.el (autoload (quote array-mode) "array" "\ @@ -1291,8 +1291,8 @@ Keymap summary ;;;*** -;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17351 -;;;;;; 27302)) +;;;### (autoloads (asm-mode) "asm-mode" "progmodes/asm-mode.el" (17349 +;;;;;; 14590)) ;;; Generated autoloads from progmodes/asm-mode.el (autoload (quote asm-mode) "asm-mode" "\ @@ -1444,7 +1444,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" -;;;;;; (17299 17747)) +;;;;;; (17298 27296)) ;;; Generated autoloads from emacs-lisp/autoload.el (autoload (quote update-file-autoloads) "autoload" "\ @@ -1615,7 +1615,7 @@ Vectors work just like lists. Nested backquotes are permitted. ;;;*** ;;;### (autoloads (display-battery-mode battery) "battery" "battery.el" -;;;;;; (17360 50450)) +;;;;;; (17359 55783)) ;;; Generated autoloads from battery.el (put 'battery-mode-line-string 'risky-local-variable t) @@ -1680,8 +1680,8 @@ non-interactive use see also `benchmark-run' and ;;;*** -;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17360 -;;;;;; 50497)) +;;;### (autoloads (bibtex-mode) "bibtex" "textmodes/bibtex.el" (17359 +;;;;;; 55795)) ;;; Generated autoloads from textmodes/bibtex.el (autoload (quote bibtex-mode) "bibtex" "\ @@ -1766,8 +1766,8 @@ Binhex decode region between START and END. ;;;*** -;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17251 -;;;;;; 22065)) +;;;### (autoloads (blackbox) "blackbox" "play/blackbox.el" (17246 +;;;;;; 40260)) ;;; Generated autoloads from play/blackbox.el (autoload (quote blackbox) "blackbox" "\ @@ -1889,7 +1889,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" (17279 1462)) +;;;;;; bookmark-set) "bookmark" "bookmark.el" (17270 26061)) ;;; Generated autoloads from bookmark.el (define-key ctl-x-map "rb" 'bookmark-jump) (define-key ctl-x-map "rm" 'bookmark-set) @@ -2079,7 +2079,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" (17288 11738)) +;;;;;; "browse-url" "net/browse-url.el" (17279 31149)) ;;; 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))) "\ @@ -2427,7 +2427,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" (17379 9019)) +;;;;;; "bs" "bs.el" (17375 39071)) ;;; Generated autoloads from bs.el (autoload (quote bs-cycle-next) "bs" "\ @@ -2468,11 +2468,11 @@ name of buffer configuration. ;;;*** ;;;### (autoloads (insert-text-button make-text-button insert-button -;;;;;; make-button define-button-type) "button" "button.el" (17333 -;;;;;; 9509)) +;;;;;; make-button define-button-type) "button" "button.el" (17328 +;;;;;; 38637)) ;;; 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) "\ +(defvar button-map (let ((map (make-sparse-keymap))) (define-key map " " (quote push-button)) (define-key map [mouse-2] (quote push-button)) map) "\ Keymap used by buttons.") (defvar button-buffer-map (let ((map (make-sparse-keymap))) (define-key map [9] (quote forward-button)) (define-key map " " (quote backward-button)) (define-key map [backtab] (quote backward-button)) map) "\ @@ -2557,7 +2557,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) "bytecomp" "emacs-lisp/bytecomp.el" -;;;;;; (17351 30819)) +;;;;;; (17351 57359)) ;;; Generated autoloads from emacs-lisp/bytecomp.el (autoload (quote byte-force-recompile) "bytecomp" "\ @@ -2653,7 +2653,7 @@ and corresponding effects. ;;;*** -;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17306 39716)) +;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (17307 14150)) ;;; Generated autoloads from calendar/cal-dst.el (put (quote calendar-daylight-savings-starts) (quote risky-local-variable) t) @@ -2663,7 +2663,7 @@ and corresponding effects. ;;;*** ;;;### (autoloads (list-yahrzeit-dates) "cal-hebrew" "calendar/cal-hebrew.el" -;;;;;; (17306 39717)) +;;;;;; (17307 14150)) ;;; Generated autoloads from calendar/cal-hebrew.el (autoload (quote list-yahrzeit-dates) "cal-hebrew" "\ @@ -2678,7 +2678,7 @@ 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" -;;;;;; (17296 17596)) +;;;;;; (17291 34530)) ;;; Generated autoloads from calc/calc.el (defvar calc-settings-file (convert-standard-filename "~/.calc.el") "\ @@ -2785,7 +2785,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" (17370 3977)) +;;;;;; "calendar/calendar.el" (17366 25839)) ;;; Generated autoloads from calendar/calendar.el (defvar calendar-offset 0 "\ @@ -3374,7 +3374,7 @@ it fails. ;;;*** ;;;### (autoloads (c-guess-basic-syntax) "cc-engine" "progmodes/cc-engine.el" -;;;;;; (17315 52872)) +;;;;;; (17315 15382)) ;;; Generated autoloads from progmodes/cc-engine.el (autoload (quote c-guess-basic-syntax) "cc-engine" "\ @@ -3386,7 +3386,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" -;;;;;; (17299 19576)) +;;;;;; (17296 51210)) ;;; Generated autoloads from progmodes/cc-mode.el (autoload (quote c-initialize-cc-mode) "cc-mode" "\ @@ -3544,7 +3544,7 @@ Key bindings: ;;;*** ;;;### (autoloads (c-set-offset c-add-style c-set-style) "cc-styles" -;;;;;; "progmodes/cc-styles.el" (17299 19576)) +;;;;;; "progmodes/cc-styles.el" (17296 51210)) ;;; Generated autoloads from progmodes/cc-styles.el (autoload (quote c-set-style) "cc-styles" "\ @@ -3595,8 +3595,8 @@ and exists only for compatibility reasons. ;;;*** -;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17299 -;;;;;; 19576)) +;;;### (autoloads nil "cc-subword" "progmodes/cc-subword.el" (17296 +;;;;;; 15980)) ;;; Generated autoloads from progmodes/cc-subword.el (autoload 'c-subword-mode "cc-subword" "Mode enabling subword movement and editing keys." t) @@ -4068,8 +4068,8 @@ checking of documentation strings. ;;;*** ;;;### (autoloads (encode-hz-buffer encode-hz-region decode-hz-buffer -;;;;;; decode-hz-region) "china-util" "language/china-util.el" (17102 -;;;;;; 18766)) +;;;;;; 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" "\ @@ -4136,7 +4136,7 @@ and runs the normal hook `command-history-hook'. ;;;*** -;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17379 9028)) +;;;### (autoloads nil "cl" "emacs-lisp/cl.el" (17374 39354)) ;;; Generated autoloads from emacs-lisp/cl.el (defvar custom-print-functions nil "\ @@ -4205,7 +4205,7 @@ is run). ;;;*** ;;;### (autoloads (cp-make-coding-system) "code-pages" "international/code-pages.el" -;;;;;; (17363 55568)) +;;;;;; (17363 41693)) ;;; Generated autoloads from international/code-pages.el (autoload (quote cp-make-coding-system) "code-pages" "\ @@ -4324,7 +4324,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" -;;;;;; (17279 1464)) +;;;;;; (17277 6644)) ;;; Generated autoloads from comint.el (defvar comint-output-filter-functions (quote (comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt)) "\ @@ -4415,7 +4415,7 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. ;;;*** ;;;### (autoloads (compare-windows) "compare-w" "compare-w.el" (17305 -;;;;;; 29717)) +;;;;;; 44991)) ;;; Generated autoloads from compare-w.el (autoload (quote compare-windows) "compare-w" "\ @@ -4452,7 +4452,7 @@ 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" (17314 42619)) +;;;;;; "compile" "progmodes/compile.el" (17310 14110)) ;;; Generated autoloads from progmodes/compile.el (defvar compilation-mode-hook nil "\ @@ -4613,7 +4613,7 @@ This is the value of `next-error-function' in Compilation buffers. ;;;*** ;;;### (autoloads (partial-completion-mode) "complete" "complete.el" -;;;;;; (17315 6760)) +;;;;;; (17315 15381)) ;;; Generated autoloads from complete.el (defvar partial-completion-mode nil "\ @@ -4656,7 +4656,7 @@ second TAB brings up the `*Completions*' buffer. ;;;*** ;;;### (autoloads (dynamic-completion-mode) "completion" "completion.el" -;;;;;; (17370 3956)) +;;;;;; (17366 63944)) ;;; Generated autoloads from completion.el (defvar dynamic-completion-mode nil "\ @@ -4679,7 +4679,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" (17324 5833)) +;;;;;; "composite" "composite.el" (17318 56743)) ;;; 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))) "\ @@ -4900,7 +4900,7 @@ 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" (17259 28146)) +;;;;;; conf-mode) "conf-mode" "textmodes/conf-mode.el" (17251 52024)) ;;; Generated autoloads from textmodes/conf-mode.el (autoload (quote conf-mode) "conf-mode" "\ @@ -5109,7 +5109,7 @@ Insert a copyright by $ORGANIZATION notice at cursor. ;;;*** ;;;### (autoloads (cperl-mode) "cperl-mode" "progmodes/cperl-mode.el" -;;;;;; (17279 1513)) +;;;;;; (17276 44726)) ;;; Generated autoloads from progmodes/cperl-mode.el (autoload (quote cperl-mode) "cperl-mode" "\ @@ -5282,7 +5282,7 @@ or as help on variables `cperl-tips', `cperl-problems', ;;;*** ;;;### (autoloads (cpp-parse-edit cpp-highlight-buffer) "cpp" "progmodes/cpp.el" -;;;;;; (17360 50494)) +;;;;;; (17359 40965)) ;;; Generated autoloads from progmodes/cpp.el (autoload (quote cpp-highlight-buffer) "cpp" "\ @@ -5325,7 +5325,7 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise. ;;;*** ;;;### (autoloads (completing-read-multiple) "crm" "emacs-lisp/crm.el" -;;;;;; (17315 6765)) +;;;;;; (17315 15382)) ;;; Generated autoloads from emacs-lisp/crm.el (autoload (quote completing-read-multiple) "crm" "\ @@ -5361,7 +5361,7 @@ INHERIT-INPUT-METHOD. ;;;*** ;;;### (autoloads (cua-selection-mode cua-mode) "cua-base" "emulation/cua-base.el" -;;;;;; (17379 9029)) +;;;;;; (17377 26465)) ;;; Generated autoloads from emulation/cua-base.el (defvar cua-mode nil "\ @@ -5428,7 +5428,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" (17370 3957)) +;;;;;; customize-set-value) "cus-edit" "cus-edit.el" (17369 18480)) ;;; Generated autoloads from cus-edit.el (add-hook 'same-window-regexps "\\`\\*Customiz.*\\*\\'") @@ -5686,7 +5686,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" (17340 716)) +;;;;;; custom-declare-face) "cus-face" "cus-face.el" (17337 17201)) ;;; Generated autoloads from cus-face.el (autoload (quote custom-declare-face) "cus-face" "\ @@ -5756,7 +5756,7 @@ This means reset FACE to its value in FROM-THEME. ;;;*** ;;;### (autoloads (customize-create-theme) "cus-theme" "cus-theme.el" -;;;;;; (17351 27276)) +;;;;;; (17351 13490)) ;;; Generated autoloads from cus-theme.el (autoload (quote customize-create-theme) "cus-theme" "\ @@ -5778,7 +5778,7 @@ Mode used for cvs status output. ;;;*** ;;;### (autoloads (global-cwarn-mode turn-on-cwarn-mode cwarn-mode) -;;;;;; "cwarn" "progmodes/cwarn.el" (17299 17749)) +;;;;;; "cwarn" "progmodes/cwarn.el" (17298 27296)) ;;; Generated autoloads from progmodes/cwarn.el (autoload (quote cwarn-mode) "cwarn" "\ @@ -5851,7 +5851,7 @@ If the argument is nil, we return the display table to its standard state. ;;;*** ;;;### (autoloads (dabbrev-expand dabbrev-completion) "dabbrev" "dabbrev.el" -;;;;;; (17296 17578)) +;;;;;; (17290 15905)) ;;; Generated autoloads from dabbrev.el (define-key esc-map "/" 'dabbrev-expand) (define-key esc-map [?\C-/] 'dabbrev-completion) @@ -5895,8 +5895,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. ;;;*** -;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17279 -;;;;;; 1514)) +;;;### (autoloads (dcl-mode) "dcl-mode" "progmodes/dcl-mode.el" (17276 +;;;;;; 44726)) ;;; Generated autoloads from progmodes/dcl-mode.el (autoload (quote dcl-mode) "dcl-mode" "\ @@ -6023,7 +6023,7 @@ There is some minimal font-lock support (see vars ;;;*** ;;;### (autoloads (cancel-debug-on-entry debug-on-entry debug) "debug" -;;;;;; "emacs-lisp/debug.el" (17244 43742)) +;;;;;; "emacs-lisp/debug.el" (17244 54746)) ;;; Generated autoloads from emacs-lisp/debug.el (setq debugger (quote debug)) @@ -6122,7 +6122,7 @@ START and END delimits the corners of text rectangle. ;;;*** ;;;### (autoloads (delphi-mode) "delphi" "progmodes/delphi.el" (17333 -;;;;;; 9524)) +;;;;;; 17859)) ;;; Generated autoloads from progmodes/delphi.el (autoload (quote delphi-mode) "delphi" "\ @@ -6203,7 +6203,7 @@ any selection. ;;;*** ;;;### (autoloads (derived-mode-init-mode-variables define-derived-mode) -;;;;;; "derived" "emacs-lisp/derived.el" (17299 17747)) +;;;;;; "derived" "emacs-lisp/derived.el" (17298 27296)) ;;; Generated autoloads from emacs-lisp/derived.el (autoload (quote define-derived-mode) "derived" "\ @@ -6268,7 +6268,7 @@ the first time the mode is used. ;;;*** ;;;### (autoloads (describe-char describe-text-properties) "descr-text" -;;;;;; "descr-text.el" (17333 9511)) +;;;;;; "descr-text.el" (17329 62402)) ;;; Generated autoloads from descr-text.el (autoload (quote describe-text-properties) "descr-text" "\ @@ -6293,7 +6293,7 @@ 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-locals-to-save -;;;;;; desktop-save-mode) "desktop" "desktop.el" (17370 3958)) +;;;;;; desktop-save-mode) "desktop" "desktop.el" (17364 14032)) ;;; Generated autoloads from desktop.el (defvar desktop-save-mode nil "\ @@ -6525,7 +6525,7 @@ Not documented ;;;*** ;;;### (autoloads (diary-mode diary-mail-entries diary) "diary-lib" -;;;;;; "calendar/diary-lib.el" (17306 39719)) +;;;;;; "calendar/diary-lib.el" (17307 14150)) ;;; Generated autoloads from calendar/diary-lib.el (autoload (quote diary) "diary-lib" "\ @@ -6634,7 +6634,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" (17360 50454)) +;;;;;; "dired" "dired.el" (17359 58110)) ;;; Generated autoloads from dired.el (defvar dired-listing-switches "-al" "\ @@ -6839,7 +6839,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" (17360 50453)) +;;;;;; dired-diff) "dired-aux" "dired-aux.el" (17356 25047)) ;;; Generated autoloads from dired-aux.el (autoload (quote dired-diff) "dired-aux" "\ @@ -7247,7 +7247,7 @@ true then the type of the file linked to by FILE is printed instead. ;;;*** -;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17279 1466)) +;;;### (autoloads (dired-jump) "dired-x" "dired-x.el" (17273 1329)) ;;; Generated autoloads from dired-x.el (autoload (quote dired-jump) "dired-x" "\ @@ -7299,7 +7299,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" (17297 35677)) +;;;;;; make-display-table) "disp-table" "disp-table.el" (17297 52532)) ;;; Generated autoloads from disp-table.el (autoload (quote make-display-table) "disp-table" "\ @@ -7460,7 +7460,7 @@ Locate SOA record and increment the serial field. ;;;*** -;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17370 3988)) +;;;### (autoloads (doctor) "doctor" "play/doctor.el" (17364 14033)) ;;; Generated autoloads from play/doctor.el (autoload (quote doctor) "doctor" "\ @@ -7515,7 +7515,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" (17299 17748)) +;;;;;; "emacs-lisp/easy-mmode.el" (17298 27296)) ;;; Generated autoloads from emacs-lisp/easy-mmode.el (defalias (quote easy-mmode-define-minor-mode) (quote define-minor-mode)) @@ -7607,8 +7607,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" (17251 -;;;;;; 22040)) +;;;;;; easy-menu-define) "easymenu" "emacs-lisp/easymenu.el" (17250 +;;;;;; 28361)) ;;; Generated autoloads from emacs-lisp/easymenu.el (put (quote easy-menu-define) (quote lisp-indent-function) (quote defun)) @@ -8202,7 +8202,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. ;;;### (autoloads (edebug-all-forms edebug-all-defs edebug-eval-top-level-form ;;;;;; def-edebug-spec edebug-all-forms edebug-all-defs) "edebug" -;;;;;; "emacs-lisp/edebug.el" (17325 10417)) +;;;;;; "emacs-lisp/edebug.el" (17324 31506)) ;;; Generated autoloads from emacs-lisp/edebug.el (defvar edebug-all-defs nil "\ @@ -8275,7 +8275,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" (17288 11719)) +;;;;;; ediff-files3 ediff-files) "ediff" "ediff.el" (17287 6474)) ;;; Generated autoloads from ediff.el (autoload (quote ediff-files) "ediff" "\ @@ -8536,7 +8536,7 @@ Not documented ;;;*** ;;;### (autoloads (ediff-show-registry) "ediff-mult" "ediff-mult.el" -;;;;;; (17379 9020)) +;;;;;; (17374 18401)) ;;; Generated autoloads from ediff-mult.el (autoload (quote ediff-show-registry) "ediff-mult" "\ @@ -8549,7 +8549,7 @@ Display Ediff's registry. ;;;*** ;;;### (autoloads (ediff-toggle-use-toolbar ediff-toggle-multiframe) -;;;;;; "ediff-util" "ediff-util.el" (17279 1467)) +;;;;;; "ediff-util" "ediff-util.el" (17274 24016)) ;;; Generated autoloads from ediff-util.el (autoload (quote ediff-toggle-multiframe) "ediff-util" "\ @@ -8745,8 +8745,8 @@ Initialize elint. ;;;*** ;;;### (autoloads (elp-results elp-instrument-package elp-instrument-list -;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17296 -;;;;;; 17597)) +;;;;;; elp-instrument-function) "elp" "emacs-lisp/elp.el" (17291 +;;;;;; 34530)) ;;; Generated autoloads from emacs-lisp/elp.el (autoload (quote elp-instrument-function) "elp" "\ @@ -8780,7 +8780,7 @@ displayed. ;;;*** ;;;### (autoloads (report-emacs-bug) "emacsbug" "mail/emacsbug.el" -;;;;;; (17351 27291)) +;;;;;; (17347 48575)) ;;; Generated autoloads from mail/emacsbug.el (autoload (quote report-emacs-bug) "emacsbug" "\ @@ -8795,7 +8795,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 2775)) +;;;;;; "emerge.el" (17167 2962)) ;;; Generated autoloads from emerge.el (defvar menu-bar-emerge-menu (make-sparse-keymap "Emerge")) @@ -8934,7 +8934,7 @@ Not documented ;;;*** ;;;### (autoloads (erc-select erc-select-read-args) "erc" "erc/erc.el" -;;;;;; (17379 11797)) +;;;;;; (17379 25495)) ;;; Generated autoloads from erc/erc.el (autoload (quote erc-select-read-args) "erc" "\ @@ -8962,33 +8962,33 @@ be invoked for those parameters' values ;;;*** ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (17372 -;;;;;; 48744)) +;;;;;; 48745)) ;;; Generated autoloads from erc/erc-autoaway.el (autoload 'erc-autoaway-mode "erc-autoaway") ;;;*** ;;;### (autoloads nil "erc-autojoin" "erc/erc-autojoin.el" (17372 -;;;;;; 48744)) +;;;;;; 48745)) ;;; Generated autoloads from erc/erc-autojoin.el (autoload 'erc-autojoin-mode "erc-autojoin" nil t) ;;;*** -;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17372 48744)) +;;;### (autoloads nil "erc-button" "erc/erc-button.el" (17372 48745)) ;;; Generated autoloads from erc/erc-button.el (autoload 'erc-button-mode "erc-button" nil t) ;;;*** -;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (17372 48744)) +;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (17372 48745)) ;;; Generated autoloads from erc/erc-compat.el (autoload 'erc-define-minor-mode "erc-compat") ;;;*** ;;;### (autoloads (erc-complete) "erc-complete" "erc/erc-complete.el" -;;;;;; (17372 48744)) +;;;;;; (17372 48745)) ;;; Generated autoloads from erc/erc-complete.el (autoload (quote erc-complete) "erc-complete" "\ @@ -9001,7 +9001,7 @@ This function is obsolete, use `erc-pcomplete' instead. ;;;*** ;;;### (autoloads (erc-ctcp-query-DCC pcomplete/erc-mode/DCC erc-cmd-DCC) -;;;;;; "erc-dcc" "erc/erc-dcc.el" (17372 48744)) +;;;;;; "erc-dcc" "erc/erc-dcc.el" (17372 48745)) ;;; Generated autoloads from erc/erc-dcc.el (autoload (quote erc-cmd-DCC) "erc-dcc" "\ @@ -9033,7 +9033,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" -;;;;;; (17372 48744)) +;;;;;; (17372 48745)) ;;; Generated autoloads from erc/erc-ezbounce.el (autoload (quote erc-cmd-ezb) "erc-ezbounce" "\ @@ -9096,7 +9096,7 @@ Add EZBouncer convenience functions to ERC. ;;;*** ;;;### (autoloads (erc-fill) "erc-fill" "erc/erc-fill.el" (17372 -;;;;;; 48744)) +;;;;;; 48745)) ;;; Generated autoloads from erc/erc-fill.el (autoload 'erc-fill-mode "erc-fill" nil t) @@ -9109,7 +9109,7 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. ;;;*** ;;;### (autoloads (erc-create-imenu-index) "erc-imenu" "erc/erc-imenu.el" -;;;;;; (17372 48744)) +;;;;;; (17372 48745)) ;;; Generated autoloads from erc/erc-imenu.el (autoload (quote erc-create-imenu-index) "erc-imenu" "\ @@ -9120,7 +9120,7 @@ Not documented ;;;*** ;;;### (autoloads (erc-chanlist erc-cmd-LIST) "erc-list" "erc/erc-list.el" -;;;;;; (17372 48744)) +;;;;;; (17372 48745)) ;;; Generated autoloads from erc/erc-list.el (autoload (quote erc-cmd-LIST) "erc-list" "\ @@ -9140,7 +9140,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" (17372 48744)) +;;;;;; "erc/erc-log.el" (17372 48745)) ;;; Generated autoloads from erc/erc-log.el (autoload 'erc-log-mode "erc-log" nil t) @@ -9172,7 +9172,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" -;;;;;; (17372 48744)) +;;;;;; (17372 48745)) ;;; Generated autoloads from erc/erc-match.el (autoload 'erc-match-mode "erc-match") @@ -9219,7 +9219,7 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. ;;;*** ;;;### (autoloads (erc-server-select erc-determine-network) "erc-nets" -;;;;;; "erc/erc-nets.el" (17372 48744)) +;;;;;; "erc/erc-nets.el" (17372 48745)) ;;; Generated autoloads from erc/erc-nets.el (autoload (quote erc-determine-network) "erc-nets" "\ @@ -9237,7 +9237,7 @@ Interactively select a server to connect to using `erc-server-alist'. ;;;*** ;;;### (autoloads (erc-cmd-WHOLEFT) "erc-netsplit" "erc/erc-netsplit.el" -;;;;;; (17372 48744)) +;;;;;; (17372 48745)) ;;; Generated autoloads from erc/erc-netsplit.el (autoload 'erc-netsplit-mode "erc-netsplit") @@ -9249,7 +9249,7 @@ Show who's gone. ;;;*** ;;;### (autoloads (erc-nickserv-identify erc-nickserv-identify-mode) -;;;;;; "erc-nickserv" "erc/erc-nickserv.el" (17372 48744)) +;;;;;; "erc-nickserv" "erc/erc-nickserv.el" (17372 48745)) ;;; Generated autoloads from erc/erc-nickserv.el (autoload 'erc-services-mode "erc-nickserv" nil t) @@ -9267,7 +9267,7 @@ When called interactively, read the password using `read-passwd'. ;;;*** ;;;### (autoloads (pcomplete/erc-mode/NOTIFY erc-cmd-NOTIFY) "erc-notify" -;;;;;; "erc/erc-notify.el" (17372 48744)) +;;;;;; "erc/erc-notify.el" (17372 48745)) ;;; Generated autoloads from erc/erc-notify.el (autoload 'erc-notify-mode "erc-notify" nil t) @@ -9285,39 +9285,39 @@ Not documented ;;;*** -;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17372 48744)) +;;;### (autoloads nil "erc-page" "erc/erc-page.el" (17372 48745)) ;;; Generated autoloads from erc/erc-page.el (autoload 'erc-page-mode "erc-page") ;;;*** ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (17372 -;;;;;; 48744)) +;;;;;; 48745)) ;;; Generated autoloads from erc/erc-pcomplete.el (autoload 'erc-completion-mode "erc-pcomplete" nil t) ;;;*** -;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17372 48744)) +;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (17372 48745)) ;;; Generated autoloads from erc/erc-replace.el (autoload 'erc-replace-mode "erc-replace") ;;;*** -;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17372 48744)) +;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (17372 48745)) ;;; Generated autoloads from erc/erc-ring.el (autoload 'erc-ring-mode "erc-ring" nil t) ;;;*** -;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17372 48744)) +;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (17372 48745)) ;;; Generated autoloads from erc/erc-sound.el (autoload 'erc-sound-mode "erc-sound") ;;;*** ;;;### (autoloads (erc-speedbar-browser) "erc-speedbar" "erc/erc-speedbar.el" -;;;;;; (17373 24060)) +;;;;;; (17373 26133)) ;;; Generated autoloads from erc/erc-speedbar.el (autoload (quote erc-speedbar-browser) "erc-speedbar" "\ @@ -9329,19 +9329,19 @@ This will add a speedbar major display mode. ;;;*** ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (17372 -;;;;;; 48744)) +;;;;;; 48745)) ;;; Generated autoloads from erc/erc-spelling.el (autoload 'erc-spelling-mode "erc-spelling" nil t) ;;;*** -;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17374 44611)) +;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (17374 46377)) ;;; Generated autoloads from erc/erc-stamp.el (autoload 'erc-timestamp-mode "erc-stamp" nil t) ;;;*** -;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17372 48744)) +;;;### (autoloads nil "erc-track" "erc/erc-track.el" (17372 48745)) ;;; 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) @@ -9349,7 +9349,7 @@ This will add a speedbar major display mode. ;;;*** ;;;### (autoloads (erc-truncate-buffer erc-truncate-buffer-to-size) -;;;;;; "erc-truncate" "erc/erc-truncate.el" (17372 48744)) +;;;;;; "erc-truncate" "erc/erc-truncate.el" (17372 48745)) ;;; Generated autoloads from erc/erc-truncate.el (autoload 'erc-truncate-mode "erc-truncate" nil t) @@ -9369,7 +9369,7 @@ Meant to be used in hooks, like `erc-insert-post-hook'. ;;;*** ;;;### (autoloads (erc-xdcc-add-file) "erc-xdcc" "erc/erc-xdcc.el" -;;;;;; (17372 48744)) +;;;;;; (17372 48745)) ;;; Generated autoloads from erc/erc-xdcc.el (autoload (quote erc-xdcc-add-file) "erc-xdcc" "\ @@ -9752,7 +9752,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" (17324 5851)) +;;;;;; "ethio-util" "language/ethio-util.el" (17316 61871)) ;;; Generated autoloads from language/ethio-util.el (autoload (quote setup-ethiopic-environment-internal) "ethio-util" "\ @@ -9947,7 +9947,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" -;;;;;; (17259 28136)) +;;;;;; (17255 34870)) ;;; Generated autoloads from net/eudc.el (autoload (quote eudc-set-server) "eudc" "\ @@ -10154,7 +10154,7 @@ This is used only in conjunction with `expand-add-abbrevs'. ;;;*** -;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17279 1515)) +;;;### (autoloads (f90-mode) "f90" "progmodes/f90.el" (17276 44726)) ;;; Generated autoloads from progmodes/f90.el (autoload (quote f90-mode) "f90" "\ @@ -10425,7 +10425,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 28131)) +;;;;;; feedmail-send-it) "feedmail" "mail/feedmail.el" (17258 33756)) ;;; Generated autoloads from mail/feedmail.el (autoload (quote feedmail-send-it) "feedmail" "\ @@ -10479,7 +10479,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" (17279 6020)) +;;;;;; find-file-at-point ffap-next) "ffap" "ffap.el" (17279 16968)) ;;; Generated autoloads from ffap.el (autoload (quote ffap-next) "ffap" "\ @@ -10721,7 +10721,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" (17362 39736)) +;;;;;; "emacs-lisp/find-func.el" (17381 36246)) ;;; Generated autoloads from emacs-lisp/find-func.el (autoload (quote find-library) "find-func" "\ @@ -10822,7 +10822,7 @@ See `find-variable' for more details. (autoload (quote find-definition-noselect) "find-func" "\ Return a pair `(BUFFER . POINT)' pointing to the definition of SYMBOL. TYPE says what type of definition: nil for a function, `defvar' for a -variabke, `defface' for a face. This function does not switch to the +variable, `defface' for a face. This function does not switch to the buffer nor display it. The library where SYMBOL is defined is searched for in FILE or @@ -10869,7 +10869,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" (17279 1470)) +;;;;;; find-lisp-find-dired) "find-lisp" "find-lisp.el" (17269 21886)) ;;; Generated autoloads from find-lisp.el (autoload (quote find-lisp-find-dired) "find-lisp" "\ @@ -10890,7 +10890,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" (17245 60154)) +;;;;;; "finder" "finder.el" (17245 51608)) ;;; Generated autoloads from finder.el (autoload (quote finder-list-keywords) "finder" "\ @@ -10934,7 +10934,7 @@ to get the effect of a C-q. ;;;*** ;;;### (autoloads (fill-flowed fill-flowed-encode) "flow-fill" "gnus/flow-fill.el" -;;;;;; (17259 28124)) +;;;;;; (17254 33237)) ;;; Generated autoloads from gnus/flow-fill.el (autoload (quote fill-flowed-encode) "flow-fill" "\ @@ -10950,7 +10950,7 @@ Not documented ;;;*** ;;;### (autoloads (flymake-mode-off flymake-mode-on flymake-mode) -;;;;;; "flymake" "progmodes/flymake.el" (17351 27304)) +;;;;;; "flymake" "progmodes/flymake.el" (17348 7449)) ;;; Generated autoloads from progmodes/flymake.el (autoload (quote flymake-mode) "flymake" "\ @@ -10974,7 +10974,7 @@ Turn flymake mode off. ;;;### (autoloads (flyspell-buffer flyspell-region flyspell-mode-off ;;;;;; flyspell-mode flyspell-prog-mode) "flyspell" "textmodes/flyspell.el" -;;;;;; (17370 30566)) +;;;;;; (17370 39824)) ;;; Generated autoloads from textmodes/flyspell.el (autoload (quote flyspell-prog-mode) "flyspell" "\ @@ -11166,7 +11166,7 @@ Visit a file in Forms mode in other window. ;;;*** ;;;### (autoloads (fortran-mode fortran-tab-mode-default) "fortran" -;;;;;; "progmodes/fortran.el" (17360 50495)) +;;;;;; "progmodes/fortran.el" (17358 30049)) ;;; Generated autoloads from progmodes/fortran.el (defvar fortran-tab-mode-default nil "\ @@ -11373,7 +11373,7 @@ default appearance of fringes on all frames, see the command ;;;*** ;;;### (autoloads (gdb-enable-debug-log gdba) "gdb-ui" "progmodes/gdb-ui.el" -;;;;;; (17333 9525)) +;;;;;; (17331 18137)) ;;; Generated autoloads from progmodes/gdb-ui.el (autoload (quote gdba) "gdb-ui" "\ @@ -11512,7 +11512,7 @@ regular expression that can be used as an element of ;;;*** ;;;### (autoloads (glasses-mode) "glasses" "progmodes/glasses.el" -;;;;;; (17333 9525)) +;;;;;; (17333 17859)) ;;; Generated autoloads from progmodes/glasses.el (autoload (quote glasses-mode) "glasses" "\ @@ -11525,7 +11525,7 @@ at places they belong to. ;;;*** ;;;### (autoloads (gnus gnus-other-frame gnus-slave gnus-no-server -;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17324 5849)) +;;;;;; gnus-slave-no-server) "gnus" "gnus/gnus.el" (17316 41648)) ;;; Generated autoloads from gnus/gnus.el (autoload (quote gnus-slave-no-server) "gnus" "\ @@ -11576,7 +11576,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" (17324 5844)) +;;;;;; "gnus/gnus-agent.el" (17316 41648)) ;;; Generated autoloads from gnus/gnus-agent.el (autoload (quote gnus-unplugged) "gnus-agent" "\ @@ -11667,7 +11667,7 @@ If CLEAN, obsolete (ignore). ;;;*** ;;;### (autoloads (gnus-article-prepare-display) "gnus-art" "gnus/gnus-art.el" -;;;;;; (17370 3981)) +;;;;;; (17367 34952)) ;;; Generated autoloads from gnus/gnus-art.el (autoload (quote gnus-article-prepare-display) "gnus-art" "\ @@ -11691,7 +11691,7 @@ 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" (17305 -;;;;;; 29739)) +;;;;;; 44993)) ;;; Generated autoloads from gnus/gnus-cache.el (autoload (quote gnus-jog-cache) "gnus-cache" "\ @@ -11733,7 +11733,7 @@ supported. ;;;*** ;;;### (autoloads (gnus-delay-initialize gnus-delay-send-queue gnus-delay-article) -;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17296 17599)) +;;;;;; "gnus-delay" "gnus/gnus-delay.el" (17294 14916)) ;;; Generated autoloads from gnus/gnus-delay.el (autoload (quote gnus-delay-article) "gnus-delay" "\ @@ -11832,7 +11832,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" (17360 50473)) +;;;;;; "gnus-group" "gnus/gnus-group.el" (17356 25047)) ;;; Generated autoloads from gnus/gnus-group.el (autoload (quote gnus-fetch-group) "gnus-group" "\ @@ -12002,7 +12002,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" (17351 27285)) +;;;;;; "gnus-msg" "gnus/gnus-msg.el" (17348 27747)) ;;; Generated autoloads from gnus/gnus-msg.el (autoload (quote gnus-msg-mail) "gnus-msg" "\ @@ -12199,8 +12199,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" (17360 -;;;;;; 50474)) +;;;;;; gnus-declare-backend) "gnus-start" "gnus/gnus-start.el" (17356 +;;;;;; 25047)) ;;; Generated autoloads from gnus/gnus-start.el (autoload (quote gnus-declare-backend) "gnus-start" "\ @@ -12253,7 +12253,7 @@ Use \\[describe-mode] for more info. ;;;*** ;;;### (autoloads (goto-address goto-address-at-point) "goto-addr" -;;;;;; "net/goto-addr.el" (17333 9522)) +;;;;;; "net/goto-addr.el" (17333 17859)) ;;; Generated autoloads from net/goto-addr.el (define-obsolete-function-alias (quote goto-address-at-mouse) (quote goto-address-at-point) "22.1") @@ -12420,7 +12420,7 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. ;;;*** ;;;### (autoloads (gud-tooltip-mode gdb-script-mode bashdb jdb pdb -;;;;;; perldb xdb dbx sdb gdb) "gud" "progmodes/gud.el" (17342 22194)) +;;;;;; perldb xdb dbx sdb gdb) "gud" "progmodes/gud.el" (17342 36761)) ;;; Generated autoloads from progmodes/gud.el (autoload (quote gdb) "gud" "\ @@ -12695,7 +12695,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" (17370 3962)) +;;;;;; "help-fns.el" (17369 18480)) ;;; Generated autoloads from help-fns.el (autoload (quote help-with-tutorial) "help-fns" "\ @@ -12761,7 +12761,7 @@ BUFFER should be a buffer or a buffer name. ;;;*** ;;;### (autoloads (three-step-help) "help-macro" "help-macro.el" -;;;;;; (17314 42605)) +;;;;;; (17312 51444)) ;;; Generated autoloads from help-macro.el (defvar three-step-help nil "\ @@ -12777,7 +12777,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" (17333 9514)) +;;;;;; help-mode) "help-mode" "help-mode.el" (17329 45783)) ;;; Generated autoloads from help-mode.el (autoload (quote help-mode) "help-mode" "\ @@ -12972,7 +12972,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" -;;;;;; (17379 9020)) +;;;;;; (17378 6213)) ;;; Generated autoloads from hi-lock.el (autoload (quote hi-lock-mode) "hi-lock" "\ @@ -13211,7 +13211,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" (17379 9021)) +;;;;;; "hilit-chg" "hilit-chg.el" (17376 48878)) ;;; Generated autoloads from hilit-chg.el (autoload (quote highlight-changes-remove-highlight) "hilit-chg" "\ @@ -13414,7 +13414,7 @@ argument VERBOSE non-nil makes the function verbose. ;;;*** ;;;### (autoloads (global-hl-line-mode hl-line-mode) "hl-line" "hl-line.el" -;;;;;; (17363 55566)) +;;;;;; (17363 41687)) ;;; Generated autoloads from hl-line.el (autoload (quote hl-line-mode) "hl-line" "\ @@ -13456,7 +13456,7 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and ;;;*** ;;;### (autoloads (list-holidays holidays) "holidays" "calendar/holidays.el" -;;;;;; (17306 39719)) +;;;;;; (17307 14150)) ;;; Generated autoloads from calendar/holidays.el (autoload (quote holidays) "holidays" "\ @@ -13539,7 +13539,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" (17379 9021)) +;;;;;; ibuffer-auto-mode) "ibuf-ext" "ibuf-ext.el" (17378 33493)) ;;; Generated autoloads from ibuf-ext.el (autoload (quote ibuffer-auto-mode) "ibuf-ext" "\ @@ -13992,7 +13992,7 @@ bound to the current value of the filter. ;;;*** ;;;### (autoloads (ibuffer ibuffer-other-window ibuffer-list-buffers) -;;;;;; "ibuffer" "ibuffer.el" (17379 9022)) +;;;;;; "ibuffer" "ibuffer.el" (17378 33493)) ;;; Generated autoloads from ibuffer.el (autoload (quote ibuffer-list-buffers) "ibuffer" "\ @@ -14033,7 +14033,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" (17244 46363)) +;;;;;; "calendar/icalendar.el" (17244 54746)) ;;; Generated autoloads from calendar/icalendar.el (autoload (quote icalendar-export-file) "icalendar" "\ @@ -14107,7 +14107,7 @@ With a numeric argument, turn Icomplete mode on iff ARG is positive. ;;;*** -;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17279 1518)) +;;;### (autoloads (icon-mode) "icon" "progmodes/icon.el" (17276 44726)) ;;; Generated autoloads from progmodes/icon.el (autoload (quote icon-mode) "icon" "\ @@ -14148,7 +14148,7 @@ with no args, if that value is non-nil. ;;;*** ;;;### (autoloads (idlwave-shell) "idlw-shell" "progmodes/idlw-shell.el" -;;;;;; (17299 17751)) +;;;;;; (17298 27296)) ;;; Generated autoloads from progmodes/idlw-shell.el (autoload (quote idlwave-shell) "idlw-shell" "\ @@ -14174,7 +14174,7 @@ See also the variable `idlwave-shell-prompt-pattern'. ;;;*** ;;;### (autoloads (idlwave-mode) "idlwave" "progmodes/idlwave.el" -;;;;;; (17279 1521)) +;;;;;; (17276 44726)) ;;; Generated autoloads from progmodes/idlwave.el (autoload (quote idlwave-mode) "idlwave" "\ @@ -14310,8 +14310,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" (17305 -;;;;;; 29723)) +;;;;;; ido-switch-buffer ido-mode ido-mode) "ido" "ido.el" (17304 +;;;;;; 41554)) ;;; Generated autoloads from ido.el (defvar ido-mode nil "\ @@ -14603,7 +14603,7 @@ Toggle inline image minor mode. ;;;### (autoloads (defimage find-image remove-images insert-sliced-image ;;;;;; insert-image put-image create-image image-type-available-p ;;;;;; image-type-from-file-name image-type-from-file-header image-type-from-buffer -;;;;;; image-type-from-data) "image" "image.el" (17245 60154)) +;;;;;; image-type-from-data) "image" "image.el" (17245 16456)) ;;; Generated autoloads from image.el (autoload (quote image-type-from-data) "image" "\ @@ -14817,7 +14817,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" (17379 9022)) +;;;;;; "image-mode" "image-mode.el" (17374 39346)) ;;; Generated autoloads from image-mode.el (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) (push '("\\.png\\'" . image-mode) auto-mode-alist) @@ -14975,7 +14975,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" (17340 722)) +;;;;;; "ind-util" "language/ind-util.el" (17339 56590)) ;;; Generated autoloads from language/ind-util.el (autoload (quote indian-compose-region) "ind-util" "\ @@ -15085,7 +15085,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" (17370 3964)) +;;;;;; info info-other-window) "info" "info.el" (17380 50980)) ;;; Generated autoloads from info.el (autoload (quote info-other-window) "info" "\ @@ -15142,11 +15142,11 @@ Go to the Info directory node. \(fn)" t nil) (autoload (quote Info-index) "info" "\ -Look up a string TOPIC in the index for this file. +Look up a string TOPIC in the index for this manual and go to that entry. If there are no exact matches to the specified topic, this chooses the first match which is a case-insensitive substring of a topic. Use the \\\\[Info-index-next] command to see the other matches. -Give a blank topic name to go to the Index node itself. +Give an empty topic name to go to the Index node itself. \(fn TOPIC)" t nil) @@ -15206,7 +15206,7 @@ Advanced commands: \\[Info-search-case-sensitively] Search through this Info file for specified regexp case-sensitively. \\[Info-search-next] Search for another occurrence of regexp from a previous \\\\[Info-search] command. -\\[Info-index] Look up a topic in this file's Index and move to that node. +\\[Info-index] Look up a topic in this manual's Index and move to that index entry. \\[Info-index-next] (comma) Move to the next match from a previous \\\\[Info-index] command. \\[info-apropos] Look for a string in the indices of all manuals. \\[Info-goto-node] Move to node specified by name. @@ -15299,7 +15299,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" (17167 2781)) +;;;;;; info-xref-check) "info-xref" "info-xref.el" (17167 2962)) ;;; Generated autoloads from info-xref.el (autoload (quote info-xref-check) "info-xref" "\ @@ -15532,7 +15532,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" -;;;;;; (17370 30854)) +;;;;;; (17370 39824)) ;;; Generated autoloads from textmodes/ispell.el (defvar ispell-personal-dictionary nil "\ @@ -15818,8 +15818,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to ;;;*** -;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17360 -;;;;;; 50461)) +;;;### (autoloads (iswitchb-mode) "iswitchb" "iswitchb.el" (17354 +;;;;;; 62493)) ;;; Generated autoloads from iswitchb.el (defvar iswitchb-mode nil "\ @@ -15923,7 +15923,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" (17279 1475)) +;;;;;; "jka-compr.el" (17355 64266)) ;;; Generated autoloads from jka-compr.el (defvar jka-compr-inhibit nil "\ @@ -16004,7 +16004,7 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' ;;;*** ;;;### (autoloads (kinsoku) "kinsoku" "international/kinsoku.el" -;;;;;; (17305 29743)) +;;;;;; (17301 53989)) ;;; Generated autoloads from international/kinsoku.el (autoload (quote kinsoku) "kinsoku" "\ @@ -16280,7 +16280,7 @@ 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" (17370 29947)) +;;;;;; "latexenc" "international/latexenc.el" (17370 39824)) ;;; 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))) "\ @@ -16424,7 +16424,7 @@ Unconditionally turn on Lazy Lock mode. ;;;*** ;;;### (autoloads (ld-script-mode) "ld-script" "progmodes/ld-script.el" -;;;;;; (17352 559)) +;;;;;; (17352 9346)) ;;; Generated autoloads from progmodes/ld-script.el (add-to-list (quote auto-mode-alist) (quote ("\\.ld[si]?\\>" . ld-script-mode))) @@ -16510,7 +16510,7 @@ such as redefining an Emacs function. ;;;*** ;;;### (autoloads (locate-with-filter locate locate-ls-subdir-switches) -;;;;;; "locate" "locate.el" (17333 9514)) +;;;;;; "locate" "locate.el" (17333 17859)) ;;; Generated autoloads from locate.el (defvar locate-ls-subdir-switches "-al" "\ @@ -16535,7 +16535,7 @@ shown; this is often useful to constrain a big search. ;;;*** -;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17296 17586)) +;;;### (autoloads (log-edit) "log-edit" "log-edit.el" (17291 34530)) ;;; Generated autoloads from log-edit.el (autoload (quote log-edit) "log-edit" "\ @@ -16556,8 +16556,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" (17370 -;;;;;; 3964)) +;;;### (autoloads (log-view-mode) "log-view" "log-view.el" (17366 +;;;;;; 32173)) ;;; Generated autoloads from log-view.el (autoload (quote log-view-mode) "log-view" "\ @@ -16567,8 +16567,8 @@ Major mode for browsing CVS log output. ;;;*** -;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17324 -;;;;;; 5836)) +;;;### (autoloads (longlines-mode) "longlines" "longlines.el" (17320 +;;;;;; 32463)) ;;; Generated autoloads from longlines.el (autoload (quote longlines-mode) "longlines" "\ @@ -16684,7 +16684,7 @@ for further customization of the printer command. ;;;*** ;;;### (autoloads (ls-lisp-support-shell-wildcards) "ls-lisp" "ls-lisp.el" -;;;;;; (17288 11724)) +;;;;;; (17283 35537)) ;;; Generated autoloads from ls-lisp.el (defvar ls-lisp-support-shell-wildcards t "\ @@ -16695,8 +16695,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") ;;;*** -;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17306 -;;;;;; 39720)) +;;;### (autoloads (phases-of-moon) "lunar" "calendar/lunar.el" (17307 +;;;;;; 14150)) ;;; Generated autoloads from calendar/lunar.el (autoload (quote phases-of-moon) "lunar" "\ @@ -16709,8 +16709,8 @@ This function is suitable for execution in a .emacs file. ;;;*** -;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17279 -;;;;;; 1521)) +;;;### (autoloads (m4-mode) "m4-mode" "progmodes/m4-mode.el" (17276 +;;;;;; 44726)) ;;; Generated autoloads from progmodes/m4-mode.el (autoload (quote m4-mode) "m4-mode" "\ @@ -16825,7 +16825,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" (17305 54216)) +;;;;;; "mail/mail-extr.el" (17306 5314)) ;;; Generated autoloads from mail/mail-extr.el (autoload (quote mail-extract-address-components) "mail-extr" "\ @@ -17011,7 +17011,7 @@ current header, calls `mail-complete-function' and passes prefix arg if any. ;;;*** ;;;### (autoloads (mailclient-send-it) "mailclient" "mail/mailclient.el" -;;;;;; (17379 9044)) +;;;;;; (17378 6213)) ;;; Generated autoloads from mail/mailclient.el (autoload (quote mailclient-send-it) "mailclient" "\ @@ -17025,7 +17025,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" (17360 50495)) +;;;;;; "make-mode" "progmodes/make-mode.el" (17357 13476)) ;;; Generated autoloads from progmodes/make-mode.el (autoload (quote makefile-mode) "make-mode" "\ @@ -17155,7 +17155,7 @@ Previous contents of that buffer are killed first. ;;;*** -;;;### (autoloads (man-follow man) "man" "man.el" (17360 50462)) +;;;### (autoloads (man-follow man) "man" "man.el" (17356 16925)) ;;; Generated autoloads from man.el (defalias (quote manual-entry) (quote man)) @@ -17205,7 +17205,7 @@ yourself the value of `master-of' by calling `master-show-slave'. ;;;*** ;;;### (autoloads (menu-bar-mode) "menu-bar" "menu-bar.el" (17324 -;;;;;; 5836)) +;;;;;; 9268)) ;;; Generated autoloads from menu-bar.el (put (quote menu-bar-mode) (quote standard-value) (quote (t))) @@ -17241,7 +17241,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" (17379 9043)) +;;;;;; "gnus/message.el" (17376 48878)) ;;; Generated autoloads from gnus/message.el (defvar message-from-style (quote default) "\ @@ -17495,7 +17495,7 @@ which specify the range to operate on. ;;;*** ;;;### (autoloads (metapost-mode metafont-mode) "meta-mode" "progmodes/meta-mode.el" -;;;;;; (17279 1522)) +;;;;;; (17276 44726)) ;;; Generated autoloads from progmodes/meta-mode.el (autoload (quote metafont-mode) "meta-mode" "\ @@ -17567,7 +17567,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" (17379 9046)) +;;;;;; "mh-e/mh-comp.el" (17377 23328)) ;;; Generated autoloads from mh-e/mh-comp.el (autoload (quote mh-smail) "mh-comp" "\ @@ -17647,7 +17647,7 @@ delete the draft message. ;;;*** -;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17380 37607)) +;;;### (autoloads (mh-version) "mh-e" "mh-e/mh-e.el" (17379 60196)) ;;; Generated autoloads from mh-e/mh-e.el (put (quote mh-progs) (quote risky-local-variable) t) @@ -17664,7 +17664,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" (17377 17201)) +;;;;;; "mh-e/mh-folder.el" (17377 23328)) ;;; Generated autoloads from mh-e/mh-folder.el (autoload (quote mh-rmail) "mh-folder" "\ @@ -17817,7 +17817,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" -;;;;;; (17340 722)) +;;;;;; (17339 56590)) ;;; Generated autoloads from language/mlm-util.el (autoload (quote malayalam-compose-region) "mlm-util" "\ @@ -17868,7 +17868,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" (17314 42614)) +;;;;;; "mm-url" "gnus/mm-url.el" (17310 14064)) ;;; Generated autoloads from gnus/mm-url.el (autoload (quote mm-url-insert-file-contents) "mm-url" "\ @@ -17885,7 +17885,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" (17379 9044)) +;;;;;; "gnus/mm-uu.el" (17376 48878)) ;;; Generated autoloads from gnus/mm-uu.el (autoload (quote mm-uu-dissect) "mm-uu" "\ @@ -17963,7 +17963,7 @@ Not documented ;;;*** ;;;### (autoloads (modula-2-mode) "modula2" "progmodes/modula2.el" -;;;;;; (17279 1522)) +;;;;;; (17276 44726)) ;;; Generated autoloads from progmodes/modula2.el (autoload (quote modula-2-mode) "modula2" "\ @@ -18404,7 +18404,7 @@ basis, this may not be accurate. ;;;*** ;;;### (autoloads (mwheel-install mouse-wheel-mode) "mwheel" "mwheel.el" -;;;;;; (17259 28110)) +;;;;;; (17258 50746)) ;;; Generated autoloads from mwheel.el (defvar mouse-wheel-mode nil "\ @@ -18530,7 +18530,7 @@ Open a network connection to HOST on PORT. ;;;;;; 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" -;;;;;; (17380 37601)) +;;;;;; (17379 35991)) ;;; Generated autoloads from newcomment.el (defalias (quote indent-for-comment) (quote comment-indent)) @@ -18714,7 +18714,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" (17379 9054)) +;;;;;; "net/newsticker.el" (17378 16858)) ;;; Generated autoloads from net/newsticker.el (autoload (quote newsticker-running-p) "newsticker" "\ @@ -18871,7 +18871,7 @@ to future sessions. ;;;*** ;;;### (autoloads (nroff-mode) "nroff-mode" "textmodes/nroff-mode.el" -;;;;;; (17380 37608)) +;;;;;; (17379 56088)) ;;; Generated autoloads from textmodes/nroff-mode.el (autoload (quote nroff-mode) "nroff-mode" "\ @@ -18886,7 +18886,7 @@ closing requests for requests that are used in matched pairs. ;;;*** ;;;### (autoloads (octave-help) "octave-hlp" "progmodes/octave-hlp.el" -;;;;;; (17167 7196)) +;;;;;; (17167 26278)) ;;; Generated autoloads from progmodes/octave-hlp.el (autoload (quote octave-help) "octave-hlp" "\ @@ -18900,7 +18900,7 @@ If KEY is not a string, prompt for it with completion. ;;;*** ;;;### (autoloads (inferior-octave) "octave-inf" "progmodes/octave-inf.el" -;;;;;; (17288 15866)) +;;;;;; (17288 31060)) ;;; Generated autoloads from progmodes/octave-inf.el (autoload (quote inferior-octave) "octave-inf" "\ @@ -18923,7 +18923,7 @@ startup file, `~/.emacs-octave'. ;;;*** ;;;### (autoloads (octave-mode) "octave-mod" "progmodes/octave-mod.el" -;;;;;; (17306 44350)) +;;;;;; (17307 14151)) ;;; Generated autoloads from progmodes/octave-mod.el (autoload (quote octave-mode) "octave-mod" "\ @@ -19047,7 +19047,7 @@ The Custom feature is intended to make this obsolete. ;;;;;; orgtbl-mode turn-on-orgtbl org-remember-handler org-remember-annotation ;;;;;; org-store-link org-tags-view org-diary org-todo-list org-agenda-list ;;;;;; org-agenda org-agenda-mode org-mode) "org" "textmodes/org.el" -;;;;;; (17379 9062)) +;;;;;; (17373 32426)) ;;; Generated autoloads from textmodes/org.el (autoload (quote org-mode) "org" "\ @@ -19259,7 +19259,7 @@ The file is stored under the name `org-combined-agenda-icalendar-file'. ;;;*** ;;;### (autoloads (outline-minor-mode outline-mode) "outline" "outline.el" -;;;;;; (17360 50463)) +;;;;;; (17360 15348)) ;;; Generated autoloads from outline.el (autoload (quote outline-mode) "outline" "\ @@ -19314,7 +19314,7 @@ See the command `outline-mode' for more information on this mode. ;;;*** -;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17333 9514)) +;;;### (autoloads (show-paren-mode) "paren" "paren.el" (17333 17859)) ;;; Generated autoloads from paren.el (defvar show-paren-mode nil "\ @@ -19340,7 +19340,7 @@ in `show-paren-style' after `show-paren-delay' seconds of Emacs idle time. ;;;*** ;;;### (autoloads (parse-time-string) "parse-time" "calendar/parse-time.el" -;;;;;; (17306 39720)) +;;;;;; (17307 14150)) ;;; Generated autoloads from calendar/parse-time.el (autoload (quote parse-time-string) "parse-time" "\ @@ -19352,8 +19352,8 @@ unknown are returned as nil. ;;;*** -;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17279 -;;;;;; 1523)) +;;;### (autoloads (pascal-mode) "pascal" "progmodes/pascal.el" (17276 +;;;;;; 44726)) ;;; Generated autoloads from progmodes/pascal.el (autoload (quote pascal-mode) "pascal" "\ @@ -19684,7 +19684,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" (17305 29728)) +;;;;;; "pcvs.el" (17304 41554)) ;;; Generated autoloads from pcvs.el (autoload (quote cvs-checkout) "pcvs" "\ @@ -19769,7 +19769,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d ;;;*** ;;;### (autoloads (perl-mode) "perl-mode" "progmodes/perl-mode.el" -;;;;;; (17279 1524)) +;;;;;; (17276 44726)) ;;; Generated autoloads from progmodes/perl-mode.el (autoload (quote perl-mode) "perl-mode" "\ @@ -19827,7 +19827,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" (17251 23307)) +;;;;;; pgg-encrypt-region) "pgg" "pgg.el" (17251 37236)) ;;; Generated autoloads from pgg.el (autoload (quote pgg-encrypt-region) "pgg" "\ @@ -19961,7 +19961,7 @@ Import public keys in the current buffer. ;;;*** ;;;### (autoloads (pgg-gpg-symmetric-key-p) "pgg-gpg" "pgg-gpg.el" -;;;;;; (17251 23307)) +;;;;;; (17251 37235)) ;;; Generated autoloads from pgg-gpg.el (autoload (quote pgg-gpg-symmetric-key-p) "pgg-gpg" "\ @@ -19972,7 +19972,7 @@ True if decoded armor MESSAGE-KEYS has symmetric encryption indicator. ;;;*** ;;;### (autoloads (picture-mode) "picture" "textmodes/picture.el" -;;;;;; (17324 5868)) +;;;;;; (17316 61871)) ;;; Generated autoloads from textmodes/picture.el (autoload (quote picture-mode) "picture" "\ @@ -20139,7 +20139,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" -;;;;;; (17279 1479)) +;;;;;; (17275 51551)) ;;; Generated autoloads from printing.el (autoload (quote pr-interface) "printing" "\ @@ -20727,7 +20727,7 @@ are both set to t. ;;;*** ;;;### (autoloads (run-prolog prolog-mode) "prolog" "progmodes/prolog.el" -;;;;;; (17279 1524)) +;;;;;; (17276 44726)) ;;; Generated autoloads from progmodes/prolog.el (autoload (quote prolog-mode) "prolog" "\ @@ -20747,7 +20747,7 @@ Run an inferior Prolog process, input and output via buffer *prolog*. ;;;*** -;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17324 5837)) +;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (17318 56744)) ;;; 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"))) "\ @@ -20756,8 +20756,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") ;;;*** -;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17279 -;;;;;; 1524)) +;;;### (autoloads (ps-mode) "ps-mode" "progmodes/ps-mode.el" (17276 +;;;;;; 44727)) ;;; Generated autoloads from progmodes/ps-mode.el (autoload (quote ps-mode) "ps-mode" "\ @@ -21125,7 +21125,7 @@ If EXTENSION is any other symbol, it is ignored. ;;;*** ;;;### (autoloads (jython-mode python-mode run-python) "python" "progmodes/python.el" -;;;;;; (17362 7769)) +;;;;;; (17362 20185)) ;;; Generated autoloads from progmodes/python.el (add-to-list (quote interpreter-mode-alist) (quote ("jython" . jython-mode))) @@ -21212,7 +21212,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" (17251 22049)) +;;;;;; "international/quail.el" (17250 28362)) ;;; Generated autoloads from international/quail.el (autoload (quote quail-title) "quail" "\ @@ -21515,7 +21515,7 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. ;;;*** -;;;### (autoloads (rcirc) "rcirc" "net/rcirc.el" (17379 9054)) +;;;### (autoloads (rcirc) "rcirc" "net/rcirc.el" (17378 16858)) ;;; Generated autoloads from net/rcirc.el (autoload (quote rcirc) "rcirc" "\ @@ -21557,7 +21557,7 @@ Construct a regexp interactively. ;;;*** -;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17314 42609)) +;;;### (autoloads (recentf-mode) "recentf" "recentf.el" (17314 3338)) ;;; Generated autoloads from recentf.el (defvar recentf-mode nil "\ @@ -21727,7 +21727,7 @@ refilling if they would cause auto-filling. ;;;*** ;;;### (autoloads (reftex-reset-scanning-information reftex-mode -;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17279 1533)) +;;;;;; turn-on-reftex) "reftex" "textmodes/reftex.el" (17275 15964)) ;;; Generated autoloads from textmodes/reftex.el (autoload (quote turn-on-reftex) "reftex" "\ @@ -21986,7 +21986,7 @@ Clear out the file used for transmitting args when Emacs resumes. ;;;*** ;;;### (autoloads (global-reveal-mode reveal-mode) "reveal" "reveal.el" -;;;;;; (17351 27278)) +;;;;;; (17349 36484)) ;;; Generated autoloads from reveal.el (autoload (quote reveal-mode) "reveal" "\ @@ -22088,8 +22088,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" (17360 -;;;;;; 50485)) +;;;;;; rmail-movemail-variant-p) "rmail" "mail/rmail.el" (17359 +;;;;;; 40965)) ;;; Generated autoloads from mail/rmail.el (autoload (quote rmail-movemail-variant-p) "rmail" "\ @@ -22419,7 +22419,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" (17362 13268)) +;;;;;; "mail/rmailout.el" (17362 20183)) ;;; Generated autoloads from mail/rmailout.el (defvar rmail-output-file-alist nil "\ @@ -22539,7 +22539,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" (17370 3984)) +;;;;;; "rmailsum" "mail/rmailsum.el" (17369 18495)) ;;; Generated autoloads from mail/rmailsum.el (defvar rmail-summary-scroll-between-messages t "\ @@ -23035,7 +23035,7 @@ enclosed in `(and ...)'. ;;;*** ;;;### (autoloads (savehist-mode savehist-mode) "savehist" "savehist.el" -;;;;;; (17379 9023)) +;;;;;; (17378 6213)) ;;; Generated autoloads from savehist.el (defvar savehist-mode nil "\ @@ -23061,7 +23061,7 @@ which is probably undesirable. ;;;*** ;;;### (autoloads (dsssl-mode scheme-mode) "scheme" "progmodes/scheme.el" -;;;;;; (17279 1524)) +;;;;;; (17276 44727)) ;;; Generated autoloads from progmodes/scheme.el (autoload (quote scheme-mode) "scheme" "\ @@ -23188,7 +23188,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" (17333 9520)) +;;;;;; "sendmail" "mail/sendmail.el" (17330 49619)) ;;; Generated autoloads from mail/sendmail.el (defvar mail-from-style (quote angles) "\ @@ -23489,7 +23489,7 @@ Like `mail' command, but display mail buffer in another frame. ;;;*** ;;;### (autoloads (server-mode server-start) "server" "server.el" -;;;;;; (17245 60155)) +;;;;;; (17244 54745)) ;;; Generated autoloads from server.el (autoload (quote server-start) "server" "\ @@ -23523,7 +23523,7 @@ Server mode runs a process that accepts commands from the ;;;*** -;;;### (autoloads (ses-mode) "ses" "ses.el" (17370 3965)) +;;;### (autoloads (ses-mode) "ses" "ses.el" (17365 22702)) ;;; Generated autoloads from ses.el (autoload (quote ses-mode) "ses" "\ @@ -23542,7 +23542,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" -;;;;;; (17360 50505)) +;;;;;; (17356 16925)) ;;; Generated autoloads from textmodes/sgml-mode.el (autoload (quote sgml-mode) "sgml-mode" "\ @@ -23610,7 +23610,7 @@ To work around that, do: ;;;*** ;;;### (autoloads (sh-mode) "sh-script" "progmodes/sh-script.el" -;;;;;; (17324 5862)) +;;;;;; (17316 61871)) ;;; Generated autoloads from progmodes/sh-script.el (autoload (quote sh-mode) "sh-script" "\ @@ -23688,7 +23688,7 @@ If BINARY is non-nil, return a string in binary form. ;;;*** ;;;### (autoloads (list-load-path-shadows) "shadow" "emacs-lisp/shadow.el" -;;;;;; (17288 11730)) +;;;;;; (17279 31149)) ;;; Generated autoloads from emacs-lisp/shadow.el (autoload (quote list-load-path-shadows) "shadow" "\ @@ -23858,8 +23858,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. ;;;*** -;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17279 -;;;;;; 1526)) +;;;### (autoloads (simula-mode) "simula" "progmodes/simula.el" (17276 +;;;;;; 44727)) ;;; Generated autoloads from progmodes/simula.el (autoload (quote simula-mode) "simula" "\ @@ -24018,7 +24018,7 @@ symmetrical ones, and the same character twice for the others. ;;;*** ;;;### (autoloads (smerge-mode smerge-ediff) "smerge-mode" "smerge-mode.el" -;;;;;; (17251 22027)) +;;;;;; (17248 650)) ;;; Generated autoloads from smerge-mode.el (autoload (quote smerge-ediff) "smerge-mode" "\ @@ -24055,7 +24055,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" (17360 50485)) +;;;;;; "mail/smtpmail.el" (17358 48216)) ;;; Generated autoloads from mail/smtpmail.el (autoload (quote smtpmail-send-it) "smtpmail" "\ @@ -24125,7 +24125,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" (17306 39720)) +;;;;;; "solar" "calendar/solar.el" (17307 14150)) ;;; 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 ")"))) "\ @@ -24417,7 +24417,7 @@ From a program takes two point or marker arguments, BEG and END. ;;;*** ;;;### (autoloads (spam-initialize) "spam" "gnus/spam.el" (17360 -;;;;;; 50482)) +;;;;;; 3380)) ;;; Generated autoloads from gnus/spam.el (autoload (quote spam-initialize) "spam" "\ @@ -24472,7 +24472,7 @@ Spam reports will be queued with the method used when ;;;*** ;;;### (autoloads (speedbar-get-focus speedbar-frame-mode) "speedbar" -;;;;;; "speedbar.el" (17296 17593)) +;;;;;; "speedbar.el" (17294 14915)) ;;; Generated autoloads from speedbar.el (defalias (quote speedbar) (quote speedbar-frame-mode)) @@ -25116,7 +25116,7 @@ Studlify-case the current buffer. ;;;*** -;;;### (autoloads (locate-library) "subr" "subr.el" (17379 9027)) +;;;### (autoloads (locate-library) "subr" "subr.el" (17374 39354)) ;;; Generated autoloads from subr.el (autoload (quote locate-library) "subr" "\ @@ -25205,7 +25205,7 @@ 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" (17379 9064)) +;;;;;; "table" "textmodes/table.el" (17378 11759)) ;;; Generated autoloads from textmodes/table.el (defvar table-cell-map-hook nil "\ @@ -25803,7 +25803,7 @@ Connect to display DISPLAY for the Emacs talk group. ;;;*** -;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17279 1483)) +;;;### (autoloads (tar-mode) "tar-mode" "tar-mode.el" (17267 37747)) ;;; Generated autoloads from tar-mode.el (autoload (quote tar-mode) "tar-mode" "\ @@ -25827,7 +25827,7 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. ;;;*** ;;;### (autoloads (tcl-help-on-word inferior-tcl tcl-mode) "tcl" -;;;;;; "progmodes/tcl.el" (17351 27304)) +;;;;;; "progmodes/tcl.el" (17348 7449)) ;;; Generated autoloads from progmodes/tcl.el (autoload (quote tcl-mode) "tcl" "\ @@ -25905,8 +25905,8 @@ Normally input is edited in Emacs and sent a line at a time. ;;;*** -;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17360 -;;;;;; 50467)) +;;;### (autoloads (ansi-term term make-term) "term" "term.el" (17354 +;;;;;; 44750)) ;;; Generated autoloads from term.el (autoload (quote make-term) "term" "\ @@ -26315,7 +26315,7 @@ Major mode to edit DocTeX files. ;;;*** ;;;### (autoloads (texi2info texinfo-format-region texinfo-format-buffer) -;;;;;; "texinfmt" "textmodes/texinfmt.el" (17314 42628)) +;;;;;; "texinfmt" "textmodes/texinfmt.el" (17312 51446)) ;;; Generated autoloads from textmodes/texinfmt.el (autoload (quote texinfo-format-buffer) "texinfmt" "\ @@ -26355,7 +26355,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" (17279 1535)) +;;;;;; "texinfo" "textmodes/texinfo.el" (17276 44727)) ;;; Generated autoloads from textmodes/texinfo.el (defvar texinfo-open-quote "``" "\ @@ -26543,7 +26543,7 @@ Not documented ;;;### (autoloads (thumbs-dired-setroot thumbs-dired-show thumbs-dired-show-marked ;;;;;; thumbs-show-from-dir thumbs-find-thumb) "thumbs" "thumbs.el" -;;;;;; (17379 9027)) +;;;;;; (17374 9567)) ;;; Generated autoloads from thumbs.el (autoload (quote thumbs-find-thumb) "thumbs" "\ @@ -26661,7 +26661,7 @@ Not documented ;;;*** ;;;### (autoloads (tildify-buffer tildify-region) "tildify" "textmodes/tildify.el" -;;;;;; (17342 23959)) +;;;;;; (17342 36761)) ;;; Generated autoloads from textmodes/tildify.el (autoload (quote tildify-region) "tildify" "\ @@ -26685,7 +26685,7 @@ This function performs no refilling of the changed text. ;;;*** ;;;### (autoloads (display-time-mode display-time display-time-day-and-date) -;;;;;; "time" "time.el" (17360 50467)) +;;;;;; "time" "time.el" (17356 14847)) ;;; Generated autoloads from time.el (defvar display-time-day-and-date nil "\ @@ -26728,8 +26728,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" (17306 -;;;;;; 39720)) +;;;;;; date-to-time) "time-date" "calendar/time-date.el" (17307 +;;;;;; 14150)) ;;; Generated autoloads from calendar/time-date.el (autoload (quote date-to-time) "time-date" "\ @@ -26851,7 +26851,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" -;;;;;; (17306 39721)) +;;;;;; (17307 14150)) ;;; Generated autoloads from calendar/timeclock.el (autoload (quote timeclock-modeline-display) "timeclock" "\ @@ -26952,7 +26952,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" (17259 28122)) +;;;;;; "emacs-lisp/timer.el" (17251 53836)) ;;; Generated autoloads from emacs-lisp/timer.el (defalias (quote disable-timeout) (quote cancel-timer)) @@ -27111,7 +27111,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" (17306 39721)) +;;;;;; "todo-mode" "calendar/todo-mode.el" (17307 14150)) ;;; Generated autoloads from calendar/todo-mode.el (autoload (quote todo-add-category) "todo-mode" "\ @@ -27172,7 +27172,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" -;;;;;; (17324 5838)) +;;;;;; (17324 9268)) ;;; Generated autoloads from tool-bar.el (put (quote tool-bar-mode) (quote standard-value) (quote (t))) @@ -27335,7 +27335,7 @@ the window or buffer configuration at all. ;;;### (autoloads (tramp-unload-tramp tramp-unload-file-name-handler-alist ;;;;;; tramp-completion-file-name-handler tramp-file-name-handler ;;;;;; tramp-completion-file-name-regexp tramp-file-name-regexp) -;;;;;; "tramp" "net/tramp.el" (17379 9057)) +;;;;;; "tramp" "net/tramp.el" (17377 15371)) ;;; Generated autoloads from net/tramp.el (defvar tramp-unified-filenames (not (featurep (quote xemacs))) "\ @@ -27422,7 +27422,7 @@ Not documented ;;;*** ;;;### (autoloads (tramp-ftp-enable-ange-ftp) "tramp-ftp" "net/tramp-ftp.el" -;;;;;; (17370 3984)) +;;;;;; (17364 3828)) ;;; Generated autoloads from net/tramp-ftp.el (autoload (quote tramp-ftp-enable-ange-ftp) "tramp-ftp" "\ @@ -27433,7 +27433,7 @@ Not documented ;;;*** ;;;### (autoloads (tumme-setup-dired-keybindings tumme-dired) "tumme" -;;;;;; "tumme.el" (17370 3971)) +;;;;;; "tumme.el" (17369 18495)) ;;; Generated autoloads from tumme.el (autoload (quote tumme-dired) "tumme" "\ @@ -27752,8 +27752,8 @@ Convert Rmail file FILE to system inbox format file TO-FILE. ;;;*** -;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17379 -;;;;;; 9028)) +;;;### (autoloads (unsafep) "unsafep" "emacs-lisp/unsafep.el" (17376 +;;;;;; 60055)) ;;; Generated autoloads from emacs-lisp/unsafep.el (autoload (quote unsafep) "unsafep" "\ @@ -27766,7 +27766,7 @@ of symbols with local bindings. ;;;*** ;;;### (autoloads (url-retrieve-synchronously url-retrieve) "url" -;;;;;; "url/url.el" (17351 27305)) +;;;;;; "url/url.el" (17348 7449)) ;;; Generated autoloads from url/url.el (autoload (quote url-retrieve) "url" "\ @@ -27838,8 +27838,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" (17340 -;;;;;; 731)) +;;;;;; url-store-in-cache) "url-cache" "url/url-cache.el" (17337 +;;;;;; 11067)) ;;; Generated autoloads from url/url-cache.el (autoload (quote url-store-in-cache) "url-cache" "\ @@ -27890,8 +27890,8 @@ Not documented ;;;*** -;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17239 -;;;;;; 43869)) +;;;### (autoloads (url-file) "url-file" "url/url-file.el" (17240 +;;;;;; 1916)) ;;; Generated autoloads from url/url-file.el (autoload (quote url-file) "url-file" "\ @@ -27920,8 +27920,8 @@ Will not make a connection if `url-gateway-unplugged' is non-nil. ;;;*** ;;;### (autoloads (url-insert-file-contents url-file-local-copy url-copy-file -;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17340 -;;;;;; 731)) +;;;;;; url-handler-mode) "url-handlers" "url/url-handlers.el" (17337 +;;;;;; 11067)) ;;; Generated autoloads from url/url-handlers.el (defvar url-handler-mode nil "\ @@ -27966,7 +27966,7 @@ Not documented ;;;*** ;;;### (autoloads (url-http-options url-http-file-attributes url-http-file-exists-p -;;;;;; url-http) "url-http" "url/url-http.el" (17279 1536)) +;;;;;; url-http) "url-http" "url/url-http.el" (17278 11297)) ;;; Generated autoloads from url/url-http.el (autoload (quote url-http) "url-http" "\ @@ -28044,7 +28044,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" -;;;;;; (17195 54695)) +;;;;;; (17196 9351)) ;;; Generated autoloads from url/url-mailto.el (autoload (quote url-mail) "url-mailto" "\ @@ -28092,7 +28092,7 @@ Fetch a data URL (RFC 2397). ;;;*** ;;;### (autoloads (url-snews url-news) "url-news" "url/url-news.el" -;;;;;; (17360 50508)) +;;;;;; (17358 30050)) ;;; Generated autoloads from url/url-news.el (autoload (quote url-news) "url-news" "\ @@ -28168,7 +28168,7 @@ Format is: ;;;*** ;;;### (autoloads (url-setup-privacy-info) "url-privacy" "url/url-privacy.el" -;;;;;; (17351 27305)) +;;;;;; (17348 7449)) ;;; Generated autoloads from url/url-privacy.el (autoload (quote url-setup-privacy-info) "url-privacy" "\ @@ -28337,7 +28337,7 @@ The buffer in question is current when this function is called. ;;;*** -;;;### (autoloads nil "utf-7" "international/utf-7.el" (17245 60163)) +;;;### (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)) @@ -28375,7 +28375,7 @@ 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" (17370 3974)) +;;;;;; vc-checkin-hook vc-checkout-hook) "vc" "vc.el" (17367 53073)) ;;; Generated autoloads from vc.el (defvar vc-checkout-hook nil "\ @@ -28673,7 +28673,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17259 28116)) +;;;### (autoloads nil "vc-cvs" "vc-cvs.el" (17252 55237)) ;;; Generated autoloads from vc-cvs.el (defun vc-cvs-registered (f) (when (file-readable-p (expand-file-name @@ -28683,7 +28683,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** -;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17314 42611)) +;;;### (autoloads nil "vc-mcvs" "vc-mcvs.el" (17312 51444)) ;;; Generated autoloads from vc-mcvs.el (defun vc-mcvs-registered (file) (if (vc-find-root file "MCVS/CVS") @@ -28694,7 +28694,7 @@ colors. `vc-annotate-background' specifies the background color. ;;;*** ;;;### (autoloads (vc-rcs-master-templates) "vc-rcs" "vc-rcs.el" -;;;;;; (17370 29804)) +;;;;;; (17370 39824)) ;;; Generated autoloads from vc-rcs.el (defvar vc-rcs-master-templates (quote ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ @@ -28707,7 +28707,7 @@ For a description of possible values, see `vc-check-master-templates'.") ;;;*** ;;;### (autoloads (vc-sccs-master-templates) "vc-sccs" "vc-sccs.el" -;;;;;; (17370 29804)) +;;;;;; (17370 39824)) ;;; Generated autoloads from vc-sccs.el (defvar vc-sccs-master-templates (quote ("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ @@ -28724,7 +28724,7 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) ;;;*** -;;;### (autoloads nil "vc-svn" "vc-svn.el" (17314 42611)) +;;;### (autoloads nil "vc-svn" "vc-svn.el" (17311 21875)) ;;; Generated autoloads from vc-svn.el (defun vc-svn-registered (f) (when (file-readable-p (expand-file-name @@ -29380,7 +29380,7 @@ 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" (17297 -;;;;;; 44104)) +;;;;;; 52533)) ;;; Generated autoloads from view.el (defvar view-mode nil "\ @@ -29606,7 +29606,7 @@ Turn on VIP emulation of VI. ;;;*** ;;;### (autoloads (viper-mode toggle-viper-mode) "viper" "emulation/viper.el" -;;;;;; (17379 9029)) +;;;;;; (17373 34254)) ;;; Generated autoloads from emulation/viper.el (autoload (quote toggle-viper-mode) "viper" "\ @@ -29711,7 +29711,7 @@ this is equivalent to `display-warning', using ;;;*** ;;;### (autoloads (wdired-change-to-wdired-mode) "wdired" "wdired.el" -;;;;;; (17351 27279)) +;;;;;; (17350 52783)) ;;; Generated autoloads from wdired.el (autoload (quote wdired-change-to-wdired-mode) "wdired" "\ @@ -29727,7 +29727,7 @@ See `wdired-mode'. ;;;*** -;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17333 9522)) +;;;### (autoloads (webjump) "webjump" "net/webjump.el" (17333 17859)) ;;; Generated autoloads from net/webjump.el (autoload (quote webjump) "webjump" "\ @@ -29895,8 +29895,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" (17370 -;;;;;; 3976)) +;;;;;; widget-prompt-value widgetp) "wid-edit" "wid-edit.el" (17369 +;;;;;; 18495)) ;;; Generated autoloads from wid-edit.el (autoload (quote widgetp) "wid-edit" "\ @@ -30162,7 +30162,7 @@ The key bindings are: ;;;*** ;;;### (autoloads (xml-parse-region xml-parse-file) "xml" "xml.el" -;;;;;; (17379 9028)) +;;;;;; (17377 27370)) ;;; Generated autoloads from xml.el (autoload (quote xml-parse-file) "xml" "\ @@ -30187,8 +30187,8 @@ If PARSE-NS is non-nil, then QNAMES are expanded. ;;;*** -;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17333 -;;;;;; 9520)) +;;;### (autoloads (xterm-mouse-mode) "xt-mouse" "xt-mouse.el" (17332 +;;;;;; 49142)) ;;; Generated autoloads from xt-mouse.el (defvar xterm-mouse-mode nil "\ @@ -30233,7 +30233,7 @@ Extract file name from an yenc header. ;;;*** ;;;### (autoloads (psychoanalyze-pinhead apropos-zippy insert-zippyism -;;;;;; yow) "yow" "play/yow.el" (17297 34964)) +;;;;;; yow) "yow" "play/yow.el" (17297 52533)) ;;; Generated autoloads from play/yow.el (autoload (quote yow) "yow" "\ @@ -30311,10 +30311,10 @@ Zone-mode does two things: ;;;;;; "calendar/cal-iso.el" "calendar/cal-julian.el" "calendar/cal-mayan.el" ;;;;;; "calendar/cal-menu.el" "calendar/cal-move.el" "calendar/cal-persia.el" ;;;;;; "calendar/cal-tex.el" "calendar/cal-x.el" "case-table.el" -;;;;;; "cdl.el" "cus-dep.el" "cus-load.el" "cus-start.el" "custom.el" -;;;;;; "dframe.el" "dos-fns.el" "dos-vars.el" "dos-w32.el" "ediff-diff.el" -;;;;;; "ediff-init.el" "ediff-merg.el" "ediff-ptch.el" "ediff-vers.el" -;;;;;; "ediff-wind.el" "electric.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el" +;;;;;; "cdl.el" "cus-dep.el" "cus-start.el" "custom.el" "dframe.el" +;;;;;; "dos-fns.el" "dos-vars.el" "dos-w32.el" "ediff-diff.el" "ediff-init.el" +;;;;;; "ediff-merg.el" "ediff-ptch.el" "ediff-vers.el" "ediff-wind.el" +;;;;;; "electric.el" "emacs-lisp/assoc.el" "emacs-lisp/authors.el" ;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/byte-run.el" ;;;;;; "emacs-lisp/cl-compat.el" "emacs-lisp/cl-extra.el" "emacs-lisp/cl-macs.el" ;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl-specs.el" "emacs-lisp/cust-print.el" @@ -30322,26 +30322,25 @@ Zone-mode does two things: ;;;;;; "emacs-lisp/gulp.el" "emacs-lisp/levents.el" "emacs-lisp/lisp-mnt.el" ;;;;;; "emacs-lisp/lisp-mode.el" "emacs-lisp/lisp.el" "emacs-lisp/lmenu.el" ;;;;;; "emacs-lisp/lselect.el" "emacs-lisp/lucid.el" "emacs-lisp/map-ynp.el" -;;;;;; "emacs-lisp/regi.el" "emacs-lisp/sregex.el" "emacs-lisp/syntax.el" -;;;;;; "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" -;;;;;; "emacs-lock.el" "emulation/cua-gmrk.el" "emulation/cua-rect.el" -;;;;;; "emulation/edt-lk201.el" "emulation/edt-mapper.el" "emulation/edt-pc.el" -;;;;;; "emulation/edt-vt100.el" "emulation/tpu-mapper.el" "emulation/viper-cmd.el" -;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" -;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" -;;;;;; "env.el" "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" -;;;;;; "erc/erc-identd.el" "erc/erc-lang.el" "erc/erc-menu.el" "erc/erc-nicklist.el" -;;;;;; "eshell/em-alias.el" "eshell/em-banner.el" "eshell/em-basic.el" -;;;;;; "eshell/em-cmpl.el" "eshell/em-dirs.el" "eshell/em-glob.el" -;;;;;; "eshell/em-hist.el" "eshell/em-ls.el" "eshell/em-pred.el" -;;;;;; "eshell/em-prompt.el" "eshell/em-rebind.el" "eshell/em-script.el" -;;;;;; "eshell/em-smart.el" "eshell/em-term.el" "eshell/em-unix.el" -;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" -;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" -;;;;;; "eshell/esh-maint.el" "eshell/esh-module.el" "eshell/esh-opt.el" -;;;;;; "eshell/esh-proc.el" "eshell/esh-util.el" "eshell/esh-var.el" -;;;;;; "ezimage.el" "faces.el" "files.el" "finder-inf.el" "foldout.el" -;;;;;; "font-core.el" "font-lock.el" "format.el" "forms-d2.el" "forms-pass.el" +;;;;;; "emacs-lisp/regi.el" "emacs-lisp/sregex.el" "emacs-lisp/tcover-ses.el" +;;;;;; "emacs-lisp/tcover-unsafep.el" "emacs-lock.el" "emulation/cua-gmrk.el" +;;;;;; "emulation/cua-rect.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" +;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/tpu-mapper.el" +;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" +;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" +;;;;;; "emulation/viper-util.el" "env.el" "erc/erc-backend.el" "erc/erc-goodies.el" +;;;;;; "erc/erc-ibuffer.el" "erc/erc-identd.el" "erc/erc-lang.el" +;;;;;; "erc/erc-menu.el" "erc/erc-nicklist.el" "eshell/em-alias.el" +;;;;;; "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el" +;;;;;; "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el" +;;;;;; "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el" +;;;;;; "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el" +;;;;;; "eshell/em-term.el" "eshell/em-unix.el" "eshell/em-xtra.el" +;;;;;; "eshell/esh-arg.el" "eshell/esh-cmd.el" "eshell/esh-ext.el" +;;;;;; "eshell/esh-io.el" "eshell/esh-maint.el" "eshell/esh-module.el" +;;;;;; "eshell/esh-opt.el" "eshell/esh-proc.el" "eshell/esh-util.el" +;;;;;; "eshell/esh-var.el" "ezimage.el" "faces.el" "files.el" "foldout.el" +;;;;;; "font-core.el" "format.el" "forms-d2.el" "forms-pass.el" ;;;;;; "frame.el" "generic-x.el" "gnus/compface.el" "gnus/dig.el" ;;;;;; "gnus/dns.el" "gnus/format-spec.el" "gnus/gnus-async.el" ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cus.el" @@ -30376,37 +30375,36 @@ Zone-mode does two things: ;;;;;; "international/subst-gb2312.el" "international/subst-jis.el" ;;;;;; "international/subst-ksc.el" "international/ucs-tables.el" ;;;;;; "international/utf-16.el" "international/utf-8.el" "isearch.el" -;;;;;; "jit-lock.el" "jka-cmpr-hook.el" "kermit.el" "language/chinese.el" -;;;;;; "language/cyrillic.el" "language/czech.el" "language/devanagari.el" -;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el" -;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el" -;;;;;; "language/indian.el" "language/japanese.el" "language/kannada.el" -;;;;;; "language/korean.el" "language/lao.el" "language/malayalam.el" -;;;;;; "language/misc-lang.el" "language/romanian.el" "language/slovak.el" -;;;;;; "language/tamil.el" "language/thai-word.el" "language/thai.el" -;;;;;; "language/tibetan.el" "language/utf-8-lang.el" "language/vietnamese.el" -;;;;;; "ldefs-boot.el" "ldefs.el" "ldefs1.el" "loadup.el" "mail/blessmail.el" -;;;;;; "mail/mailheader.el" "mail/mailpost.el" "mail/mspools.el" -;;;;;; "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el" +;;;;;; "jka-cmpr-hook.el" "kermit.el" "language/chinese.el" "language/cyrillic.el" +;;;;;; "language/czech.el" "language/devanagari.el" "language/english.el" +;;;;;; "language/ethiopic.el" "language/european.el" "language/georgian.el" +;;;;;; "language/greek.el" "language/hebrew.el" "language/indian.el" +;;;;;; "language/japanese.el" "language/kannada.el" "language/korean.el" +;;;;;; "language/lao.el" "language/malayalam.el" "language/misc-lang.el" +;;;;;; "language/romanian.el" "language/slovak.el" "language/tamil.el" +;;;;;; "language/thai-word.el" "language/thai.el" "language/tibetan.el" +;;;;;; "language/utf-8-lang.el" "language/vietnamese.el" "ldefs-boot.el" +;;;;;; "loadup.el" "mail/blessmail.el" "mail/mailheader.el" "mail/mailpost.el" +;;;;;; "mail/mspools.el" "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el" ;;;;;; "mail/uce.el" "mail/vms-pmail.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el" ;;;;;; "mh-e/mh-buffers.el" "mh-e/mh-compat.el" "mh-e/mh-funcs.el" ;;;;;; "mh-e/mh-gnus.el" "mh-e/mh-identity.el" "mh-e/mh-inc.el" ;;;;;; "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" -;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" -;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" -;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" -;;;;;; "mh-e/mh-utils.el" "mh-e/mh-xface.el" "misc.el" "mouse-copy.el" -;;;;;; "mouse-drag.el" "mouse.el" "net/eudc-vars.el" "net/eudcb-bbdb.el" -;;;;;; "net/eudcb-ldap.el" "net/eudcb-mab.el" "net/eudcb-ph.el" -;;;;;; "net/ldap.el" "net/netrc.el" "net/tls.el" "net/tramp-smb.el" -;;;;;; "net/tramp-util.el" "net/tramp-uu.el" "net/tramp-vc.el" "net/trampver.el" -;;;;;; "obsolete/awk-mode.el" "obsolete/bg-mouse.el" "obsolete/float.el" -;;;;;; "obsolete/hilit19.el" "obsolete/iso-insert.el" "obsolete/iso-swed.el" -;;;;;; "obsolete/keyswap.el" "obsolete/mlsupport.el" "obsolete/ooutline.el" -;;;;;; "obsolete/profile.el" "obsolete/rnews.el" "obsolete/sc.el" -;;;;;; "obsolete/sun-curs.el" "obsolete/sun-fns.el" "obsolete/swedish.el" -;;;;;; "obsolete/uncompress.el" "obsolete/x-apollo.el" "obsolete/x-menu.el" -;;;;;; "patcomp.el" "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" +;;;;;; "mh-e/mh-mime.el" "mh-e/mh-print.el" "mh-e/mh-scan.el" "mh-e/mh-search.el" +;;;;;; "mh-e/mh-seq.el" "mh-e/mh-show.el" "mh-e/mh-speed.el" "mh-e/mh-thread.el" +;;;;;; "mh-e/mh-tool-bar.el" "mh-e/mh-utils.el" "mh-e/mh-xface.el" +;;;;;; "misc.el" "mouse-copy.el" "mouse-drag.el" "mouse.el" "net/eudc-vars.el" +;;;;;; "net/eudcb-bbdb.el" "net/eudcb-ldap.el" "net/eudcb-mab.el" +;;;;;; "net/eudcb-ph.el" "net/ldap.el" "net/netrc.el" "net/tls.el" +;;;;;; "net/tramp-smb.el" "net/tramp-util.el" "net/tramp-uu.el" +;;;;;; "net/tramp-vc.el" "net/trampver.el" "obsolete/awk-mode.el" +;;;;;; "obsolete/bg-mouse.el" "obsolete/float.el" "obsolete/hilit19.el" +;;;;;; "obsolete/iso-insert.el" "obsolete/iso-swed.el" "obsolete/keyswap.el" +;;;;;; "obsolete/mlsupport.el" "obsolete/ooutline.el" "obsolete/profile.el" +;;;;;; "obsolete/rnews.el" "obsolete/sc.el" "obsolete/sun-curs.el" +;;;;;; "obsolete/sun-fns.el" "obsolete/swedish.el" "obsolete/uncompress.el" +;;;;;; "obsolete/x-apollo.el" "obsolete/x-menu.el" "patcomp.el" +;;;;;; "paths.el" "pcvs-info.el" "pcvs-parse.el" "pcvs-util.el" ;;;;;; "pgg-def.el" "pgg-parse.el" "pgg-pgp.el" "pgg-pgp5.el" "play/gamegrid.el" ;;;;;; "play/gametree.el" "play/meese.el" "progmodes/ada-prj.el" ;;;;;; "progmodes/cc-align.el" "progmodes/cc-awk.el" "progmodes/cc-bytecomp.el" @@ -30417,30 +30415,29 @@ Zone-mode does two things: ;;;;;; "progmodes/ebnf-otz.el" "progmodes/ebnf-yac.el" "progmodes/idlw-complete-structtag.el" ;;;;;; "progmodes/idlw-help.el" "progmodes/idlw-rinfo.el" "progmodes/idlw-toolbar.el" ;;;;;; "progmodes/mantemp.el" "progmodes/xscheme.el" "register.el" -;;;;;; "replace.el" "rfn-eshadow.el" "s-region.el" "saveplace.el" -;;;;;; "sb-image.el" "scroll-bar.el" "select.el" "simple.el" "soundex.el" -;;;;;; "startup.el" "subdirs.el" "tempo.el" "term/AT386.el" "term/apollo.el" -;;;;;; "term/bobcat.el" "term/cygwin.el" "term/internal.el" "term/iris-ansi.el" -;;;;;; "term/linux.el" "term/lk201.el" "term/mac-win.el" "term/news.el" -;;;;;; "term/pc-win.el" "term/rxvt.el" "term/sun-mouse.el" "term/sun.el" -;;;;;; "term/sup-mouse.el" "term/tty-colors.el" "term/tvi970.el" -;;;;;; "term/vt100.el" "term/vt102.el" "term/vt125.el" "term/vt200.el" -;;;;;; "term/vt201.el" "term/vt220.el" "term/vt240.el" "term/vt300.el" -;;;;;; "term/vt320.el" "term/vt400.el" "term/vt420.el" "term/w32-win.el" -;;;;;; "term/wyse50.el" "term/x-win.el" "term/xterm.el" "textmodes/bib-mode.el" -;;;;;; "textmodes/fill.el" "textmodes/makeinfo.el" "textmodes/page-ext.el" -;;;;;; "textmodes/page.el" "textmodes/paragraphs.el" "textmodes/refbib.el" -;;;;;; "textmodes/refer.el" "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" -;;;;;; "textmodes/reftex-ref.el" "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" -;;;;;; "textmodes/reftex-vars.el" "textmodes/texnfo-upd.el" "textmodes/text-mode.el" -;;;;;; "timezone.el" "tooltip.el" "tree-widget.el" "uniquify.el" -;;;;;; "url/url-about.el" "url/url-cookie.el" "url/url-dired.el" -;;;;;; "url/url-expand.el" "url/url-ftp.el" "url/url-history.el" -;;;;;; "url/url-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") (17380 37693 953000)) +;;;;;; "replace.el" "s-region.el" "saveplace.el" "sb-image.el" "scroll-bar.el" +;;;;;; "select.el" "simple.el" "soundex.el" "startup.el" "subdirs.el" +;;;;;; "tempo.el" "term/AT386.el" "term/apollo.el" "term/bobcat.el" +;;;;;; "term/cygwin.el" "term/internal.el" "term/iris-ansi.el" "term/linux.el" +;;;;;; "term/lk201.el" "term/mac-win.el" "term/news.el" "term/pc-win.el" +;;;;;; "term/rxvt.el" "term/sun-mouse.el" "term/sun.el" "term/sup-mouse.el" +;;;;;; "term/tty-colors.el" "term/tvi970.el" "term/vt100.el" "term/vt102.el" +;;;;;; "term/vt125.el" "term/vt200.el" "term/vt201.el" "term/vt220.el" +;;;;;; "term/vt240.el" "term/vt300.el" "term/vt320.el" "term/vt400.el" +;;;;;; "term/vt420.el" "term/w32-win.el" "term/wyse50.el" "term/x-win.el" +;;;;;; "term/xterm.el" "textmodes/bib-mode.el" "textmodes/fill.el" +;;;;;; "textmodes/makeinfo.el" "textmodes/page-ext.el" "textmodes/page.el" +;;;;;; "textmodes/paragraphs.el" "textmodes/refbib.el" "textmodes/refer.el" +;;;;;; "textmodes/reftex-auc.el" "textmodes/reftex-dcr.el" "textmodes/reftex-ref.el" +;;;;;; "textmodes/reftex-sel.el" "textmodes/reftex-toc.el" "textmodes/reftex-vars.el" +;;;;;; "textmodes/texnfo-upd.el" "textmodes/text-mode.el" "timezone.el" +;;;;;; "tooltip.el" "tree-widget.el" "uniquify.el" "url/url-about.el" +;;;;;; "url/url-dired.el" "url/url-expand.el" "url/url-ftp.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") (17381 36573 585655)) ;;;*** From d63b401895577d448ecee8c31ac20b6f693de14d Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Sun, 5 Feb 2006 12:15:02 +0000 Subject: [PATCH 30/42] (Fconstrain_to_field): Fix int/Lisp_Object mixup. --- src/ChangeLog | 4 ++++ src/editfns.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 66061c74810..bffe8caf089 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-02-05 Ken Raeburn + + * editfns.c (Fconstrain_to_field): Fix int/Lisp_Object mixup. + 2006-02-03 Kim F. Storm * xdisp.c: Cache last merged escape glyph face. diff --git a/src/editfns.c b/src/editfns.c index 9be9232a9c7..5bf4eb738ae 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -719,7 +719,8 @@ Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. */) { /* If non-zero, then the original point, before re-positioning. */ int orig_point = 0; - int fwd, prev_old, prev_new; + int fwd; + Lisp_Object prev_old, prev_new; if (NILP (new_pos)) /* Use the current point, and afterwards, set it. */ From 98950fd6ba7f1460ceb548002caa75a92d593af3 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Sun, 5 Feb 2006 12:21:40 +0000 Subject: [PATCH 31/42] (XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]: Cast bitfield value to EMACS_INT, to suppress gcc warning. --- src/ChangeLog | 3 +++ src/lisp.h | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index bffe8caf089..4f411f95444 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -2,6 +2,9 @@ * editfns.c (Fconstrain_to_field): Fix int/Lisp_Object mixup. + * lisp.h (XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]: + Cast bitfield value to EMACS_INT, to suppress gcc warning. + 2006-02-03 Kim F. Storm * xdisp.c: Cache last merged escape glyph face. diff --git a/src/lisp.h b/src/lisp.h index b8213c516cb..d930bd59a8d 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -484,7 +484,11 @@ extern size_t pure_size; in a Lisp object whose data type says it points to something. */ #define XPNTR(a) (XUINT (a) | DATA_SEG_BITS) #else -#define XPNTR(a) XUINT (a) +/* Some versions of gcc seem to consider the bitfield width when + issuing the "cast to pointer from integer of different size" + warning, so the cast is here to widen the value back to its natural + size. */ +#define XPNTR(a) ((EMACS_INT) XUINT (a)) #endif #endif /* not HAVE_SHM */ #endif /* no XPNTR */ From 8508e990c1c0b9bd69bc1d8f7fa2a57753029156 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sun, 5 Feb 2006 12:42:51 +0000 Subject: [PATCH 32/42] Revision: emacs@sv.gnu.org/emacs--devo--0--patch-46 Creator: Michael Olson Merge from erc--emacs--0 --- etc/ChangeLog | 5 ++++ etc/ERC-NEWS | 49 +++++++++++++++++++++++++++++------ lisp/erc/ChangeLog | 30 ++++++++++++++++++++++ lisp/erc/erc-autojoin.el | 2 +- lisp/erc/erc-complete.el | 7 +++-- lisp/erc/erc-goodies.el | 2 +- lisp/erc/erc-spelling.el | 55 ++++++++++++++++++++++++++++------------ lisp/erc/erc-stamp.el | 4 +-- lisp/erc/erc.el | 2 +- man/ChangeLog | 4 +++ man/erc.texi | 4 +-- 11 files changed, 129 insertions(+), 35 deletions(-) diff --git a/etc/ChangeLog b/etc/ChangeLog index 5411a0cf626..87e5fd01281 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,8 @@ +2006-02-04 Michael Olson + + * NEWS: Update for ERC 5.1.1. Use the same wording for headings + that Emacs does in its NEWS file. + 2006-02-03 Bill Wohler Release MH-E version 7.91. diff --git a/etc/ERC-NEWS b/etc/ERC-NEWS index fea5497a4a5..eee5589ad8d 100644 --- a/etc/ERC-NEWS +++ b/etc/ERC-NEWS @@ -1,6 +1,39 @@ ERC NEWS -*- outline -*- -* Changes since ERC 5.0.4 +* Changes in ERC 5.1.1 + +** Fix a requirement on cl.el. + +** Use tls.el for SSL connections, rather than ssl.el. + +** Changes and additions to modules + +*** ibuffer integration (erc-ibuffer.el) + +**** Update this to work with the version of ibuffer.el that comes with +recent Emacs variants. + +*** Old completion (erc-complete.el) + +**** Fix a few errors. + +*** Speedbar (erc-speedbar.el) + +**** Make this work with the version of speedbar.el that comes with +recent Emacs variants. + +*** Timestamps (erc-stamp.el) + +**** By default, use a more failsafe method of displaying right timestamps. +To get right timestamps to align perfectly in Emacs22 using X, set the +new `erc-timestamp-right-align-by-pixel' option to non-nil. + +*** Viper compatibility (erc-viper.el) + +**** Since most of these changes are now merged into Emacs22, detect +whether we need these changes and install them only if necessary. + +* Changes in ERC 5.1 ** Improve XEmacs compatibility. @@ -206,11 +239,11 @@ the right margin. **** Helps ERC work correctly in viper-mode. -* Fixes since ERC 5.0.3 +* Changes in ERC 5.0.4 ** Fix a problem with undo in channels. -* Fixes since ERC 5.0.2 +* Changes in ERC 5.0.3 ** Fix typo in the `ctcp-request-to' entry of the English catalog. @@ -251,7 +284,7 @@ indicator. Previously, there was an additional unnecessary space. **** Fix an error that occurred when unchecked buffers existed when invoking /QUIT. -* Fixes since ERC 5.0.1 +* Changes in ERC 5.0.2 ** If a channel key is required for a certain channel, ERC will prompt for one if `erc-prompt-for-channel-key' is non-nil. @@ -284,7 +317,7 @@ choice anymore. **** You can now save logs and truncate buffers from the menu-bar. -* Fixes since ERC 5.0 +* Changes in ERC 5.0.1 ** Narrowing in ERC buffers no longer causes formatting errors. @@ -298,7 +331,7 @@ choice anymore. This means that `erc-track-priority-faces-only', `erc-track-exclude', and `erc-track-exclude-types' now work with server buffers. -* Changes since ERC 4.0 +* Changes in ERC 5.0 ** Channel members are now stored as a hash-table. `erc-server-users' and `erc-channel-users' are now hash-tables, rather @@ -542,7 +575,7 @@ in XEmacs. mode-line where modified channels are shown (only works in GNU Emacs versions above 21.3). -* Changes since ERC 3.0.cvs.20030119 +* Changes in ERC 4.0 ** The module system has again changed a lot. You can now customize the variable `erc-modules' and define once and for all which @@ -565,7 +598,7 @@ in XEmacs. openprojects to freenode. You may need to update your configuration for a successful automatic nickserv identification. -* Changes since ERC 2.93.cvs.20020819 +* Changes in ERC 3.0.cvs.20030119 ** New module erc-dcc: diff --git a/lisp/erc/ChangeLog b/lisp/erc/ChangeLog index c77b091bdb4..9646318e758 100644 --- a/lisp/erc/ChangeLog +++ b/lisp/erc/ChangeLog @@ -1,8 +1,38 @@ +2006-02-05 Michael Olson + + * erc-spelling.el (erc-spelling-init): If + `erc-spelling-dictionaries' is nil, do not set + ispell-local-dictionary. Before, it was being set to nil, which + was causing a long delay while the ispell process restarted. + (erc-spelling-unhighlight-word): New function that removes + flyspell properties from a spell-checked word. + (erc-spelling-flyspell-verify): Don't spell-check nicks or words + that have '/' before them. + +2006-02-04 Michael Olson + + * erc-autojoin.el: Use (eval-when-compile (require 'cl)). + + * erc-complete.el (erc-nick-completion-exclude-myself) + (erc-try-complete-nick): Use better function for getting list of + channel users. + + * erc-goodies.el: Docfix. + + * erc-stamp.el: Use new arch tagline, since the other one wasn't + being treated properly. + + * erc.el (erc-version-string): Release ERC 5.1.1 + 2006-02-03 Zhang Wei (tiny change) * erc.el (erc-version-string): Don't hard-code Emacs version. (erc-version): Use emacs-version. +2006-01-31 Michael Olson + + * erc-stamp.el: Update copyright years. + 2006-01-30 Simon Josefsson * erc.el (erc-open-ssl-stream): Use tls.el. diff --git a/lisp/erc/erc-autojoin.el b/lisp/erc/erc-autojoin.el index 38a149d8921..06b1547b327 100644 --- a/lisp/erc/erc-autojoin.el +++ b/lisp/erc/erc-autojoin.el @@ -34,7 +34,7 @@ ;;; Code: (require 'erc) -;;; Minor Mode +(eval-when-compile (require 'cl)) (defgroup erc-autojoin nil "Enable autojoining." diff --git a/lisp/erc/erc-complete.el b/lisp/erc/erc-complete.el index 3b124f597ce..dd0130156f9 100644 --- a/lisp/erc/erc-complete.el +++ b/lisp/erc/erc-complete.el @@ -84,9 +84,9 @@ This function returns a list of all the members in the channel, except your own nick. This way if you're named foo and someone is called foobar, typing \"f o TAB\" will directly give you foobar. Use this with `erc-nick-completion'." - (delete + (remove (erc-current-nick) - (mapcar (function car) (erc-get-channel-user-list)))) + (erc-get-channel-nickname-list))) (defcustom erc-nick-completion-postfix ": " "*When `erc-complete' is used in the first word after the prompt, @@ -110,8 +110,7 @@ The type of completion depends on `erc-nick-completion'." (try-complete-erc-nick old erc-pals)) ((eq erc-nick-completion 'all) (try-complete-erc-nick old (append - (mapcar (function car) - (erc-get-channel-user-list)) + (erc-get-channel-nickname-list) (erc-command-list)))) ((functionp erc-nick-completion) (try-complete-erc-nick old (funcall erc-nick-completion))) diff --git a/lisp/erc/erc-goodies.el b/lisp/erc/erc-goodies.el index dbbdaacc141..c844af55594 100644 --- a/lisp/erc/erc-goodies.el +++ b/lisp/erc/erc-goodies.el @@ -110,7 +110,7 @@ Put this function on `erc-insert-post-hook' and/or `erc-send-post-hook'." (put-text-property (point-min) (point-max) 'front-sticky t) (put-text-property (point-min) (point-max) 'rear-nonsticky t)) -;; Distingush non-commands +;; Distinguish non-commands (defvar erc-noncommands-list '(erc-cmd-ME erc-cmd-COUNTRY erc-cmd-SV diff --git a/lisp/erc/erc-spelling.el b/lisp/erc/erc-spelling.el index dd9aad68f22..41e342c0e50 100644 --- a/lisp/erc/erc-spelling.el +++ b/lisp/erc/erc-spelling.el @@ -64,29 +64,52 @@ name here." "Enable flyspell mode in an ERC buffer." (let ((name (downcase (buffer-name))) (dicts erc-spelling-dictionaries)) - (while (and dicts - (not (string= name (downcase (caar dicts))))) - (setq dicts (cdr dicts))) - (setq ispell-local-dictionary - (if dicts - (cadr (car dicts)) - (let ((server (erc-server-buffer))) - (if server - (with-current-buffer server - ispell-local-dictionary) - nil))))) + (when dicts + (while (and dicts + (not (string= name (downcase (caar dicts))))) + (setq dicts (cdr dicts))) + (setq ispell-local-dictionary + (if dicts + (cadr (car dicts)) + (let ((server (erc-server-buffer))) + (if server + (with-current-buffer server + ispell-local-dictionary) + nil)))))) (setq flyspell-generic-check-word-p 'erc-spelling-flyspell-verify) (flyspell-mode 1)) +(defun erc-spelling-unhighlight-word (word) + "Unhighlight the given WORD. +The cadr is the beginning and the caddr is the end." + (let ((beg (nth 1 word)) + (end (nth 2 word))) + (flyspell-unhighlight-at beg) + (when (> end beg) + (flyspell-unhighlight-at (1- end))))) + +(defun erc-spelling-flyspell-verify () + "Flyspell only the input line, nothing else." + (let ((word-data (and (boundp 'flyspell-word) + flyspell-word))) + (when word-data + (cond ((< (point) erc-input-marker) + nil) + ;; don't spell-check names of users + ((and erc-channel-users + (erc-get-channel-user (car word-data))) + (erc-spelling-unhighlight-word word-data) + nil) + ;; if '/' occurs before the word, don't spell-check it + ((eq (char-before (nth 1 word-data)) ?/) + (erc-spelling-unhighlight-word word-data) + nil) + (t t))))) + (put 'erc-mode 'flyspell-mode-predicate 'erc-spelling-flyspell-verify) -(defun erc-spelling-flyspell-verify () - "Flyspell only the input line, nothing else." - (> (point) - erc-input-marker)) - (provide 'erc-spelling) ;; arch-tag: 04ae1c46-0fd1-4e1a-8b80-55bfa471c945 diff --git a/lisp/erc/erc-stamp.el b/lisp/erc/erc-stamp.el index afd070e4e06..6b34a2592f4 100644 --- a/lisp/erc/erc-stamp.el +++ b/lisp/erc/erc-stamp.el @@ -1,6 +1,6 @@ ;;; erc-stamp.el --- Timestamping for Emacs IRC CLient -;; Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc. ;; Author: Mario Lang ;; Keywords: comm, processes, timestamp @@ -338,4 +338,4 @@ NOW is position of point currently." ;; tab-width: 8 ;; End: -;; arch-tag: 9f6d31bf-61ba-45c5-bdbf-56331486ea27 +;; arch-tag: 57aefab4-63e0-4c48-91d5-6efa145487e0 diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index cc9dc8bf1b9..8d380847f5a 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -66,7 +66,7 @@ ;;; Code: -(defconst erc-version-string "Version 5.1" +(defconst erc-version-string "Version 5.1.1" "ERC version. This is used by function `erc-version'.") (eval-when-compile (require 'cl)) diff --git a/man/ChangeLog b/man/ChangeLog index d4923434daf..e3f7f97fac0 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -1,3 +1,7 @@ +2006-02-04 Michael Olson + + * erc.texi (History): Note that ERC is now included with Emacs. + 2006-02-03 Eli Zaretskii * custom.texi (Init File, Find Init): Add cross-references to diff --git a/man/erc.texi b/man/erc.texi index d4053e5e737..fb9c60d635d 100644 --- a/man/erc.texi +++ b/man/erc.texi @@ -12,7 +12,7 @@ @syncodeindex fn cp @copying -This manual is for ERC version 5.1. +This manual is for ERC version 5.1.1. Copyright @copyright{} 2005, 2006 Free Software Foundation, Inc. @@ -607,7 +607,7 @@ decided to include ERC in Emacs. @item 2006 -ERC 5.1 is released. +ERC 5.1 is released. It is subsequently included in Emacs 22. @end itemize From 0cf366568ece81fa6c46fb2447e3b7f9fbb1d673 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Sun, 5 Feb 2006 13:45:35 +0000 Subject: [PATCH 33/42] (malloc, realloc, free) [emacs]: Undefine macros before defining. --- src/ChangeLog | 3 +++ src/xrdb.c | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 4f411f95444..166222ae33c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -5,6 +5,9 @@ * lisp.h (XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]: Cast bitfield value to EMACS_INT, to suppress gcc warning. + * xrdb.c (malloc, realloc, free) [emacs]: Undefine macros before + defining. + 2006-02-03 Kim F. Storm * xdisp.c: Cache last merged escape glyph face. diff --git a/src/xrdb.c b/src/xrdb.c index 822fb6e2624..0a138687d7b 100644 --- a/src/xrdb.c +++ b/src/xrdb.c @@ -88,6 +88,10 @@ extern char *get_system_name (); /* Make sure not to #include anything after these definitions. Let's not step on anyone's prototypes. */ #ifdef emacs +/* darwin.h may have already defined these. */ +#undef malloc +#undef realloc +#undef free #define malloc xmalloc #define realloc xrealloc #define free xfree From 88e6695fac6ca5dc65daabaf46c377c5e0485ce1 Mon Sep 17 00:00:00 2001 From: Romain Francoise Date: Sun, 5 Feb 2006 13:56:44 +0000 Subject: [PATCH 34/42] Update copyright notices of all files in the gnus directory. --- lisp/gnus/ChangeLog | 4 ++++ lisp/gnus/binhex.el | 2 +- lisp/gnus/canlock.el | 2 +- lisp/gnus/compface.el | 2 +- lisp/gnus/deuglify.el | 2 +- lisp/gnus/dig.el | 2 +- lisp/gnus/dns.el | 2 +- lisp/gnus/earcon.el | 2 +- lisp/gnus/flow-fill.el | 2 +- lisp/gnus/format-spec.el | 2 +- lisp/gnus/gnus-agent.el | 2 +- lisp/gnus/gnus-async.el | 2 +- lisp/gnus/gnus-audio.el | 2 +- lisp/gnus/gnus-bcklg.el | 2 +- lisp/gnus/gnus-cache.el | 2 +- lisp/gnus/gnus-cite.el | 2 +- lisp/gnus/gnus-delay.el | 2 +- lisp/gnus/gnus-demon.el | 2 +- lisp/gnus/gnus-diary.el | 2 +- lisp/gnus/gnus-dired.el | 2 +- lisp/gnus/gnus-draft.el | 2 +- lisp/gnus/gnus-dup.el | 2 +- lisp/gnus/gnus-eform.el | 2 +- lisp/gnus/gnus-ems.el | 2 +- lisp/gnus/gnus-fun.el | 2 +- lisp/gnus/gnus-gl.el | 2 +- lisp/gnus/gnus-int.el | 2 +- lisp/gnus/gnus-kill.el | 2 +- lisp/gnus/gnus-logic.el | 2 +- lisp/gnus/gnus-mh.el | 2 +- lisp/gnus/gnus-ml.el | 2 +- lisp/gnus/gnus-mlspl.el | 2 +- lisp/gnus/gnus-move.el | 2 +- lisp/gnus/gnus-msg.el | 2 +- lisp/gnus/gnus-nocem.el | 2 +- lisp/gnus/gnus-picon.el | 2 +- lisp/gnus/gnus-range.el | 2 +- lisp/gnus/gnus-registry.el | 2 +- lisp/gnus/gnus-salt.el | 2 +- lisp/gnus/gnus-score.el | 2 +- lisp/gnus/gnus-setup.el | 2 +- lisp/gnus/gnus-sieve.el | 2 +- lisp/gnus/gnus-soup.el | 2 +- lisp/gnus/gnus-spec.el | 2 +- lisp/gnus/gnus-srvr.el | 2 +- lisp/gnus/gnus-topic.el | 2 +- lisp/gnus/gnus-undo.el | 2 +- lisp/gnus/gnus-util.el | 4 ++-- lisp/gnus/gnus-uu.el | 2 +- lisp/gnus/gnus-vm.el | 2 +- lisp/gnus/gnus-win.el | 2 +- lisp/gnus/gnus.el | 2 +- lisp/gnus/hex-util.el | 2 +- lisp/gnus/html2text.el | 2 +- lisp/gnus/ietf-drums.el | 2 +- lisp/gnus/imap.el | 2 +- lisp/gnus/mail-parse.el | 2 +- lisp/gnus/mail-prsvr.el | 2 +- lisp/gnus/mail-source.el | 2 +- lisp/gnus/messcompat.el | 2 +- lisp/gnus/mm-encode.el | 2 +- lisp/gnus/mm-extern.el | 2 +- lisp/gnus/mm-partial.el | 2 +- lisp/gnus/mm-url.el | 2 +- lisp/gnus/mm-util.el | 2 +- lisp/gnus/mml-sec.el | 2 +- lisp/gnus/mml-smime.el | 2 +- lisp/gnus/mml1991.el | 2 +- lisp/gnus/mml2015.el | 2 +- lisp/gnus/nnagent.el | 2 +- lisp/gnus/nnbabyl.el | 2 +- lisp/gnus/nndb.el | 2 +- lisp/gnus/nndiary.el | 2 +- lisp/gnus/nndir.el | 2 +- lisp/gnus/nndoc.el | 2 +- lisp/gnus/nndraft.el | 2 +- lisp/gnus/nneething.el | 2 +- lisp/gnus/nnfolder.el | 2 +- lisp/gnus/nngateway.el | 2 +- lisp/gnus/nnheader.el | 2 +- lisp/gnus/nnimap.el | 2 +- lisp/gnus/nnkiboze.el | 2 +- lisp/gnus/nnlistserv.el | 2 +- lisp/gnus/nnmail.el | 2 +- lisp/gnus/nnmbox.el | 2 +- lisp/gnus/nnmh.el | 2 +- lisp/gnus/nnml.el | 2 +- lisp/gnus/nnoo.el | 2 +- lisp/gnus/nnslashdot.el | 2 +- lisp/gnus/nnsoup.el | 2 +- lisp/gnus/nnspool.el | 2 +- lisp/gnus/nntp.el | 2 +- lisp/gnus/nnultimate.el | 2 +- lisp/gnus/nnvirtual.el | 2 +- lisp/gnus/nnwarchive.el | 2 +- lisp/gnus/nnwfm.el | 3 ++- lisp/gnus/pop3.el | 2 +- lisp/gnus/qp.el | 2 +- lisp/gnus/rfc1843.el | 2 +- lisp/gnus/rfc2045.el | 2 +- lisp/gnus/rfc2047.el | 2 +- lisp/gnus/rfc2104.el | 2 +- lisp/gnus/score-mode.el | 2 +- lisp/gnus/sha1.el | 2 +- lisp/gnus/sieve-manage.el | 3 ++- lisp/gnus/sieve-mode.el | 3 ++- lisp/gnus/sieve.el | 2 +- lisp/gnus/smiley.el | 2 +- lisp/gnus/smime.el | 2 +- lisp/gnus/spam-report.el | 2 +- lisp/gnus/spam-stat.el | 2 +- lisp/gnus/spam.el | 2 +- lisp/gnus/starttls.el | 2 +- lisp/gnus/utf7.el | 2 +- lisp/gnus/uudecode.el | 2 +- lisp/gnus/webmail.el | 2 +- lisp/gnus/yenc.el | 2 +- 117 files changed, 124 insertions(+), 117 deletions(-) diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 1edd84bea48..620e017b38e 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,7 @@ +2006-02-05 Romain Francoise + + Update copyright notices of all files in the gnus directory. + 2006-02-03 Reiner Steib * gnus-util.el (gnus-error): Describe `args'. diff --git a/lisp/gnus/binhex.el b/lisp/gnus/binhex.el index af0669f62aa..f01b2ff8b51 100644 --- a/lisp/gnus/binhex.el +++ b/lisp/gnus/binhex.el @@ -1,7 +1,7 @@ ;;; binhex.el --- elisp native binhex decode ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: binhex news diff --git a/lisp/gnus/canlock.el b/lisp/gnus/canlock.el index bad7ea0409e..9f063bb3644 100644 --- a/lisp/gnus/canlock.el +++ b/lisp/gnus/canlock.el @@ -1,7 +1,7 @@ ;;; canlock.el --- functions for Cancel-Lock feature ;; Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Katsumi Yamaoka ;; Keywords: news, cancel-lock, hmac, sha1, rfc2104 diff --git a/lisp/gnus/compface.el b/lisp/gnus/compface.el index 874c8bd6222..f6bd9bfd720 100644 --- a/lisp/gnus/compface.el +++ b/lisp/gnus/compface.el @@ -1,6 +1,6 @@ ;;; compface.el --- functions for converting X-Face headers -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/deuglify.el b/lisp/gnus/deuglify.el index 98e22e04eaa..4096324fdaa 100644 --- a/lisp/gnus/deuglify.el +++ b/lisp/gnus/deuglify.el @@ -1,6 +1,6 @@ ;;; deuglify.el --- deuglify broken Outlook (Express) articles -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Copyright (C) 2001, 2002 Raymond Scholz ;; Author: Raymond Scholz diff --git a/lisp/gnus/dig.el b/lisp/gnus/dig.el index ed752e56520..e180cdad364 100644 --- a/lisp/gnus/dig.el +++ b/lisp/gnus/dig.el @@ -1,7 +1,7 @@ ;;; dig.el --- Domain Name System dig interface ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Keywords: DNS BIND dig diff --git a/lisp/gnus/dns.el b/lisp/gnus/dns.el index d73848ca6e5..d6c41ea823e 100644 --- a/lisp/gnus/dns.el +++ b/lisp/gnus/dns.el @@ -1,6 +1,6 @@ ;;; dns.el --- Domain Name Service lookups -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: network diff --git a/lisp/gnus/earcon.el b/lisp/gnus/earcon.el index 37ccb3baba1..a70e68d9a62 100644 --- a/lisp/gnus/earcon.el +++ b/lisp/gnus/earcon.el @@ -1,7 +1,7 @@ ;;; earcon.el --- Sound effects for messages ;; Copyright (C) 1996, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Steven L. Baur diff --git a/lisp/gnus/flow-fill.el b/lisp/gnus/flow-fill.el index b69bb20e31f..c3f7f7bb20e 100644 --- a/lisp/gnus/flow-fill.el +++ b/lisp/gnus/flow-fill.el @@ -1,7 +1,7 @@ ;;; flow-fill.el --- interpret RFC2646 "flowed" text ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Keywords: mail diff --git a/lisp/gnus/format-spec.el b/lisp/gnus/format-spec.el index b2fde53b3f1..d287cd4081f 100644 --- a/lisp/gnus/format-spec.el +++ b/lisp/gnus/format-spec.el @@ -1,7 +1,7 @@ ;;; format-spec.el --- functions for formatting arbitrary formatting strings ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: tools diff --git a/lisp/gnus/gnus-agent.el b/lisp/gnus/gnus-agent.el index 400dbe7c29f..c467c296fa0 100644 --- a/lisp/gnus/gnus-agent.el +++ b/lisp/gnus/gnus-agent.el @@ -1,7 +1,7 @@ ;;; gnus-agent.el --- unplugged support for Gnus ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. diff --git a/lisp/gnus/gnus-async.el b/lisp/gnus/gnus-async.el index 54e651c9e9c..91d6358d2ad 100644 --- a/lisp/gnus/gnus-async.el +++ b/lisp/gnus/gnus-async.el @@ -1,7 +1,7 @@ ;;; gnus-async.el --- asynchronous support for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-audio.el b/lisp/gnus/gnus-audio.el index 7f6bd1167d5..be100195b84 100644 --- a/lisp/gnus/gnus-audio.el +++ b/lisp/gnus/gnus-audio.el @@ -1,7 +1,7 @@ ;;; gnus-audio.el --- Sound effects for Gnus ;; Copyright (C) 1996, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Steven L. Baur ;; Keywords: news, mail, multimedia diff --git a/lisp/gnus/gnus-bcklg.el b/lisp/gnus/gnus-bcklg.el index 4ae08d2e470..e1456d8a9cd 100644 --- a/lisp/gnus/gnus-bcklg.el +++ b/lisp/gnus/gnus-bcklg.el @@ -1,7 +1,7 @@ ;;; gnus-bcklg.el --- backlog functions for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-cache.el b/lisp/gnus/gnus-cache.el index 7785fd4c7de..c95ef75ceb1 100644 --- a/lisp/gnus/gnus-cache.el +++ b/lisp/gnus/gnus-cache.el @@ -1,7 +1,7 @@ ;;; gnus-cache.el --- cache interface for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-cite.el b/lisp/gnus/gnus-cite.el index c33d224a49c..44f54047be8 100644 --- a/lisp/gnus/gnus-cite.el +++ b/lisp/gnus/gnus-cite.el @@ -1,7 +1,7 @@ ;;; gnus-cite.el --- parse citations in articles for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Per Abhiddenware diff --git a/lisp/gnus/gnus-delay.el b/lisp/gnus/gnus-delay.el index a427aaefab8..9aab7d0996d 100644 --- a/lisp/gnus/gnus-delay.el +++ b/lisp/gnus/gnus-delay.el @@ -1,6 +1,6 @@ ;;; gnus-delay.el --- Delayed posting of articles -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Kai Großjohann ;; Keywords: mail, news, extensions diff --git a/lisp/gnus/gnus-demon.el b/lisp/gnus/gnus-demon.el index 09015bfd636..8df3a3b0e70 100644 --- a/lisp/gnus/gnus-demon.el +++ b/lisp/gnus/gnus-demon.el @@ -1,7 +1,7 @@ ;;; gnus-demon.el --- daemonic Gnus behaviour ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-diary.el b/lisp/gnus/gnus-diary.el index d9ab81a4b9f..5dfbd56af24 100644 --- a/lisp/gnus/gnus-diary.el +++ b/lisp/gnus/gnus-diary.el @@ -1,6 +1,6 @@ ;;; gnus-diary.el --- Wrapper around the NNDiary Gnus backend -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Copyright (C) 1999, 2000, 2001 Didier Verna. ;; Author: Didier Verna diff --git a/lisp/gnus/gnus-dired.el b/lisp/gnus/gnus-dired.el index 665e75b2e86..8eda432f3f8 100644 --- a/lisp/gnus/gnus-dired.el +++ b/lisp/gnus/gnus-dired.el @@ -1,7 +1,7 @@ ;;; gnus-dired.el --- utility functions where gnus and dired meet ;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Authors: Benjamin Rutt , ;; Shenghuo Zhu diff --git a/lisp/gnus/gnus-draft.el b/lisp/gnus/gnus-draft.el index c4cd4deddac..0d250a3ad0b 100644 --- a/lisp/gnus/gnus-draft.el +++ b/lisp/gnus/gnus-draft.el @@ -1,7 +1,7 @@ ;;; gnus-draft.el --- draft message support for Gnus ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-dup.el b/lisp/gnus/gnus-dup.el index c5358728d0b..651237f1348 100644 --- a/lisp/gnus/gnus-dup.el +++ b/lisp/gnus/gnus-dup.el @@ -1,7 +1,7 @@ ;;; gnus-dup.el --- suppression of duplicate articles in Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-eform.el b/lisp/gnus/gnus-eform.el index c133d1541d8..be31e37c8fe 100644 --- a/lisp/gnus/gnus-eform.el +++ b/lisp/gnus/gnus-eform.el @@ -1,7 +1,7 @@ ;;; gnus-eform.el --- a mode for editing forms for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-ems.el b/lisp/gnus/gnus-ems.el index c6ab1939547..44f84237a4b 100644 --- a/lisp/gnus/gnus-ems.el +++ b/lisp/gnus/gnus-ems.el @@ -1,7 +1,7 @@ ;;; gnus-ems.el --- functions for making Gnus work under different Emacsen ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-fun.el b/lisp/gnus/gnus-fun.el index 43cd02c1b5e..e1655e91945 100644 --- a/lisp/gnus/gnus-fun.el +++ b/lisp/gnus/gnus-fun.el @@ -1,6 +1,6 @@ ;;; gnus-fun.el --- various frivolous extension functions to Gnus -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-gl.el b/lisp/gnus/gnus-gl.el index aac386cefc9..59214cec024 100644 --- a/lisp/gnus/gnus-gl.el +++ b/lisp/gnus/gnus-gl.el @@ -1,7 +1,7 @@ ;;; gnus-gl.el --- an interface to GroupLens for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Brad Miller ;; Keywords: news, score diff --git a/lisp/gnus/gnus-int.el b/lisp/gnus/gnus-int.el index 8b274a09212..b59a3c1530b 100644 --- a/lisp/gnus/gnus-int.el +++ b/lisp/gnus/gnus-int.el @@ -1,7 +1,7 @@ ;;; gnus-int.el --- backend interface functions for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-kill.el b/lisp/gnus/gnus-kill.el index 6cdd76647df..90a4fcb593f 100644 --- a/lisp/gnus/gnus-kill.el +++ b/lisp/gnus/gnus-kill.el @@ -1,7 +1,7 @@ ;;; gnus-kill.el --- kill commands for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/gnus-logic.el b/lisp/gnus/gnus-logic.el index 288bf3caa92..b7091eda6f5 100644 --- a/lisp/gnus/gnus-logic.el +++ b/lisp/gnus/gnus-logic.el @@ -1,7 +1,7 @@ ;;; gnus-logic.el --- advanced scoring code for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-mh.el b/lisp/gnus/gnus-mh.el index cc36aa64687..34c310f3205 100644 --- a/lisp/gnus/gnus-mh.el +++ b/lisp/gnus/gnus-mh.el @@ -1,7 +1,7 @@ ;;; gnus-mh.el --- mh-e interface for Gnus ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/gnus-ml.el b/lisp/gnus/gnus-ml.el index c2cf1090d97..cde039d03c0 100644 --- a/lisp/gnus/gnus-ml.el +++ b/lisp/gnus/gnus-ml.el @@ -1,7 +1,7 @@ ;;; gnus-ml.el --- Mailing list minor mode for Gnus ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Julien Gilles ;; Keywords: news diff --git a/lisp/gnus/gnus-mlspl.el b/lisp/gnus/gnus-mlspl.el index 291145cabfc..cf2877caf0f 100644 --- a/lisp/gnus/gnus-mlspl.el +++ b/lisp/gnus/gnus-mlspl.el @@ -1,7 +1,7 @@ ;;; gnus-mlspl.el --- a group params-based mail splitting mechanism ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Alexandre Oliva ;; Keywords: news, mail diff --git a/lisp/gnus/gnus-move.el b/lisp/gnus/gnus-move.el index 7accde21db4..8a27ccd5d7f 100644 --- a/lisp/gnus/gnus-move.el +++ b/lisp/gnus/gnus-move.el @@ -1,7 +1,7 @@ ;;; gnus-move.el --- commands for moving Gnus from one server to another ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index a1efede2a4d..28a90b5b796 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -1,7 +1,7 @@ ;;; gnus-msg.el --- mail and post interface for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/gnus-nocem.el b/lisp/gnus/gnus-nocem.el index 7718e53ea60..b17c33a5d7f 100644 --- a/lisp/gnus/gnus-nocem.el +++ b/lisp/gnus/gnus-nocem.el @@ -1,7 +1,7 @@ ;;; gnus-nocem.el --- NoCeM pseudo-cancellation treatment ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-picon.el b/lisp/gnus/gnus-picon.el index 90733027cc5..4f8d603c814 100644 --- a/lisp/gnus/gnus-picon.el +++ b/lisp/gnus/gnus-picon.el @@ -1,7 +1,7 @@ ;;; gnus-picon.el --- displaying pretty icons in Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news xpm annotation glyph faces diff --git a/lisp/gnus/gnus-range.el b/lisp/gnus/gnus-range.el index 90ea8556754..14355bc96af 100644 --- a/lisp/gnus/gnus-range.el +++ b/lisp/gnus/gnus-range.el @@ -1,7 +1,7 @@ ;;; gnus-range.el --- range and sequence functions for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-registry.el b/lisp/gnus/gnus-registry.el index 17e8d5a5f50..2e452136f3c 100644 --- a/lisp/gnus/gnus-registry.el +++ b/lisp/gnus/gnus-registry.el @@ -1,7 +1,7 @@ ;;; gnus-registry.el --- article registry for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Ted Zlatanov ;; Keywords: news diff --git a/lisp/gnus/gnus-salt.el b/lisp/gnus/gnus-salt.el index 89e45cac052..fd2411809b4 100644 --- a/lisp/gnus/gnus-salt.el +++ b/lisp/gnus/gnus-salt.el @@ -1,7 +1,7 @@ ;;; gnus-salt.el --- alternate summary mode interfaces for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-score.el b/lisp/gnus/gnus-score.el index f9edda4ec64..642ca1aefa9 100644 --- a/lisp/gnus/gnus-score.el +++ b/lisp/gnus/gnus-score.el @@ -1,7 +1,7 @@ ;;; gnus-score.el --- scoring code for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Per Abrahamsen ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/gnus-setup.el b/lisp/gnus/gnus-setup.el index f67fe491d82..8cdce45b7a9 100644 --- a/lisp/gnus/gnus-setup.el +++ b/lisp/gnus/gnus-setup.el @@ -1,7 +1,7 @@ ;;; gnus-setup.el --- Initialization & Setup for Gnus 5 ;; Copyright (C) 1995, 1996, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Steven L. Baur ;; Keywords: news diff --git a/lisp/gnus/gnus-sieve.el b/lisp/gnus/gnus-sieve.el index d790fec9aec..99e8f6b4986 100644 --- a/lisp/gnus/gnus-sieve.el +++ b/lisp/gnus/gnus-sieve.el @@ -1,6 +1,6 @@ ;;; gnus-sieve.el --- Utilities to manage sieve scripts for Gnus -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: NAGY Andras , ;; Simon Josefsson diff --git a/lisp/gnus/gnus-soup.el b/lisp/gnus/gnus-soup.el index 6bcd2c32cce..bca59849766 100644 --- a/lisp/gnus/gnus-soup.el +++ b/lisp/gnus/gnus-soup.el @@ -1,7 +1,7 @@ ;;; gnus-soup.el --- SOUP packet writing support for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Per Abrahamsen ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/gnus-spec.el b/lisp/gnus/gnus-spec.el index 67c0ba88742..c6ffee78c77 100644 --- a/lisp/gnus/gnus-spec.el +++ b/lisp/gnus/gnus-spec.el @@ -1,7 +1,7 @@ ;;; gnus-spec.el --- format spec functions for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-srvr.el b/lisp/gnus/gnus-srvr.el index d7629c26fda..5d4f9c2a3f6 100644 --- a/lisp/gnus/gnus-srvr.el +++ b/lisp/gnus/gnus-srvr.el @@ -1,7 +1,7 @@ ;;; gnus-srvr.el --- virtual server support for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-topic.el b/lisp/gnus/gnus-topic.el index 945665fdcca..fc80a26f6b9 100644 --- a/lisp/gnus/gnus-topic.el +++ b/lisp/gnus/gnus-topic.el @@ -1,7 +1,7 @@ ;;; gnus-topic.el --- a folding minor mode for Gnus group buffers ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Ilja Weis ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/gnus-undo.el b/lisp/gnus/gnus-undo.el index 09753150aa3..47be2ed97f5 100644 --- a/lisp/gnus/gnus-undo.el +++ b/lisp/gnus/gnus-undo.el @@ -1,7 +1,7 @@ ;;; gnus-undo.el --- minor mode for undoing in Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el index c71b9630db2..c9a3f8c965a 100644 --- a/lisp/gnus/gnus-util.el +++ b/lisp/gnus/gnus-util.el @@ -1,7 +1,7 @@ ;;; gnus-util.el --- utility functions for Gnus -;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -;; Free Software Foundation, Inc. +;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus-uu.el b/lisp/gnus/gnus-uu.el index 01f21887aee..e9756547167 100644 --- a/lisp/gnus/gnus-uu.el +++ b/lisp/gnus/gnus-uu.el @@ -1,7 +1,7 @@ ;;; gnus-uu.el --- extract (uu)encoded files in Gnus ;; Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, -;; 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Created: 2 Oct 1993 diff --git a/lisp/gnus/gnus-vm.el b/lisp/gnus/gnus-vm.el index 31bd639a7c6..775e0aabf1d 100644 --- a/lisp/gnus/gnus-vm.el +++ b/lisp/gnus/gnus-vm.el @@ -1,7 +1,7 @@ ;;; gnus-vm.el --- vm interface for Gnus ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -;; 2003, 2004, 2005 Free Software Foundation, Inc. +;; 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Per Persson ;; Keywords: news, mail diff --git a/lisp/gnus/gnus-win.el b/lisp/gnus/gnus-win.el index 5b8ddb32c00..42289109546 100644 --- a/lisp/gnus/gnus-win.el +++ b/lisp/gnus/gnus-win.el @@ -1,7 +1,7 @@ ;;; gnus-win.el --- window configuration functions for Gnus ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 20e41bde239..359e48cb701 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -1,7 +1,7 @@ ;;; gnus.el --- a newsreader for GNU Emacs ;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997, 1998, -;; 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/hex-util.el b/lisp/gnus/hex-util.el index 1cc67c2861c..51553c2f8d1 100644 --- a/lisp/gnus/hex-util.el +++ b/lisp/gnus/hex-util.el @@ -1,7 +1,7 @@ ;;; hex-util.el --- Functions to encode/decode hexadecimal string. ;; Copyright (C) 1999, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shuhei KOBAYASHI ;; Keywords: data diff --git a/lisp/gnus/html2text.el b/lisp/gnus/html2text.el index 41ba54f759e..ceba84decf1 100644 --- a/lisp/gnus/html2text.el +++ b/lisp/gnus/html2text.el @@ -1,6 +1,6 @@ ;;; html2text.el --- a simple html to plain text converter -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Joakim Hove diff --git a/lisp/gnus/ietf-drums.el b/lisp/gnus/ietf-drums.el index 98f3d20330f..aace5f4f7e2 100644 --- a/lisp/gnus/ietf-drums.el +++ b/lisp/gnus/ietf-drums.el @@ -1,7 +1,7 @@ ;;; ietf-drums.el --- Functions for parsing RFC822bis headers ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. diff --git a/lisp/gnus/imap.el b/lisp/gnus/imap.el index 967d79463f2..7b40773ca06 100644 --- a/lisp/gnus/imap.el +++ b/lisp/gnus/imap.el @@ -1,7 +1,7 @@ ;;; imap.el --- imap library ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Keywords: mail diff --git a/lisp/gnus/mail-parse.el b/lisp/gnus/mail-parse.el index 106aedad085..6a9a4755bb2 100644 --- a/lisp/gnus/mail-parse.el +++ b/lisp/gnus/mail-parse.el @@ -1,7 +1,7 @@ ;;; mail-parse.el --- Interface functions for parsing mail ;; Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. diff --git a/lisp/gnus/mail-prsvr.el b/lisp/gnus/mail-prsvr.el index d990f8dbc54..144d61eb6a3 100644 --- a/lisp/gnus/mail-prsvr.el +++ b/lisp/gnus/mail-prsvr.el @@ -1,7 +1,7 @@ ;;; mail-prsvr.el --- Interface variables for parsing mail ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. diff --git a/lisp/gnus/mail-source.el b/lisp/gnus/mail-source.el index c31fa6825f4..9683f28154b 100644 --- a/lisp/gnus/mail-source.el +++ b/lisp/gnus/mail-source.el @@ -1,7 +1,7 @@ ;;; mail-source.el --- functions for fetching mail ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail diff --git a/lisp/gnus/messcompat.el b/lisp/gnus/messcompat.el index d7c8f40de26..f7b06f69029 100644 --- a/lisp/gnus/messcompat.el +++ b/lisp/gnus/messcompat.el @@ -1,7 +1,7 @@ ;;; messcompat.el --- making message mode compatible with mail mode ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, news diff --git a/lisp/gnus/mm-encode.el b/lisp/gnus/mm-encode.el index 5e149d16ed3..5ea2d7dd1b6 100644 --- a/lisp/gnus/mm-encode.el +++ b/lisp/gnus/mm-encode.el @@ -1,7 +1,7 @@ ;;; mm-encode.el --- Functions for encoding MIME things ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; MORIOKA Tomohiko diff --git a/lisp/gnus/mm-extern.el b/lisp/gnus/mm-extern.el index 2f75139497e..da3ecb8f351 100644 --- a/lisp/gnus/mm-extern.el +++ b/lisp/gnus/mm-extern.el @@ -1,7 +1,7 @@ ;;; mm-extern.el --- showing message/external-body ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: message external-body diff --git a/lisp/gnus/mm-partial.el b/lisp/gnus/mm-partial.el index 1c0c708d2a0..69f8b1ff504 100644 --- a/lisp/gnus/mm-partial.el +++ b/lisp/gnus/mm-partial.el @@ -1,7 +1,7 @@ ;;; mm-partial.el --- showing message/partial ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: message partial diff --git a/lisp/gnus/mm-url.el b/lisp/gnus/mm-url.el index 22a9dbf077c..ba21247f356 100644 --- a/lisp/gnus/mm-url.el +++ b/lisp/gnus/mm-url.el @@ -1,6 +1,6 @@ ;;; mm-url.el --- a wrapper of url functions/commands for Gnus -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu diff --git a/lisp/gnus/mm-util.el b/lisp/gnus/mm-util.el index 42ca8e232fd..c8f59ec263f 100644 --- a/lisp/gnus/mm-util.el +++ b/lisp/gnus/mm-util.el @@ -1,7 +1,7 @@ ;;; mm-util.el --- Utility functions for Mule and low level things ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; MORIOKA Tomohiko diff --git a/lisp/gnus/mml-sec.el b/lisp/gnus/mml-sec.el index f8c573a7656..2af068897f0 100644 --- a/lisp/gnus/mml-sec.el +++ b/lisp/gnus/mml-sec.el @@ -1,7 +1,7 @@ ;;; mml-sec.el --- A package with security functions for MML documents ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson diff --git a/lisp/gnus/mml-smime.el b/lisp/gnus/mml-smime.el index 2933c14744a..8115a78e618 100644 --- a/lisp/gnus/mml-smime.el +++ b/lisp/gnus/mml-smime.el @@ -1,7 +1,7 @@ ;;; mml-smime.el --- S/MIME support for MML ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Keywords: Gnus, MIME, S/MIME, MML diff --git a/lisp/gnus/mml1991.el b/lisp/gnus/mml1991.el index 932737dc4be..761ce4f0af4 100644 --- a/lisp/gnus/mml1991.el +++ b/lisp/gnus/mml1991.el @@ -1,7 +1,7 @@ ;;; mml1991.el --- Old PGP message format (RFC 1991) support for MML ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Sascha Lüdecke , ;; Simon Josefsson (Mailcrypt interface, Gnus glue) diff --git a/lisp/gnus/mml2015.el b/lisp/gnus/mml2015.el index c8d46c99f51..cb9e77983d3 100644 --- a/lisp/gnus/mml2015.el +++ b/lisp/gnus/mml2015.el @@ -1,7 +1,7 @@ ;;; mml2015.el --- MIME Security with Pretty Good Privacy (PGP) ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: PGP MIME MML diff --git a/lisp/gnus/nnagent.el b/lisp/gnus/nnagent.el index 4b8233a4d54..d1c95bd2aa6 100644 --- a/lisp/gnus/nnagent.el +++ b/lisp/gnus/nnagent.el @@ -1,7 +1,7 @@ ;;; nnagent.el --- offline backend for Gnus ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail diff --git a/lisp/gnus/nnbabyl.el b/lisp/gnus/nnbabyl.el index afdd4d15350..f0c135b4cc9 100644 --- a/lisp/gnus/nnbabyl.el +++ b/lisp/gnus/nnbabyl.el @@ -1,7 +1,7 @@ ;;; nnbabyl.el --- rmail mbox access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1099, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA diff --git a/lisp/gnus/nndb.el b/lisp/gnus/nndb.el index ca5b27cdd1d..7aa4edc7ab8 100644 --- a/lisp/gnus/nndb.el +++ b/lisp/gnus/nndb.el @@ -1,7 +1,7 @@ ;;; nndb.el --- nndb access for Gnus ;; Copyright (C) 1997, 1998, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Kai Grossjohann diff --git a/lisp/gnus/nndiary.el b/lisp/gnus/nndiary.el index 4be4c6f6646..0c83a2d5124 100644 --- a/lisp/gnus/nndiary.el +++ b/lisp/gnus/nndiary.el @@ -1,7 +1,7 @@ ;;; nndiary.el --- A diary backend for Gnus ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Didier Verna ;; Maintainer: Didier Verna diff --git a/lisp/gnus/nndir.el b/lisp/gnus/nndir.el index 18e64e83997..ec47c94749f 100644 --- a/lisp/gnus/nndir.el +++ b/lisp/gnus/nndir.el @@ -1,7 +1,7 @@ ;;; nndir.el --- single directory newsgroup access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/nndoc.el b/lisp/gnus/nndoc.el index 70e301b5b00..764f085e6a7 100644 --- a/lisp/gnus/nndoc.el +++ b/lisp/gnus/nndoc.el @@ -1,7 +1,7 @@ ;;; nndoc.el --- single file access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA diff --git a/lisp/gnus/nndraft.el b/lisp/gnus/nndraft.el index beea344e0c3..fa497e1c76f 100644 --- a/lisp/gnus/nndraft.el +++ b/lisp/gnus/nndraft.el @@ -1,7 +1,7 @@ ;;; nndraft.el --- draft article access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/nneething.el b/lisp/gnus/nneething.el index 33f6a5f4ea5..92a62d12386 100644 --- a/lisp/gnus/nneething.el +++ b/lisp/gnus/nneething.el @@ -1,7 +1,7 @@ ;;; nneething.el --- arbitrary file access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA diff --git a/lisp/gnus/nnfolder.el b/lisp/gnus/nnfolder.el index 5a29878b5fb..c7043011fa2 100644 --- a/lisp/gnus/nnfolder.el +++ b/lisp/gnus/nnfolder.el @@ -1,7 +1,7 @@ ;;; nnfolder.el --- mail folder access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson (adding MARKS) ;; ShengHuo Zhu (adding NOV) diff --git a/lisp/gnus/nngateway.el b/lisp/gnus/nngateway.el index 8ddbf9ca13b..2f4e33d80ca 100644 --- a/lisp/gnus/nngateway.el +++ b/lisp/gnus/nngateway.el @@ -1,7 +1,7 @@ ;;; nngateway.el --- posting news via mail gateways ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail diff --git a/lisp/gnus/nnheader.el b/lisp/gnus/nnheader.el index 45e030027a9..d564d42414e 100644 --- a/lisp/gnus/nnheader.el +++ b/lisp/gnus/nnheader.el @@ -2,7 +2,7 @@ ;; Copyright (C) 1987, 1988, 1989, 1990, 1993, 1994, ;; 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index a2906a900df..26c0f8901ee 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el @@ -1,7 +1,7 @@ ;;; nnimap.el --- imap backend for Gnus ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Jim Radford diff --git a/lisp/gnus/nnkiboze.el b/lisp/gnus/nnkiboze.el index ee3c804ae8f..b1fbc1f3d1d 100644 --- a/lisp/gnus/nnkiboze.el +++ b/lisp/gnus/nnkiboze.el @@ -1,7 +1,7 @@ ;;; nnkiboze.el --- select virtual news access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/nnlistserv.el b/lisp/gnus/nnlistserv.el index 2b9d478086d..3ee8f4200a4 100644 --- a/lisp/gnus/nnlistserv.el +++ b/lisp/gnus/nnlistserv.el @@ -1,7 +1,7 @@ ;;; nnlistserv.el --- retrieving articles via web mailing list archives ;; Copyright (C) 1997, 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el index 1f0d1c91f49..edffd6f709a 100644 --- a/lisp/gnus/nnmail.el +++ b/lisp/gnus/nnmail.el @@ -1,7 +1,7 @@ ;;; nnmail.el --- mail support functions for the Gnus mail backends ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail diff --git a/lisp/gnus/nnmbox.el b/lisp/gnus/nnmbox.el index fe25ef9d0a4..7d75f655337 100644 --- a/lisp/gnus/nnmbox.el +++ b/lisp/gnus/nnmbox.el @@ -1,7 +1,7 @@ ;;; nnmbox.el --- mail mbox access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA diff --git a/lisp/gnus/nnmh.el b/lisp/gnus/nnmh.el index 4c0af4fdcfb..afcee98299c 100644 --- a/lisp/gnus/nnmh.el +++ b/lisp/gnus/nnmh.el @@ -1,7 +1,7 @@ ;;; nnmh.el --- mhspool access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA diff --git a/lisp/gnus/nnml.el b/lisp/gnus/nnml.el index 9bdd08fd3ca..2cc8023366b 100644 --- a/lisp/gnus/nnml.el +++ b/lisp/gnus/nnml.el @@ -1,7 +1,7 @@ ;;; nnml.el --- mail spool access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson (adding MARKS) ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/nnoo.el b/lisp/gnus/nnoo.el index fcd50c3a767..7a66b4c55aa 100644 --- a/lisp/gnus/nnoo.el +++ b/lisp/gnus/nnoo.el @@ -1,7 +1,7 @@ ;;; nnoo.el --- OO Gnus Backends ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/nnslashdot.el b/lisp/gnus/nnslashdot.el index 522f94acabc..38468d7d194 100644 --- a/lisp/gnus/nnslashdot.el +++ b/lisp/gnus/nnslashdot.el @@ -1,7 +1,7 @@ ;;; nnslashdot.el --- interfacing with Slashdot ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/nnsoup.el b/lisp/gnus/nnsoup.el index 94c259b6d96..9dc429ec135 100644 --- a/lisp/gnus/nnsoup.el +++ b/lisp/gnus/nnsoup.el @@ -1,7 +1,7 @@ ;;; nnsoup.el --- SOUP access for Gnus ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Masanobu UMEDA diff --git a/lisp/gnus/nnspool.el b/lisp/gnus/nnspool.el index 228879a4dad..8de0c17c708 100644 --- a/lisp/gnus/nnspool.el +++ b/lisp/gnus/nnspool.el @@ -1,7 +1,7 @@ ;;; nnspool.el --- spool access for GNU Emacs ;; Copyright (C) 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997, 1998, -;; 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Masanobu UMEDA ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index ca63fa597ef..c5ab7da7b2b 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -2,7 +2,7 @@ ;; Copyright (C) 1987, 1988, 1989, 1990, 1992, 1993, ;; 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, -;; 2003, 2004, 2005 Free Software Foundation, Inc. +;; 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/nnultimate.el b/lisp/gnus/nnultimate.el index 46896640168..53522c099e5 100644 --- a/lisp/gnus/nnultimate.el +++ b/lisp/gnus/nnultimate.el @@ -1,7 +1,7 @@ ;;; nnultimate.el --- interfacing with the Ultimate Bulletin Board system ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/nnvirtual.el b/lisp/gnus/nnvirtual.el index 28ef0f5c830..ba1b6445623 100644 --- a/lisp/gnus/nnvirtual.el +++ b/lisp/gnus/nnvirtual.el @@ -1,7 +1,7 @@ ;;; nnvirtual.el --- virtual newsgroups access for Gnus ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -;; 2003, 2004, 2005 Free Software Foundation, Inc. +;; 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: David Moore ;; Lars Magne Ingebrigtsen diff --git a/lisp/gnus/nnwarchive.el b/lisp/gnus/nnwarchive.el index a543c8edb82..13a22419672 100644 --- a/lisp/gnus/nnwarchive.el +++ b/lisp/gnus/nnwarchive.el @@ -1,7 +1,7 @@ ;;; nnwarchive.el --- interfacing with web archives ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: news egroups mail-archive diff --git a/lisp/gnus/nnwfm.el b/lisp/gnus/nnwfm.el index d759d12f798..90bf4e9c79d 100644 --- a/lisp/gnus/nnwfm.el +++ b/lisp/gnus/nnwfm.el @@ -1,6 +1,7 @@ ;;; nnwfm.el --- interfacing with a web forum -;; Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2000, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/lisp/gnus/pop3.el b/lisp/gnus/pop3.el index f021e063fcd..7714c566dce 100644 --- a/lisp/gnus/pop3.el +++ b/lisp/gnus/pop3.el @@ -1,7 +1,7 @@ ;;; pop3.el --- Post Office Protocol (RFC 1460) interface ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -;; 2004, 2005 Free Software Foundation, Inc. +;; 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Richard L. Pieri ;; Maintainer: FSF diff --git a/lisp/gnus/qp.el b/lisp/gnus/qp.el index bd0a1b4b5a5..cb89a3550ba 100644 --- a/lisp/gnus/qp.el +++ b/lisp/gnus/qp.el @@ -1,7 +1,7 @@ ;;; qp.el --- Quoted-Printable functions ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: mail, extensions diff --git a/lisp/gnus/rfc1843.el b/lisp/gnus/rfc1843.el index 55150fbdacf..8de64ce7c99 100644 --- a/lisp/gnus/rfc1843.el +++ b/lisp/gnus/rfc1843.el @@ -1,7 +1,7 @@ ;;; rfc1843.el --- HZ (rfc1843) decoding ;; Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: news HZ HZ+ mail i18n diff --git a/lisp/gnus/rfc2045.el b/lisp/gnus/rfc2045.el index b3bbe373d9d..f38ec0548fe 100644 --- a/lisp/gnus/rfc2045.el +++ b/lisp/gnus/rfc2045.el @@ -1,7 +1,7 @@ ;;; rfc2045.el --- Functions for decoding rfc2045 headers ;; Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; This file is part of GNU Emacs. diff --git a/lisp/gnus/rfc2047.el b/lisp/gnus/rfc2047.el index 5d2710d6bb6..c5d4fc191df 100644 --- a/lisp/gnus/rfc2047.el +++ b/lisp/gnus/rfc2047.el @@ -1,7 +1,7 @@ ;;; rfc2047.el --- functions for encoding and decoding rfc2047 messages ;; Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; MORIOKA Tomohiko diff --git a/lisp/gnus/rfc2104.el b/lisp/gnus/rfc2104.el index bdacc19ec9b..87a2167ec42 100644 --- a/lisp/gnus/rfc2104.el +++ b/lisp/gnus/rfc2104.el @@ -1,7 +1,7 @@ ;;; rfc2104.el --- RFC2104 Hashed Message Authentication Codes ;; Copyright (C) 1998, 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Keywords: mail diff --git a/lisp/gnus/score-mode.el b/lisp/gnus/score-mode.el index add14ea6ded..3e604ab39d6 100644 --- a/lisp/gnus/score-mode.el +++ b/lisp/gnus/score-mode.el @@ -1,7 +1,7 @@ ;;; score-mode.el --- mode for editing Gnus score files ;; Copyright (C) 1996, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail diff --git a/lisp/gnus/sha1.el b/lisp/gnus/sha1.el index 99b9aa47bb6..664933bfec1 100644 --- a/lisp/gnus/sha1.el +++ b/lisp/gnus/sha1.el @@ -1,7 +1,7 @@ ;;; sha1.el --- SHA1 Secure Hash Algorithm in Emacs-Lisp ;; Copyright (C) 1999, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shuhei KOBAYASHI ;; Keywords: SHA1, FIPS 180-1 diff --git a/lisp/gnus/sieve-manage.el b/lisp/gnus/sieve-manage.el index dc2016f282e..3512ed15b2d 100644 --- a/lisp/gnus/sieve-manage.el +++ b/lisp/gnus/sieve-manage.el @@ -1,6 +1,7 @@ ;;; sieve-manage.el --- Implementation of the managesive protocol in elisp -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson diff --git a/lisp/gnus/sieve-mode.el b/lisp/gnus/sieve-mode.el index 31ff5d1e9c9..b58435693bf 100644 --- a/lisp/gnus/sieve-mode.el +++ b/lisp/gnus/sieve-mode.el @@ -1,6 +1,7 @@ ;;; sieve-mode.el --- Sieve code editing commands for Emacs -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson diff --git a/lisp/gnus/sieve.el b/lisp/gnus/sieve.el index 5badbe7869a..b39ed5c78e6 100644 --- a/lisp/gnus/sieve.el +++ b/lisp/gnus/sieve.el @@ -1,6 +1,6 @@ ;;; sieve.el --- Utilities to manage sieve scripts -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson diff --git a/lisp/gnus/smiley.el b/lisp/gnus/smiley.el index cdd1c8dbc9b..d7657e444b8 100644 --- a/lisp/gnus/smiley.el +++ b/lisp/gnus/smiley.el @@ -1,7 +1,7 @@ ;;; smiley.el --- displaying smiley faces ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Dave Love ;; Keywords: news mail multimedia diff --git a/lisp/gnus/smime.el b/lisp/gnus/smime.el index 22489affa89..e5a2328f9d6 100644 --- a/lisp/gnus/smime.el +++ b/lisp/gnus/smime.el @@ -1,7 +1,7 @@ ;;; smime.el --- S/MIME support library ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Keywords: SMIME X.509 PEM OpenSSL diff --git a/lisp/gnus/spam-report.el b/lisp/gnus/spam-report.el index 293a41d7b60..04ef6b60f5f 100644 --- a/lisp/gnus/spam-report.el +++ b/lisp/gnus/spam-report.el @@ -1,6 +1,6 @@ ;;; spam-report.el --- Reporting spam -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Teodor Zlatanov ;; Keywords: network diff --git a/lisp/gnus/spam-stat.el b/lisp/gnus/spam-stat.el index c8870454be8..66f302d32e5 100644 --- a/lisp/gnus/spam-stat.el +++ b/lisp/gnus/spam-stat.el @@ -1,6 +1,6 @@ ;;; spam-stat.el --- detecting spam based on statistics -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Alex Schroeder ;; Keywords: network diff --git a/lisp/gnus/spam.el b/lisp/gnus/spam.el index 32de2f60e22..ed5fd6e7980 100644 --- a/lisp/gnus/spam.el +++ b/lisp/gnus/spam.el @@ -1,6 +1,6 @@ ;;; spam.el --- Identifying spam -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: network diff --git a/lisp/gnus/starttls.el b/lisp/gnus/starttls.el index c63e08fc12e..a9b64b4d1fc 100644 --- a/lisp/gnus/starttls.el +++ b/lisp/gnus/starttls.el @@ -1,7 +1,7 @@ ;;; starttls.el --- STARTTLS functions ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Daiki Ueno ;; Author: Simon Josefsson diff --git a/lisp/gnus/utf7.el b/lisp/gnus/utf7.el index d1eb6ee40dd..bb47077612e 100644 --- a/lisp/gnus/utf7.el +++ b/lisp/gnus/utf7.el @@ -1,7 +1,7 @@ ;;; utf7.el --- UTF-7 encoding/decoding for Emacs -*-coding: iso-8859-1;-*- ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Jon K Hellan ;; Maintainer: bugs@gnus.org diff --git a/lisp/gnus/uudecode.el b/lisp/gnus/uudecode.el index c1fc56ad8bf..f47a8e90c3a 100644 --- a/lisp/gnus/uudecode.el +++ b/lisp/gnus/uudecode.el @@ -1,7 +1,7 @@ ;;; uudecode.el -- elisp native uudecode ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: uudecode news diff --git a/lisp/gnus/webmail.el b/lisp/gnus/webmail.el index e9bc074f2cf..a7e53702fef 100644 --- a/lisp/gnus/webmail.el +++ b/lisp/gnus/webmail.el @@ -1,7 +1,7 @@ ;;; webmail.el --- interface of web mail ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Shenghuo Zhu ;; Keywords: hotmail netaddress my-deja netscape diff --git a/lisp/gnus/yenc.el b/lisp/gnus/yenc.el index 37018d2fa19..767d2620cfe 100644 --- a/lisp/gnus/yenc.el +++ b/lisp/gnus/yenc.el @@ -1,6 +1,6 @@ ;;; yenc.el --- elisp native yenc decoder -;; Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Jesper Harder ;; Keywords: yenc news From 1004fadc844b66eee64fcfe0c5a98dd7e67cbaac Mon Sep 17 00:00:00 2001 From: Romain Francoise Date: Sun, 5 Feb 2006 14:10:45 +0000 Subject: [PATCH 35/42] Update copyright notices of all files in the lisp/play directory. --- lisp/ChangeLog | 4 ++++ lisp/play/5x5.el | 2 +- lisp/play/animate.el | 3 ++- lisp/play/blackbox.el | 2 +- lisp/play/bruce.el | 2 +- lisp/play/cookie1.el | 3 ++- lisp/play/decipher.el | 2 +- lisp/play/dissociate.el | 3 ++- lisp/play/dunnet.el | 2 +- lisp/play/fortune.el | 2 +- lisp/play/gamegrid.el | 2 +- lisp/play/gametree.el | 2 +- lisp/play/gomoku.el | 2 +- lisp/play/handwrite.el | 3 ++- lisp/play/landmark.el | 2 +- lisp/play/life.el | 2 +- lisp/play/morse.el | 3 ++- lisp/play/mpuz.el | 3 ++- lisp/play/pong.el | 2 +- lisp/play/snake.el | 3 ++- lisp/play/solitaire.el | 3 ++- lisp/play/spook.el | 2 +- lisp/play/tetris.el | 3 ++- lisp/play/yow.el | 2 +- lisp/play/zone.el | 2 +- 25 files changed, 37 insertions(+), 24 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 200c8f0cd23..558b64bd506 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-02-05 Romain Francoise + + Update copyright notices of all files in the lisp/play directory. + 2006-02-04 Luc Teirlinck * ldefs-boot.el: Regenerate. diff --git a/lisp/play/5x5.el b/lisp/play/5x5.el index 855de92ffc0..db76fbb7725 100644 --- a/lisp/play/5x5.el +++ b/lisp/play/5x5.el @@ -1,7 +1,7 @@ ;;; 5x5.el --- simple little puzzle game ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Dave Pearson ;; Maintainer: Dave Pearson diff --git a/lisp/play/animate.el b/lisp/play/animate.el index 47f08a8b098..8664023c230 100644 --- a/lisp/play/animate.el +++ b/lisp/play/animate.el @@ -1,6 +1,7 @@ ;;; animate.el --- make text dance -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Maintainer: Richard Stallman ;; Keywords: games diff --git a/lisp/play/blackbox.el b/lisp/play/blackbox.el index fb0474d1460..10a7c231b30 100644 --- a/lisp/play/blackbox.el +++ b/lisp/play/blackbox.el @@ -1,7 +1,7 @@ ;;; blackbox.el --- blackbox game in Emacs Lisp ;; Copyright (C) 1985, 1986, 1987, 1992, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: F. Thomas May ;; Adapted-By: ESR diff --git a/lisp/play/bruce.el b/lisp/play/bruce.el index 7774e29f2a4..98294884ebd 100644 --- a/lisp/play/bruce.el +++ b/lisp/play/bruce.el @@ -2,7 +2,7 @@ ;;; Decency Act snoops, if any. ;; Copyright (C) 1988, 1993, 1997, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: games diff --git a/lisp/play/cookie1.el b/lisp/play/cookie1.el index 7f17274a68d..bc4ee84da2f 100644 --- a/lisp/play/cookie1.el +++ b/lisp/play/cookie1.el @@ -1,6 +1,7 @@ ;;; cookie1.el --- retrieve random phrases from fortune cookie files -;; Copyright (C) 1993, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1993, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Eric S. Raymond ;; Maintainer: FSF diff --git a/lisp/play/decipher.el b/lisp/play/decipher.el index e8850e6fdf4..88b5f2ace46 100644 --- a/lisp/play/decipher.el +++ b/lisp/play/decipher.el @@ -1,7 +1,7 @@ ;;; decipher.el --- cryptanalyze monoalphabetic substitution ciphers ;; ;; Copyright (C) 1995, 1996, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; ;; Author: Christopher J. Madsen ;; Keywords: games diff --git a/lisp/play/dissociate.el b/lisp/play/dissociate.el index cd19a716864..ce1f8b55432 100644 --- a/lisp/play/dissociate.el +++ b/lisp/play/dissociate.el @@ -1,6 +1,7 @@ ;;; dissociate.el --- scramble text amusingly for Emacs -;; Copyright (C) 1985, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1985, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: games diff --git a/lisp/play/dunnet.el b/lisp/play/dunnet.el index 62a30d34191..2c6a75da03e 100644 --- a/lisp/play/dunnet.el +++ b/lisp/play/dunnet.el @@ -1,7 +1,7 @@ ;;; dunnet.el --- text adventure for Emacs ;; Copyright (C) 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Ron Schnell ;; Created: 25 Jul 1992 diff --git a/lisp/play/fortune.el b/lisp/play/fortune.el index 3524eeb5294..12692292d3a 100644 --- a/lisp/play/fortune.el +++ b/lisp/play/fortune.el @@ -1,7 +1,7 @@ ;;; fortune.el --- use fortune to create signatures ;; Copyright (C) 1999, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Holger Schauer ;; Keywords: games utils mail diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el index ee64c178414..3cc91226fe8 100644 --- a/lisp/play/gamegrid.el +++ b/lisp/play/gamegrid.el @@ -1,7 +1,7 @@ ;;; gamegrid.el --- library for implementing grid-based games on Emacs ;; Copyright (C) 1997, 1998, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Glynn Clements ;; Version: 1.02 diff --git a/lisp/play/gametree.el b/lisp/play/gametree.el index 9e80024c90b..82eef652f52 100644 --- a/lisp/play/gametree.el +++ b/lisp/play/gametree.el @@ -1,7 +1,7 @@ ;;; gametree.el --- manage game analysis trees in Emacs ;; Copyright (C) 1997, 1999, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Ian T Zimmerman ;; Created: Wed Dec 10 07:41:46 PST 1997 diff --git a/lisp/play/gomoku.el b/lisp/play/gomoku.el index c7089ddd7f7..ee321b44d31 100644 --- a/lisp/play/gomoku.el +++ b/lisp/play/gomoku.el @@ -1,7 +1,7 @@ ;;; gomoku.el --- Gomoku game between you and Emacs ;; Copyright (C) 1988, 1994, 1996, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Philippe Schnoebelen ;; Maintainer: FSF diff --git a/lisp/play/handwrite.el b/lisp/play/handwrite.el index 066832e7eb3..5e9ba975607 100644 --- a/lisp/play/handwrite.el +++ b/lisp/play/handwrite.el @@ -1,6 +1,7 @@ ;;; handwrite.el --- turns your emacs buffer into a handwritten document -*- coding: iso-latin-1; -*- -;; Copyright (C) 1996, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1996, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Danny Roozendaal (was: ) ;; Created: October 21 1996 diff --git a/lisp/play/landmark.el b/lisp/play/landmark.el index 48b614ea111..ed4181e5b8d 100644 --- a/lisp/play/landmark.el +++ b/lisp/play/landmark.el @@ -1,7 +1,7 @@ ;;; landmark.el --- neural-network robot that learns landmarks ;; Copyright (C) 1996, 1997, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Terrence Brannon (was: ) ;; Created: December 16, 1996 - first release to usenet diff --git a/lisp/play/life.el b/lisp/play/life.el index 56f10ff2581..263c4450c9d 100644 --- a/lisp/play/life.el +++ b/lisp/play/life.el @@ -1,7 +1,7 @@ ;;; life.el --- John Horton Conway's `Life' game for GNU Emacs ;; Copyright (C) 1988, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Kyle Jones ;; Maintainer: FSF diff --git a/lisp/play/morse.el b/lisp/play/morse.el index ae3533227e4..bf5abdfbd4c 100644 --- a/lisp/play/morse.el +++ b/lisp/play/morse.el @@ -1,6 +1,7 @@ ;;; morse.el --- convert text to morse code and back -*- coding: utf-8 -*- -;; Copyright (C) 1995, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1995, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Rick Farnbach ;; Keywords: games diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el index 6f2c9200928..ebeeb3159f8 100644 --- a/lisp/play/mpuz.el +++ b/lisp/play/mpuz.el @@ -1,6 +1,7 @@ ;;; mpuz.el --- multiplication puzzle for GNU Emacs -;; Copyright (C) 1990, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1990, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Philippe Schnoebelen ;; Overhauled: Daniel Pfeiffer diff --git a/lisp/play/pong.el b/lisp/play/pong.el index e4931c63088..d73d789d0d3 100644 --- a/lisp/play/pong.el +++ b/lisp/play/pong.el @@ -1,7 +1,7 @@ ;;; pong.el --- classical implementation of pong ;; Copyright 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Benjamin Drieu ;; Keywords: games diff --git a/lisp/play/snake.el b/lisp/play/snake.el index 9f2f9c62098..ae942212a18 100644 --- a/lisp/play/snake.el +++ b/lisp/play/snake.el @@ -1,6 +1,7 @@ ;;; snake.el --- implementation of Snake for Emacs -;; Copyright (C) 1997, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1997, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Glynn Clements ;; Created: 1997-09-10 diff --git a/lisp/play/solitaire.el b/lisp/play/solitaire.el index 2e20a737e08..d6faeb5e5ad 100644 --- a/lisp/play/solitaire.el +++ b/lisp/play/solitaire.el @@ -1,6 +1,7 @@ ;;; solitaire.el --- game of solitaire in Emacs Lisp -;; Copyright (C) 1994, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1994, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Jan Schormann ;; Created: Fri afternoon, Jun 3, 1994 diff --git a/lisp/play/spook.el b/lisp/play/spook.el index 0979f6a0043..fbad9ab0f13 100644 --- a/lisp/play/spook.el +++ b/lisp/play/spook.el @@ -1,7 +1,7 @@ ;;; spook.el --- spook phrase utility for overloading the NSA line eater ;; Copyright (C) 1988, 1993, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: games diff --git a/lisp/play/tetris.el b/lisp/play/tetris.el index 839046a9613..531d61e20e6 100644 --- a/lisp/play/tetris.el +++ b/lisp/play/tetris.el @@ -1,6 +1,7 @@ ;;; tetris.el --- implementation of Tetris for Emacs -;; Copyright (C) 1997, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1997, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Glynn Clements ;; Version: 2.01 diff --git a/lisp/play/yow.el b/lisp/play/yow.el index 74a30d6ac9d..b86ad9d4c66 100644 --- a/lisp/play/yow.el +++ b/lisp/play/yow.el @@ -1,7 +1,7 @@ ;;; yow.el --- quote random zippyisms ;; Copyright (C) 1993, 1994, 1995, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Author: Richard Mlynarik diff --git a/lisp/play/zone.el b/lisp/play/zone.el index b914d1ba887..0f04a043c8e 100644 --- a/lisp/play/zone.el +++ b/lisp/play/zone.el @@ -1,7 +1,7 @@ ;;; zone.el --- idle display hacks ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Victor Zandy ;; Maintainer: Thien-Thi Nguyen From 324b617a4c8bb86fcdc4251538cbb342c541b244 Mon Sep 17 00:00:00 2001 From: Romain Francoise Date: Sun, 5 Feb 2006 14:12:23 +0000 Subject: [PATCH 36/42] Update copyright notices node. --- admin/FOR-RELEASE | 62 +++++++++++++++++++++++------------------------ 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index 1d4f943b255..eab1e5aed2f 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -64,38 +64,38 @@ you're going to handle. DIRECTORY STATUS IN CHARGE --------- ------ --------- -etc (and subdirs) done Thien-Thi Nguyen (ttn(@gnu.org)) -leim done Kenichi Handa -lib-src done ttn -lisp done ttn -lisp/calc done ttn -lisp/calendar done Glenn Morris -lisp/emacs-lisp done ttn -lisp/emulation done ttn -lisp/eshell done ttn -lisp/gnus done ttn -lisp/international done Kenichi Handa -lisp/language done Kenichi Handa -lisp/mail done ttn +etc (and subdirs) working Thien-Thi Nguyen (ttn(@gnu.org)) +leim working Kenichi Handa +lib-src working ttn +lisp working ttn +lisp/calc working ttn +lisp/calendar working Glenn Morris +lisp/emacs-lisp working ttn +lisp/emulation working ttn +lisp/eshell working ttn +lisp/gnus done Romain Francoise +lisp/international working Kenichi Handa +lisp/language working Kenichi Handa +lisp/mail working ttn lisp/mh-e done Bill Wohler -lisp/net done ttn -lisp/obsolete done ttn -lisp/play done ttn -lisp/progmodes done Nick Roberts -lisp/term done ttn -lisp/textmodes done ttn -lisp/url done ttn -lispintro done ttn -lispref done ttn -lwlib done ttn -m4 done ttn -mac (and subdirs) done ttn -man done ttn -msdos done ttn -nt (and subdirs) done ttn -oldXMenu done ttn -src (and subdirs) done ttn -vms done ttn +lisp/net working ttn +lisp/obsolete working ttn +lisp/play done Romain Francoise +lisp/progmodes working Nick Roberts +lisp/term working ttn +lisp/textmodes working ttn +lisp/url working ttn +lispintro working ttn +lispref working ttn +lwlib working ttn +m4 working ttn +mac (and subdirs) working ttn +man working ttn +msdos working ttn +nt (and subdirs) working ttn +oldXMenu working ttn +src (and subdirs) working ttn +vms working ttn ** Check the Emacs manual. From 09ea57eaca41d79ad9bbda34249860f786600f0b Mon Sep 17 00:00:00 2001 From: Jay Belanger Date: Sun, 5 Feb 2006 16:31:42 +0000 Subject: [PATCH 37/42] Update copyright year. --- etc/calccard.tex | 4 ++-- lisp/calc/README | 2 +- lisp/calc/calc-aent.el | 2 +- lisp/calc/calc-alg.el | 2 +- lisp/calc/calc-arith.el | 2 +- lisp/calc/calc-bin.el | 2 +- lisp/calc/calc-comb.el | 2 +- lisp/calc/calc-cplx.el | 2 +- lisp/calc/calc-embed.el | 2 +- lisp/calc/calc-ext.el | 2 +- lisp/calc/calc-fin.el | 2 +- lisp/calc/calc-forms.el | 2 +- lisp/calc/calc-frac.el | 2 +- lisp/calc/calc-funcs.el | 2 +- lisp/calc/calc-graph.el | 2 +- lisp/calc/calc-help.el | 2 +- lisp/calc/calc-incom.el | 2 +- lisp/calc/calc-keypd.el | 2 +- lisp/calc/calc-lang.el | 2 +- lisp/calc/calc-macs.el | 2 +- lisp/calc/calc-map.el | 2 +- lisp/calc/calc-math.el | 2 +- lisp/calc/calc-misc.el | 2 +- lisp/calc/calc-mode.el | 2 +- lisp/calc/calc-mtx.el | 2 +- lisp/calc/calc-poly.el | 2 +- lisp/calc/calc-prog.el | 2 +- lisp/calc/calc-rewr.el | 2 +- lisp/calc/calc-rules.el | 2 +- lisp/calc/calc-sel.el | 2 +- lisp/calc/calc-stat.el | 2 +- lisp/calc/calc-store.el | 2 +- lisp/calc/calc-stuff.el | 2 +- lisp/calc/calc-trail.el | 2 +- lisp/calc/calc-undo.el | 2 +- lisp/calc/calc-units.el | 2 +- lisp/calc/calc-vec.el | 2 +- lisp/calc/calc-yank.el | 2 +- lisp/calc/calc.el | 2 +- lisp/calc/calcalg2.el | 2 +- lisp/calc/calcalg3.el | 2 +- lisp/calc/calccomp.el | 2 +- lisp/calc/calcsel2.el | 2 +- 43 files changed, 44 insertions(+), 44 deletions(-) diff --git a/etc/calccard.tex b/etc/calccard.tex index 1502a3c73c2..befdea965ae 100644 --- a/etc/calccard.tex +++ b/etc/calccard.tex @@ -14,7 +14,7 @@ % Typical command to print (3 cols): dvips -t landscape calccard.dvi % Copyright (C) 1987, 1992, 2001, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -60,7 +60,7 @@ % Internet: gildea@stop.mail-abuse.org \def\versionnumber{2.1} -\def\year{2005} +\def\year{2006} \def\version{v\versionnumber} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill diff --git a/lisp/calc/README b/lisp/calc/README index 86539341358..00d0e9b232a 100644 --- a/lisp/calc/README +++ b/lisp/calc/README @@ -3,7 +3,7 @@ This directory contains Calc, an advanced desk calculator for GNU Emacs. "Calc" Copyright 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Written by: Dave Gillespie diff --git a/lisp/calc/calc-aent.el b/lisp/calc/calc-aent.el index 6919527751b..fadfabce663 100644 --- a/lisp/calc/calc-aent.el +++ b/lisp/calc/calc-aent.el @@ -1,7 +1,7 @@ ;;; calc-aent.el --- algebraic entry functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Dave Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-alg.el b/lisp/calc/calc-alg.el index a57f7ede375..f2929eb5a84 100644 --- a/lisp/calc/calc-alg.el +++ b/lisp/calc/calc-alg.el @@ -1,7 +1,7 @@ ;;; calc-alg.el --- algebraic functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-arith.el b/lisp/calc/calc-arith.el index 64e0b4b7d10..2372b0ebbfb 100644 --- a/lisp/calc/calc-arith.el +++ b/lisp/calc/calc-arith.el @@ -1,7 +1,7 @@ ;;; calc-arith.el --- arithmetic functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-bin.el b/lisp/calc/calc-bin.el index 376c049e93e..5a4cf72a0ac 100644 --- a/lisp/calc/calc-bin.el +++ b/lisp/calc/calc-bin.el @@ -1,7 +1,7 @@ ;;; calc-bin.el --- binary functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-comb.el b/lisp/calc/calc-comb.el index 5105148a60f..7c274d39aa6 100644 --- a/lisp/calc/calc-comb.el +++ b/lisp/calc/calc-comb.el @@ -1,7 +1,7 @@ ;;; calc-comb.el --- combinatoric functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-cplx.el b/lisp/calc/calc-cplx.el index cf9054343d4..5223a98c7d0 100644 --- a/lisp/calc/calc-cplx.el +++ b/lisp/calc/calc-cplx.el @@ -1,7 +1,7 @@ ;;; calc-cplx.el --- Complex number functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-embed.el b/lisp/calc/calc-embed.el index 7878034694e..28a319f84e4 100644 --- a/lisp/calc/calc-embed.el +++ b/lisp/calc/calc-embed.el @@ -1,7 +1,7 @@ ;;; calc-embed.el --- embed Calc in a buffer ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el index ed290ea780a..8a6e65d74db 100644 --- a/lisp/calc/calc-ext.el +++ b/lisp/calc/calc-ext.el @@ -1,7 +1,7 @@ ;;; calc-ext.el --- various extension functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-fin.el b/lisp/calc/calc-fin.el index b15f7c254d1..0f4f00a958a 100644 --- a/lisp/calc/calc-fin.el +++ b/lisp/calc/calc-fin.el @@ -1,7 +1,7 @@ ;;; calc-fin.el --- financial functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-forms.el b/lisp/calc/calc-forms.el index 3a192e3f0be..7ebbba2aec5 100644 --- a/lisp/calc/calc-forms.el +++ b/lisp/calc/calc-forms.el @@ -1,7 +1,7 @@ ;;; calc-forms.el --- data format conversion functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-frac.el b/lisp/calc/calc-frac.el index bf3850b72b9..59849cbf975 100644 --- a/lisp/calc/calc-frac.el +++ b/lisp/calc/calc-frac.el @@ -1,7 +1,7 @@ ;;; calc-frac.el --- fraction functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-funcs.el b/lisp/calc/calc-funcs.el index 9d491a2c540..291cbc9b47f 100644 --- a/lisp/calc/calc-funcs.el +++ b/lisp/calc/calc-funcs.el @@ -1,7 +1,7 @@ ;;; calc-funcs.el --- well-known functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-graph.el b/lisp/calc/calc-graph.el index 31d45c50a70..355f66649ca 100644 --- a/lisp/calc/calc-graph.el +++ b/lisp/calc/calc-graph.el @@ -1,7 +1,7 @@ ;;; calc-graph.el --- graph output functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-help.el b/lisp/calc/calc-help.el index 2d79fd36f6c..a2376d68693 100644 --- a/lisp/calc/calc-help.el +++ b/lisp/calc/calc-help.el @@ -1,7 +1,7 @@ ;;; calc-help.el --- help display functions for Calc, ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-incom.el b/lisp/calc/calc-incom.el index 50d6f16f7bd..ac25ad5b875 100644 --- a/lisp/calc/calc-incom.el +++ b/lisp/calc/calc-incom.el @@ -1,7 +1,7 @@ ;;; calc-incom.el --- complex data type input functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-keypd.el b/lisp/calc/calc-keypd.el index 475592c8ab6..b04804eb1ba 100644 --- a/lisp/calc/calc-keypd.el +++ b/lisp/calc/calc-keypd.el @@ -1,7 +1,7 @@ ;;; calc-keypd.el --- mouse-capable keypad input for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-lang.el b/lisp/calc/calc-lang.el index 7653673c082..c7f92a13847 100644 --- a/lisp/calc/calc-lang.el +++ b/lisp/calc/calc-lang.el @@ -1,7 +1,7 @@ ;;; calc-lang.el --- calc language functions ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-macs.el b/lisp/calc/calc-macs.el index 352ffafe389..496c3fff858 100644 --- a/lisp/calc/calc-macs.el +++ b/lisp/calc/calc-macs.el @@ -1,7 +1,7 @@ ;;; calc-macs.el --- important macros for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-map.el b/lisp/calc/calc-map.el index da9b91243ae..63e45538c32 100644 --- a/lisp/calc/calc-map.el +++ b/lisp/calc/calc-map.el @@ -1,7 +1,7 @@ ;;; calc-map.el --- higher-order functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-math.el b/lisp/calc/calc-math.el index 53d80350834..869d7457ed6 100644 --- a/lisp/calc/calc-math.el +++ b/lisp/calc/calc-math.el @@ -1,7 +1,7 @@ ;;; calc-math.el --- mathematical functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-misc.el b/lisp/calc/calc-misc.el index ca8e8bbdbfe..14bf3908b83 100644 --- a/lisp/calc/calc-misc.el +++ b/lisp/calc/calc-misc.el @@ -1,7 +1,7 @@ ;;; calc-misc.el --- miscellaneous functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004 -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-mode.el b/lisp/calc/calc-mode.el index d04a95831ef..9b3bc297a80 100644 --- a/lisp/calc/calc-mode.el +++ b/lisp/calc/calc-mode.el @@ -1,7 +1,7 @@ ;;; calc-mode.el --- calculator modes for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-mtx.el b/lisp/calc/calc-mtx.el index 0b18927a7f1..2945049a744 100644 --- a/lisp/calc/calc-mtx.el +++ b/lisp/calc/calc-mtx.el @@ -1,7 +1,7 @@ ;;; calc-mtx.el --- matrix functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-poly.el b/lisp/calc/calc-poly.el index 4714b2f7d38..6d1780ce357 100644 --- a/lisp/calc/calc-poly.el +++ b/lisp/calc/calc-poly.el @@ -1,7 +1,7 @@ ;;; calc-poly.el --- polynomial functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-prog.el b/lisp/calc/calc-prog.el index 8736d4375dd..ea625c7a77c 100644 --- a/lisp/calc/calc-prog.el +++ b/lisp/calc/calc-prog.el @@ -1,7 +1,7 @@ ;;; calc-prog.el --- user programmability functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-rewr.el b/lisp/calc/calc-rewr.el index 5c08bd4baf6..71dce50d976 100644 --- a/lisp/calc/calc-rewr.el +++ b/lisp/calc/calc-rewr.el @@ -1,7 +1,7 @@ ;;; calc-rewr.el --- rewriting functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-rules.el b/lisp/calc/calc-rules.el index a3a07b04563..339993f98a5 100644 --- a/lisp/calc/calc-rules.el +++ b/lisp/calc/calc-rules.el @@ -1,7 +1,7 @@ ;;; calc-rules.el --- rules for simplifying algebraic expressions in Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-sel.el b/lisp/calc/calc-sel.el index 87767a12244..bf18fa968c5 100644 --- a/lisp/calc/calc-sel.el +++ b/lisp/calc/calc-sel.el @@ -1,7 +1,7 @@ ;;; calc-sel.el --- data selection functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-stat.el b/lisp/calc/calc-stat.el index 9db057d30d1..2b4f8e7358f 100644 --- a/lisp/calc/calc-stat.el +++ b/lisp/calc/calc-stat.el @@ -1,7 +1,7 @@ ;;; calc-stat.el --- statistical functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-store.el b/lisp/calc/calc-store.el index d6a37644cc7..218ae46b88a 100644 --- a/lisp/calc/calc-store.el +++ b/lisp/calc/calc-store.el @@ -1,7 +1,7 @@ ;;; calc-store.el --- value storage functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-stuff.el b/lisp/calc/calc-stuff.el index 635dcf95036..708dff18632 100644 --- a/lisp/calc/calc-stuff.el +++ b/lisp/calc/calc-stuff.el @@ -1,7 +1,7 @@ ;;; calc-stuff.el --- miscellaneous functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-trail.el b/lisp/calc/calc-trail.el index d5bba8dbb92..e93e5e5c88c 100644 --- a/lisp/calc/calc-trail.el +++ b/lisp/calc/calc-trail.el @@ -1,7 +1,7 @@ ;;; calc-trail.el --- functions for manipulating the Calc "trail" ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-undo.el b/lisp/calc/calc-undo.el index e52ab015f26..0d429ef145a 100644 --- a/lisp/calc/calc-undo.el +++ b/lisp/calc/calc-undo.el @@ -1,7 +1,7 @@ ;;; calc-undo.el --- undo functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-units.el b/lisp/calc/calc-units.el index c4b1127a5c5..68e294a5939 100644 --- a/lisp/calc/calc-units.el +++ b/lisp/calc/calc-units.el @@ -1,7 +1,7 @@ ;;; calc-units.el --- unit conversion functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-vec.el b/lisp/calc/calc-vec.el index a830887a652..3ec387053c3 100644 --- a/lisp/calc/calc-vec.el +++ b/lisp/calc/calc-vec.el @@ -1,7 +1,7 @@ ;;; calc-vec.el --- vector functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc-yank.el b/lisp/calc/calc-yank.el index 628b1fef1c0..2d80561faac 100644 --- a/lisp/calc/calc-yank.el +++ b/lisp/calc/calc-yank.el @@ -1,7 +1,7 @@ ;;; calc-yank.el --- kill-ring functionality for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index fe55b7587f3..c251d28acfb 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -1,7 +1,7 @@ ;;; calc.el --- the GNU Emacs calculator ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calcalg2.el b/lisp/calc/calcalg2.el index 849ec42c5f6..facb691c08b 100644 --- a/lisp/calc/calcalg2.el +++ b/lisp/calc/calcalg2.el @@ -1,7 +1,7 @@ ;;; calcalg2.el --- more algebraic functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calcalg3.el b/lisp/calc/calcalg3.el index d5ef567866f..b1c5b80b17b 100644 --- a/lisp/calc/calcalg3.el +++ b/lisp/calc/calcalg3.el @@ -1,7 +1,7 @@ ;;; calcalg3.el --- more algebraic functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calccomp.el b/lisp/calc/calccomp.el index aab079ed739..548fe83882d 100644 --- a/lisp/calc/calccomp.el +++ b/lisp/calc/calccomp.el @@ -1,7 +1,7 @@ ;;; calccomp.el --- composition functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger diff --git a/lisp/calc/calcsel2.el b/lisp/calc/calcsel2.el index 6734065a701..3f5b94ef771 100644 --- a/lisp/calc/calcsel2.el +++ b/lisp/calc/calcsel2.el @@ -1,7 +1,7 @@ ;;; calcsel2.el --- selection functions for Calc ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: David Gillespie ;; Maintainer: Jay Belanger From 4c003d2f9af9455ee23c3a1c56606a62ce4f7439 Mon Sep 17 00:00:00 2001 From: Jay Belanger Date: Sun, 5 Feb 2006 16:35:52 +0000 Subject: [PATCH 38/42] *** empty log message *** --- etc/ChangeLog | 4 ++++ lisp/ChangeLog | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/etc/ChangeLog b/etc/ChangeLog index 87e5fd01281..10ecd9b6d09 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,7 @@ +2006-02-05 Jay Belanger + + * calccard.tex: Update copyright year. + 2006-02-04 Michael Olson * NEWS: Update for ERC 5.1.1. Use the same wording for headings diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 558b64bd506..ae98b5f389c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-02-05 Jay Belanger + + Update copyright notices of the files in lisp/calc. + 2006-02-05 Romain Francoise Update copyright notices of all files in the lisp/play directory. From 5e0926cdf51cb5a8019a589d1582113d1a453ce6 Mon Sep 17 00:00:00 2001 From: Jay Belanger Date: Sun, 5 Feb 2006 16:38:15 +0000 Subject: [PATCH 39/42] (calc-full-help): Update the copyright year. --- lisp/calc/calc-help.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/calc/calc-help.el b/lisp/calc/calc-help.el index a2376d68693..510e61a12b6 100644 --- a/lisp/calc/calc-help.el +++ b/lisp/calc/calc-help.el @@ -414,7 +414,7 @@ C-w Describe how there is no warranty for Calc." (princ (format "GNU Emacs Calculator version %s.\n" calc-version)) (princ " By Dave Gillespie.\n") - (princ " Copyright (C) 2005 Free Software Foundation, Inc.\n\n") + (princ " Copyright (C) 2006 Free Software Foundation, Inc.\n\n") (princ "Type `h s' for a more detailed summary.\n") (princ "Or type `h i' to read the full Calc manual on-line.\n\n") (princ "Basic keys:\n") From 8d99e09d789d6808b910846b6d5c5a4bfc7f4c0c Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Sun, 5 Feb 2006 22:41:31 +0000 Subject: [PATCH 40/42] Update years in copyright notice; nfc. --- m4/getopt.m4 | 2 +- man/ChangeLog | 2 +- man/Makefile.in | 2 +- man/abbrevs.texi | 2 +- man/ack.texi | 2 +- man/ada-mode.texi | 2 +- man/anti.texi | 2 +- man/autotype.texi | 4 ++-- man/basic.texi | 2 +- man/buffers.texi | 2 +- man/building.texi | 2 +- man/calc.texi | 4 ++-- man/calendar.texi | 2 +- man/cc-mode.texi | 4 ++-- man/cl.texi | 2 +- man/cmdargs.texi | 2 +- man/commands.texi | 2 +- man/custom.texi | 2 +- man/dired-x.texi | 2 +- man/dired.texi | 2 +- man/display.texi | 2 +- man/ebrowse.texi | 2 +- man/ediff.texi | 2 +- man/emacs-mime.texi | 2 +- man/emacs-xtra.texi | 2 +- man/emacs.texi | 2 +- man/entering.texi | 2 +- man/eshell.texi | 2 +- man/eudc.texi | 2 +- man/faq.texi | 2 +- man/files.texi | 2 +- man/fixit.texi | 2 +- man/forms.texi | 2 +- man/frames.texi | 2 +- man/glossary.texi | 2 +- man/gnu.texi | 2 +- man/help.texi | 2 +- man/idlwave.texi | 4 ++-- man/indent.texi | 2 +- man/info.texi | 2 +- man/killing.texi | 2 +- man/kmacro.texi | 2 +- man/m-x.texi | 2 +- man/macos.texi | 2 +- man/maintaining.texi | 2 +- man/major.texi | 2 +- man/makefile.w32-in | 2 +- man/mark.texi | 2 +- man/mh-e.texi | 4 ++-- man/mini.texi | 2 +- man/misc.texi | 2 +- man/msdog.texi | 2 +- man/mule.texi | 2 +- man/newsticker.texi | 2 +- man/org.texi | 2 +- man/pcl-cvs.texi | 2 +- man/pgg.texi | 2 +- man/picture.texi | 2 +- man/programs.texi | 2 +- man/reftex.texi | 3 ++- man/regs.texi | 2 +- man/rmail.texi | 2 +- man/sc.texi | 2 +- man/screen.texi | 2 +- man/search.texi | 2 +- man/sending.texi | 2 +- man/ses.texi | 3 ++- man/sieve.texi | 2 +- man/smtpmail.texi | 2 +- man/speedbar.texi | 2 +- man/texinfo.tex | 4 ++-- man/text.texi | 2 +- man/trouble.texi | 2 +- man/url.texi | 4 ++-- man/vip.texi | 2 +- man/viper.texi | 2 +- man/widget.texi | 3 ++- man/windows.texi | 2 +- man/woman.texi | 4 ++-- man/xresources.texi | 2 +- vms/make-mms-derivative.el | 2 +- 81 files changed, 92 insertions(+), 89 deletions(-) diff --git a/m4/getopt.m4 b/m4/getopt.m4 index dbcc44d9095..a0c6ea38cf5 100644 --- a/m4/getopt.m4 +++ b/m4/getopt.m4 @@ -1,5 +1,5 @@ # getopt.m4 serial 10 -dnl Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +dnl Copyright (C) 2002,2003,2004,2005,2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. diff --git a/man/ChangeLog b/man/ChangeLog index e3f7f97fac0..fb5a76e6f19 100644 --- a/man/ChangeLog +++ b/man/ChangeLog @@ -5127,7 +5127,7 @@ ;; End: Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, - 2003, 2004, 2005 Free Software Foundation, Inc. + 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/man/Makefile.in b/man/Makefile.in index 78e282b6563..854d3213272 100644 --- a/man/Makefile.in +++ b/man/Makefile.in @@ -1,7 +1,7 @@ #### Makefile for the Emacs Manual and other documentation. # Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, -# 2004, 2005 Free Software Foundation, Inc. +# 2004, 2005, 2006 Free Software Foundation, Inc. # This file is part of GNU Emacs. diff --git a/man/abbrevs.texi b/man/abbrevs.texi index 2272b2ba133..9c66df9ff03 100644 --- a/man/abbrevs.texi +++ b/man/abbrevs.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Abbrevs, Picture, Maintaining, Top @chapter Abbrevs diff --git a/man/ack.texi b/man/ack.texi index 206b2cbc268..0874cfa9c52 100644 --- a/man/ack.texi +++ b/man/ack.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @c @node Acknowledgments, Screen, Concept Index, Top diff --git a/man/ada-mode.texi b/man/ada-mode.texi index 7cac9261690..73896132886 100644 --- a/man/ada-mode.texi +++ b/man/ada-mode.texi @@ -9,7 +9,7 @@ @copying Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/anti.texi b/man/anti.texi index 4e0e96d346d..c0ea6666a87 100644 --- a/man/anti.texi +++ b/man/anti.texi @@ -1,5 +1,5 @@ @c This is part of the Emacs manual. -@c Copyright (C) 2005 Free Software Foundation, Inc. +@c Copyright (C) 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Antinews, Mac OS, X Resources, Top diff --git a/man/autotype.texi b/man/autotype.texi index 106d89f52e4..ad29f4295ee 100644 --- a/man/autotype.texi +++ b/man/autotype.texi @@ -1,7 +1,7 @@ \input texinfo @c This is an annex of the Emacs manual. @c Copyright (C) 1994, 1995, 2002, 2003, 2004, -@c 2005 Free Software Foundation, Inc. +@c 2005, 2006 Free Software Foundation, Inc. @c Author: Daniel.Pfeiffer@Informatik.START.dbp.de, fax (+49 69) 7588-2389 @setfilename ../info/autotype @c @node Autotypist, Picture, Abbrevs, Top @@ -13,7 +13,7 @@ @copying Copyright @copyright{} 1994, 1995, 1999, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/basic.texi b/man/basic.texi index 5f2b8c4793b..f3ae93ccad3 100644 --- a/man/basic.texi +++ b/man/basic.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Basic, Minibuffer, Exiting, Top @chapter Basic Editing Commands diff --git a/man/buffers.texi b/man/buffers.texi index a8e23086f79..3b3afc2eb92 100644 --- a/man/buffers.texi +++ b/man/buffers.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Buffers, Windows, Files, Top @chapter Using Multiple Buffers diff --git a/man/building.texi b/man/building.texi index 62e80c2cde3..bc7ab649407 100644 --- a/man/building.texi +++ b/man/building.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Building, Maintaining, Programs, Top @chapter Compiling and Testing Programs diff --git a/man/calc.texi b/man/calc.texi index 5eab5322fca..02a542ca761 100644 --- a/man/calc.texi +++ b/man/calc.texi @@ -84,7 +84,7 @@ This file documents Calc, the GNU Emacs calculator. Copyright (C) 1990, 1991, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document @@ -120,7 +120,7 @@ Software Foundation raise funds for GNU development.'' @vskip 0pt plus 1filll Copyright @copyright{} 1990, 1991, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @insertcopying @end titlepage diff --git a/man/calendar.texi b/man/calendar.texi index e5ddaa28e1b..988a509ca02 100644 --- a/man/calendar.texi +++ b/man/calendar.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Calendar/Diary, Gnus, Dired, Top @chapter The Calendar and the Diary diff --git a/man/cc-mode.texi b/man/cc-mode.texi index f4f4df82e7b..fcc3c59c1f6 100644 --- a/man/cc-mode.texi +++ b/man/cc-mode.texi @@ -160,7 +160,7 @@ CC Mode This manual is for CC Mode in Emacs. Copyright @copyright{} 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005 Free Software Foundation, Inc. + 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document @@ -208,7 +208,7 @@ license to the document, as described in section 6 of the license. @vskip 0pt plus 1filll @insertcopying -This manual was generated from $Revision: 1.33 $ of $RCSfile: cc-mode.texi,v $, which can be +This manual was generated from $Revision: 1.34 $ of $RCSfile: cc-mode.texi,v $, which can be downloaded from @url{http://cvs.sf.net/viewcvs.py/cc-mode/cc-mode/cc-mode.texi}. @end titlepage diff --git a/man/cl.texi b/man/cl.texi index 92c93c487bf..c6c0a329cde 100644 --- a/man/cl.texi +++ b/man/cl.texi @@ -5,7 +5,7 @@ @copying This file documents the GNU Emacs Common Lisp emulation package. -Copyright (C) 1993, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright (C) 1993, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/cmdargs.texi b/man/cmdargs.texi index 74de707cd2c..35684ca2715 100644 --- a/man/cmdargs.texi +++ b/man/cmdargs.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2001, 2002, -@c 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Emacs Invocation, X Resources, GNU Free Documentation License, Top @appendix Command Line Arguments for Emacs Invocation diff --git a/man/commands.texi b/man/commands.texi index 7830433676c..5c692f6d93b 100644 --- a/man/commands.texi +++ b/man/commands.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @iftex @chapter Characters, Keys and Commands diff --git a/man/custom.texi b/man/custom.texi index d10c8aeca2e..227d74f87e8 100644 --- a/man/custom.texi +++ b/man/custom.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Customization, Quitting, Amusements, Top @chapter Customization diff --git a/man/dired-x.texi b/man/dired-x.texi index dc02be52003..184d25b363a 100644 --- a/man/dired-x.texi +++ b/man/dired-x.texi @@ -29,7 +29,7 @@ This documents the ``extra'' features for Dired Mode for GNU Emacs found in the file @file{dired-x.el}. Copyright @copyright{} 1993, 1994, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to make and distribute verbatim copies of this diff --git a/man/dired.texi b/man/dired.texi index 051c735f996..a432d681918 100644 --- a/man/dired.texi +++ b/man/dired.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Dired, Calendar/Diary, Rmail, Top @chapter Dired, the Directory Editor diff --git a/man/display.texi b/man/display.texi index 1f359f9e5aa..61cbc057e23 100644 --- a/man/display.texi +++ b/man/display.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Display, Search, Registers, Top @chapter Controlling the Display diff --git a/man/ebrowse.texi b/man/ebrowse.texi index 77e4ad07b45..db58c819922 100644 --- a/man/ebrowse.texi +++ b/man/ebrowse.texi @@ -11,7 +11,7 @@ This file documents Ebrowse, a C++ class browser for GNU Emacs. Copyright @copyright{} 2000, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/ediff.texi b/man/ediff.texi index 823219f4a63..67e822049cb 100644 --- a/man/ediff.texi +++ b/man/ediff.texi @@ -26,7 +26,7 @@ This file documents Ediff, a comprehensive visual interface to Unix diff and patch utilities. Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005 Free Software Foundation, Inc. + 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/emacs-mime.texi b/man/emacs-mime.texi index 9df33969bec..3e9f2b5f283 100644 --- a/man/emacs-mime.texi +++ b/man/emacs-mime.texi @@ -9,7 +9,7 @@ @copying This file documents the Emacs MIME interface functionality. -Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation diff --git a/man/emacs-xtra.texi b/man/emacs-xtra.texi index 0c7cea886f8..a352bc913c2 100644 --- a/man/emacs-xtra.texi +++ b/man/emacs-xtra.texi @@ -10,7 +10,7 @@ @copying This manual describes specialized features of Emacs. -Copyright (C) 2004, 2005 Free Software Foundation, Inc. +Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/emacs.texi b/man/emacs.texi index 5fb9af71c43..701db402c8d 100644 --- a/man/emacs.texi +++ b/man/emacs.texi @@ -12,7 +12,7 @@ This is the @value{EDITION} edition of the @cite{GNU Emacs Manual}, updated for Emacs version @value{EMACSVER}. Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/entering.texi b/man/entering.texi index 5d1003e82fb..6a9ac0e8347 100644 --- a/man/entering.texi +++ b/man/entering.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 2002, 2003, 2004, -@c 2005 Free Software Foundation, Inc. +@c 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Entering Emacs, Exiting, Text Characters, Top @chapter Entering and Exiting Emacs diff --git a/man/eshell.texi b/man/eshell.texi index a9ec167ea6a..e0a59774b42 100644 --- a/man/eshell.texi +++ b/man/eshell.texi @@ -9,7 +9,7 @@ This manual is for Eshell, the Emacs shell. Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/eudc.texi b/man/eudc.texi index beec0e01a70..f402cc31d38 100644 --- a/man/eudc.texi +++ b/man/eudc.texi @@ -13,7 +13,7 @@ directory servers using various protocols such as LDAP or the CCSO white pages directory system (PH/QI) Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/faq.texi b/man/faq.texi index 95b79a86af6..88ebbdaab6f 100644 --- a/man/faq.texi +++ b/man/faq.texi @@ -10,7 +10,7 @@ @set VER 22.1 @copying -Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Copyright 1994,1995,1996,1997,1998,1999,2000 Reuven M. Lerner@* Copyright 1992,1993 Steven Byrnes@* Copyright 1990,1991,1992 Joseph Brian Wells@* diff --git a/man/files.texi b/man/files.texi index 6edf938261a..f8080993fba 100644 --- a/man/files.texi +++ b/man/files.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1999, 2000, -@c 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Files, Buffers, Keyboard Macros, Top @chapter File Handling diff --git a/man/fixit.texi b/man/fixit.texi index d552c66f733..fed37ce9705 100644 --- a/man/fixit.texi +++ b/man/fixit.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Fixit, Keyboard Macros, Search, Top @chapter Commands for Fixing Typos diff --git a/man/forms.texi b/man/forms.texi index c18987602b5..efd9368fdb0 100644 --- a/man/forms.texi +++ b/man/forms.texi @@ -19,7 +19,7 @@ This file documents Forms mode, a form-editing major mode for GNU Emacs. Copyright (C) 1989, 1997, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/frames.texi b/man/frames.texi index 3561bd89b2d..0d28572c1ac 100644 --- a/man/frames.texi +++ b/man/frames.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1999, 2000, -@c 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Frames, International, Windows, Top @chapter Frames and Graphical Displays diff --git a/man/glossary.texi b/man/glossary.texi index 19939b72ffd..a085bb53948 100644 --- a/man/glossary.texi +++ b/man/glossary.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2001, 2002, -@c 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Glossary, Key Index, Intro, Top @unnumbered Glossary diff --git a/man/gnu.texi b/man/gnu.texi index 0f216152b11..758814979d1 100644 --- a/man/gnu.texi +++ b/man/gnu.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1995, 2002, 2003, 2004, -@c 2005 Free Software Foundation, Inc. +@c 2005, 2006 Free Software Foundation, Inc. @ifclear justgnu @node Manifesto,, MS-DOS, Top @unnumbered The GNU Manifesto diff --git a/man/help.texi b/man/help.texi index f523b015cb7..3f059b2c85c 100644 --- a/man/help.texi +++ b/man/help.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Help, Mark, M-x, Top @chapter Help diff --git a/man/idlwave.texi b/man/idlwave.texi index d628f7ae4eb..7e9e19bb1c8 100644 --- a/man/idlwave.texi +++ b/man/idlwave.texi @@ -30,7 +30,7 @@ This is edition @value{EDITION} of the IDLWAVE User Manual for IDLWAVE @value{VERSION} Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or @@ -61,7 +61,7 @@ This is edition @value{EDITION} of the @cite{IDLWAVE User Manual} for IDLWAVE version @value{VERSION}, @value{DATE}. @sp 2 Copyright @copyright{} 1999, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @sp 2 @cindex Copyright, of IDLWAVE Permission is granted to copy, distribute and/or modify this document diff --git a/man/indent.texi b/man/indent.texi index ad0ef315fe8..319244bface 100644 --- a/man/indent.texi +++ b/man/indent.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Indentation, Text, Major Modes, Top @chapter Indentation diff --git a/man/info.texi b/man/info.texi index ce8bc6a2bf4..76586e5db4e 100644 --- a/man/info.texi +++ b/man/info.texi @@ -15,7 +15,7 @@ This file describes how to use Info, the on-line, menu-driven GNU documentation system. Copyright (C) 1989, 1992, 1996, 1997, 1998, 1999, 2000, 2001, 2002, - 2003, 2004, 2005 Free Software Foundation, Inc. + 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/killing.texi b/man/killing.texi index 219f2329c38..1d5b0ba116e 100644 --- a/man/killing.texi +++ b/man/killing.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Killing, Yanking, Mark, Top diff --git a/man/kmacro.texi b/man/kmacro.texi index 89cd8f9e54b..2c723a7e9f2 100644 --- a/man/kmacro.texi +++ b/man/kmacro.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Keyboard Macros, Files, Fixit, Top @chapter Keyboard Macros diff --git a/man/m-x.texi b/man/m-x.texi index 761bba414df..9030f809cc3 100644 --- a/man/m-x.texi +++ b/man/m-x.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node M-x, Help, Minibuffer, Top @chapter Running Commands by Name diff --git a/man/macos.texi b/man/macos.texi index b4c09217092..76a11ea92e7 100644 --- a/man/macos.texi +++ b/man/macos.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 2000, 2001, 2002, 2003, 2004, -@c 2005 Free Software Foundation, Inc. +@c 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Mac OS, MS-DOS, Antinews, Top @appendix Emacs and Mac OS diff --git a/man/maintaining.texi b/man/maintaining.texi index 2af47f6ecaf..b885c8b7580 100644 --- a/man/maintaining.texi +++ b/man/maintaining.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1999, 2000, -@c 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Maintaining, Abbrevs, Building, Top @chapter Maintaining Programs diff --git a/man/major.texi b/man/major.texi index 5bff7146ebe..d1f3fbaeebf 100644 --- a/man/major.texi +++ b/man/major.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Major Modes, Indentation, International, Top @chapter Major Modes diff --git a/man/makefile.w32-in b/man/makefile.w32-in index 63ecdadc102..34bb5fe6435 100644 --- a/man/makefile.w32-in +++ b/man/makefile.w32-in @@ -1,6 +1,6 @@ #### -*- Makefile -*- for the Emacs Manual and other documentation. -# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This file is part of GNU Emacs. diff --git a/man/mark.texi b/man/mark.texi index f4308835e96..cf7b87366e8 100644 --- a/man/mark.texi +++ b/man/mark.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2001, 2002, -@c 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Mark, Killing, Help, Top @chapter The Mark and the Region diff --git a/man/mh-e.texi b/man/mh-e.texi index 8530c31ce9d..36dfd9fd939 100644 --- a/man/mh-e.texi +++ b/man/mh-e.texi @@ -16,7 +16,7 @@ This is Edition @value{EDITION}, last updated @value{UPDATED}, of @value{VERSION}. Copyright (C) 1995, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document @@ -59,7 +59,7 @@ license to the document, as described in section 6 of the license. @page @vskip 0pt plus 1filll -Copyright @copyright{} 1995, 2001, 2002 Free Software Foundation, Inc. +Copyright @copyright{} 1995, 2001, 2002, 2006 Free Software Foundation, Inc. @insertcopying @end titlepage diff --git a/man/mini.texi b/man/mini.texi index e46a4f2db9b..f88adf01f9f 100644 --- a/man/mini.texi +++ b/man/mini.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Minibuffer, M-x, Basic, Top @chapter The Minibuffer diff --git a/man/misc.texi b/man/misc.texi index cae58a9c7f4..d5b69eebf26 100644 --- a/man/misc.texi +++ b/man/misc.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @iftex @chapter Miscellaneous Commands diff --git a/man/msdog.texi b/man/msdog.texi index 58ce170a738..434427b49b4 100644 --- a/man/msdog.texi +++ b/man/msdog.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node MS-DOS, Manifesto, Mac OS, Top @appendix Emacs and Microsoft Systems diff --git a/man/mule.texi b/man/mule.texi index 86f7bec0b9b..ec4b02c560f 100644 --- a/man/mule.texi +++ b/man/mule.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004, -@c 2005 Free Software Foundation, Inc. +@c 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node International, Major Modes, Frames, Top @chapter International Character Set Support diff --git a/man/newsticker.texi b/man/newsticker.texi index 74bf298a585..ed753147e22 100644 --- a/man/newsticker.texi +++ b/man/newsticker.texi @@ -13,7 +13,7 @@ This manual is for Newsticker (version @value{VERSION}, @value{UPDATED}). @noindent -Copyright @copyright{} 2004, 2005 Free Software Foundation, Inc. +Copyright @copyright{} 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/org.texi b/man/org.texi index cf096504f40..cf0881ff3ff 100644 --- a/man/org.texi +++ b/man/org.texi @@ -35,7 +35,7 @@ @copying This manual is for Org-mode (version @value{VERSION}). -Copyright @copyright{} 2004, 2005, 2006 Free Software Foundation +Copyright @copyright{} 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/pcl-cvs.texi b/man/pcl-cvs.texi index 3331590fcbf..dcef68de976 100644 --- a/man/pcl-cvs.texi +++ b/man/pcl-cvs.texi @@ -7,7 +7,7 @@ @copying Copyright @copyright{} 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/pgg.texi b/man/pgg.texi index 46785f3c1a7..025420abd4d 100644 --- a/man/pgg.texi +++ b/man/pgg.texi @@ -8,7 +8,7 @@ @copying This file describes the PGG. -Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Copyright (C) 2001 Daiki Ueno. @quotation diff --git a/man/picture.texi b/man/picture.texi index 46a735122df..575f041c9e5 100644 --- a/man/picture.texi +++ b/man/picture.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Picture, Sending Mail, Abbrevs, Top @chapter Editing Pictures diff --git a/man/programs.texi b/man/programs.texi index dfb1e9c0d85..b3870eeafee 100644 --- a/man/programs.texi +++ b/man/programs.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1999, 2000, -@c 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Programs, Building, Text, Top @chapter Editing Programs diff --git a/man/reftex.texi b/man/reftex.texi index 845190981e2..890d5b5064d 100644 --- a/man/reftex.texi +++ b/man/reftex.texi @@ -25,7 +25,8 @@ citations and indices for LaTeX documents with Emacs. This is edition @value{EDITION} of the @b{Ref@TeX{}} User Manual for @b{Ref@TeX{}} @value{VERSION} -Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005 Free Software Foundation, Inc. +Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005, + 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/regs.texi b/man/regs.texi index 0ed83f2bf54..8b31a992ea3 100644 --- a/man/regs.texi +++ b/man/regs.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Registers, Display, CUA Bindings, Top @chapter Registers diff --git a/man/rmail.texi b/man/rmail.texi index f2646bbe52e..6cdbfb9a5a2 100644 --- a/man/rmail.texi +++ b/man/rmail.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2001, 2002, -@c 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Rmail, Dired, Sending Mail, Top @chapter Reading Mail with Rmail diff --git a/man/sc.texi b/man/sc.texi index 7beb4aa88df..a26625b3392 100644 --- a/man/sc.texi +++ b/man/sc.texi @@ -16,7 +16,7 @@ attributing the replies for various GNU Emacs mail and news reading subsystems. Copyright @copyright{} 1993, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/screen.texi b/man/screen.texi index 9499e3dfc77..72ed3261f01 100644 --- a/man/screen.texi +++ b/man/screen.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2001, 2002, -@c 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Screen, User Input, Acknowledgments, Top @chapter The Organization of the Screen diff --git a/man/search.texi b/man/search.texi index b1593559c85..dc6c16d4a72 100644 --- a/man/search.texi +++ b/man/search.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, 2002, -@c 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Search, Fixit, Display, Top @chapter Searching and Replacement diff --git a/man/sending.texi b/man/sending.texi index 6fa5c1b0485..4670a98f467 100644 --- a/man/sending.texi +++ b/man/sending.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, 2002, -@c 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Sending Mail, Rmail, Picture, Top @chapter Sending Mail diff --git a/man/ses.texi b/man/ses.texi index 38caa7c830a..c1d7737a09b 100644 --- a/man/ses.texi +++ b/man/ses.texi @@ -11,7 +11,8 @@ @copying This file documents SES: the Simple Emacs Spreadsheet. -Copyright @copyright{} 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright @copyright{} 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/sieve.texi b/man/sieve.texi index 0d94f293fc2..7f99cd2cd57 100644 --- a/man/sieve.texi +++ b/man/sieve.texi @@ -9,7 +9,7 @@ @copying This file documents the Emacs Sieve package. -Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/smtpmail.texi b/man/smtpmail.texi index d35d364ff53..792a7934f95 100644 --- a/man/smtpmail.texi +++ b/man/smtpmail.texi @@ -3,7 +3,7 @@ @settitle Emacs SMTP Library @syncodeindex vr fn @copying -Copyright @copyright{} 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright @copyright{} 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/speedbar.texi b/man/speedbar.texi index 4dc2bcea7d2..8a30751d479 100644 --- a/man/speedbar.texi +++ b/man/speedbar.texi @@ -6,7 +6,7 @@ @copying Copyright @copyright{} 1999, 2000, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/texinfo.tex b/man/texinfo.tex index eb7ea101e61..80a6d085f5d 100644 --- a/man/texinfo.tex +++ b/man/texinfo.tex @@ -3,11 +3,11 @@ % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % -\def\texinfoversion{2005-08-10.17} +\def\texinfoversion{2006-02-05.23} % % Copyright (C) 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, % 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % % This texinfo.tex file is free software; you can redistribute it and/or % modify it under the terms of the GNU General Public License as diff --git a/man/text.texi b/man/text.texi index 4470e494daf..8c624c42dde 100644 --- a/man/text.texi +++ b/man/text.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Text, Programs, Indentation, Top @chapter Commands for Human Languages diff --git a/man/trouble.texi b/man/trouble.texi index 37ced330225..e318ce2f2b5 100644 --- a/man/trouble.texi +++ b/man/trouble.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2001, 2002, -@c 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @iftex @chapter Dealing with Common Problems diff --git a/man/url.texi b/man/url.texi index cfc62fe0739..afbc96994c8 100644 --- a/man/url.texi +++ b/man/url.texi @@ -22,7 +22,7 @@ This file documents the URL loading package. Copyright (C) 1996, 1997, 1998, 1999, 2002, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Copyright (C) 1993, 1994, 1995, 1996 William M. Perry Permission is granted to copy, distribute and/or modify this document @@ -52,7 +52,7 @@ License.'' @vskip 0pt plus 1filll Copyright @copyright{} 1993, 1994, 1995, 1996 William M. Perry@* Copyright @copyright{} 1996, 1997, 1998, 1999, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or diff --git a/man/vip.texi b/man/vip.texi index 96d04ef0913..b76003b655d 100644 --- a/man/vip.texi +++ b/man/vip.texi @@ -5,7 +5,7 @@ @copying Copyright @copyright{} 1987, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/viper.texi b/man/viper.texi index 572a3296d52..4ad437a762d 100644 --- a/man/viper.texi +++ b/man/viper.texi @@ -8,7 +8,7 @@ @copying Copyright @copyright{} 1995, 1996, 1997, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/widget.texi b/man/widget.texi index cf10e5980b7..6ce78a9c3cd 100644 --- a/man/widget.texi +++ b/man/widget.texi @@ -10,7 +10,8 @@ @c %**end of header @copying -Copyright @copyright{} 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright @copyright{} 2000, 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/windows.texi b/man/windows.texi index 53cef3d3cbc..a000892ad09 100644 --- a/man/windows.texi +++ b/man/windows.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 2000, 2001, -@c 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +@c 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node Windows, Frames, Buffers, Top @chapter Multiple Windows diff --git a/man/woman.texi b/man/woman.texi index 8ba04675acf..a1b6250ef37 100644 --- a/man/woman.texi +++ b/man/woman.texi @@ -3,7 +3,7 @@ @setfilename ../info/woman @settitle WoMan: Browse Unix Manual Pages ``W.O. (without) Man'' @c Manual last updated: -@set UPDATED Time-stamp: <2002-12-10 14:08:15 pavel> +@set UPDATED Time-stamp: <2006-02-05 23:30:17 ttn> @c Software version: @set VERSION 0.54 (beta) @afourpaper @@ -18,7 +18,7 @@ This file documents WoMan: A program to browse Unix manual pages `W.O. (without) man'. Copyright @copyright{} 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/man/xresources.texi b/man/xresources.texi index 1e0783eac61..8ff09ef9594 100644 --- a/man/xresources.texi +++ b/man/xresources.texi @@ -1,6 +1,6 @@ @c This is part of the Emacs manual. @c Copyright (C) 1987, 1993, 1994, 1995, 1997, 2001, 2002, 2003, -@c 2004, 2005 Free Software Foundation, Inc. +@c 2004, 2005, 2006 Free Software Foundation, Inc. @c See file emacs.texi for copying conditions. @node X Resources, Antinews, Emacs Invocation, Top @appendix X Options and Resources diff --git a/vms/make-mms-derivative.el b/vms/make-mms-derivative.el index 6b24bec9a77..f2c64df289d 100644 --- a/vms/make-mms-derivative.el +++ b/vms/make-mms-derivative.el @@ -1,6 +1,6 @@ ;;; make-mms-derivative.el --- framework to do horrible things for VMS support -;; Copyright (C) 2005 Free Software Foundation, Inc. +;; Copyright (C) 2005, 2006 Free Software Foundation, Inc. ;; Author: Thien-Thi Nguyen ;; Keywords: maint build vms mms makefile levitte autoconf war-is-a-lose From 5b0d63bc3658e0892d01c61cc168131813e7a8b0 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Sun, 5 Feb 2006 23:44:47 +0000 Subject: [PATCH 41/42] Update years in copyright notice; nfc. --- etc/ChangeLog | 2 +- etc/DEBUG | 2 +- etc/DISTRIB | 2 +- etc/GNU | 2 +- etc/GNUS-NEWS | 4 ++-- etc/NEWS | 2 +- etc/PROBLEMS | 2 +- etc/TUTORIAL | 2 +- etc/TUTORIAL.bg | 2 +- etc/TUTORIAL.cn | 2 +- etc/TUTORIAL.cs | 2 +- etc/TUTORIAL.de | 2 +- etc/TUTORIAL.es | 2 +- etc/TUTORIAL.fr | 2 +- etc/TUTORIAL.it | 2 +- etc/TUTORIAL.ja | 2 +- etc/TUTORIAL.ko | 2 +- etc/TUTORIAL.nl | 4 ++-- etc/TUTORIAL.pl | 2 +- etc/TUTORIAL.pt_BR | 2 +- etc/TUTORIAL.ro | 3 ++- etc/TUTORIAL.ru | 2 +- etc/TUTORIAL.sk | 2 +- etc/TUTORIAL.sl | 2 +- etc/TUTORIAL.sv | 2 +- etc/TUTORIAL.th | 2 +- etc/TUTORIAL.zh | 2 +- etc/cs-dired-ref.tex | 5 +++-- etc/cs-refcard.tex | 4 ++-- etc/cs-survival.tex | 5 +++-- etc/de-refcard.tex | 4 ++-- etc/dired-ref.tex | 4 ++-- etc/edt-user.doc | 2 +- etc/emacs.1 | 5 +++-- etc/emacs.py | 2 +- etc/emacstool.1 | 2 +- etc/etags.1 | 4 ++-- etc/fr-drdref.tex | 5 +++-- etc/fr-refcard.tex | 4 ++-- etc/fr-survival.tex | 5 +++-- etc/gnus-refcard.tex | 2 +- etc/gnus-tut.txt | 3 ++- etc/orgcard.tex | 15 ++++++++------- etc/pl-refcard.tex | 5 +++-- etc/refcard.tex | 4 ++-- etc/ru-refcard.tex | 5 +++-- etc/sk-dired-ref.tex | 5 +++-- etc/sk-refcard.tex | 4 ++-- etc/sk-survival.tex | 5 +++-- etc/survival.tex | 5 +++-- etc/vipcard.tex | 5 +++-- etc/viperCard.tex | 4 ++-- lisp/obsolete/awk-mode.el | 2 +- lisp/obsolete/bg-mouse.el | 3 ++- lisp/obsolete/fast-lock.el | 2 +- lisp/obsolete/float.el | 3 ++- lisp/obsolete/hilit19.el | 2 +- lisp/obsolete/hscroll.el | 2 +- lisp/obsolete/iso-acc.el | 2 +- lisp/obsolete/iso-swed.el | 3 ++- lisp/obsolete/keyswap.el | 3 ++- lisp/obsolete/lazy-lock.el | 2 +- lisp/obsolete/mlsupport.el | 3 ++- lisp/obsolete/ooutline.el | 2 +- lisp/obsolete/options.el | 3 ++- lisp/obsolete/profile.el | 2 +- lisp/obsolete/rnews.el | 2 +- lisp/obsolete/rnewspost.el | 2 +- lisp/obsolete/rsz-mini.el | 2 +- lisp/obsolete/scribe.el | 3 ++- lisp/obsolete/sun-curs.el | 3 ++- lisp/obsolete/sun-fns.el | 3 ++- lisp/obsolete/uncompress.el | 2 +- lisp/obsolete/x-apollo.el | 3 ++- lisp/obsolete/x-menu.el | 3 ++- lisp/url/url-about.el | 2 +- lisp/url/url-auth.el | 2 +- lisp/url/url-cid.el | 2 +- lisp/url/url-dav.el | 2 +- lisp/url/url-dired.el | 2 +- lisp/url/url-expand.el | 2 +- lisp/url/url-file.el | 2 +- lisp/url/url-ftp.el | 2 +- lisp/url/url-gw.el | 2 +- lisp/url/url-http.el | 2 +- lisp/url/url-https.el | 2 +- lisp/url/url-imap.el | 2 +- lisp/url/url-irc.el | 2 +- lisp/url/url-ldap.el | 2 +- lisp/url/url-mailto.el | 2 +- lisp/url/url-methods.el | 2 +- lisp/url/url-misc.el | 2 +- lisp/url/url-nfs.el | 2 +- lisp/url/url-ns.el | 3 ++- lisp/url/url-parse.el | 2 +- lisp/url/url-proxy.el | 2 +- lisp/url/url-util.el | 2 +- lisp/url/vc-dav.el | 2 +- lispintro/ChangeLog | 4 ++-- lispintro/Makefile.in | 2 +- lispintro/aclocal.m4 | 2 +- lispintro/emacs-lisp-intro.texi | 2 +- lispintro/makefile.w32-in | 2 +- lwlib/ChangeLog | 2 +- lwlib/lwlib-Xlw.c | 2 +- lwlib/lwlib-Xm.c | 2 +- lwlib/lwlib-Xm.h | 2 +- lwlib/xlwmenu.c | 2 +- lwlib/xlwmenu.h | 3 ++- lwlib/xlwmenuP.h | 2 +- oldXMenu/Activate.c | 3 ++- oldXMenu/AddPane.c | 3 ++- oldXMenu/AddSel.c | 3 ++- oldXMenu/ChangeLog | 2 +- oldXMenu/ChgPane.c | 3 ++- oldXMenu/ChgSel.c | 3 ++- oldXMenu/Create.c | 3 ++- oldXMenu/DelPane.c | 3 ++- oldXMenu/DelSel.c | 3 ++- oldXMenu/Destroy.c | 3 ++- oldXMenu/Error.c | 3 ++- oldXMenu/EvHand.c | 3 ++- oldXMenu/FindPane.c | 3 ++- oldXMenu/FindSel.c | 3 ++- oldXMenu/InsPane.c | 3 ++- oldXMenu/InsSel.c | 3 ++- oldXMenu/Internal.c | 3 ++- oldXMenu/Locate.c | 3 ++- oldXMenu/Post.c | 3 ++- oldXMenu/Recomp.c | 3 ++- oldXMenu/SetAEQ.c | 3 ++- oldXMenu/SetFrz.c | 3 ++- oldXMenu/SetPane.c | 3 ++- oldXMenu/SetSel.c | 3 ++- oldXMenu/X10.h | 3 ++- oldXMenu/XCrAssoc.c | 3 ++- oldXMenu/XDelAssoc.c | 3 ++- oldXMenu/XDestAssoc.c | 3 ++- oldXMenu/XLookAssoc.c | 3 ++- oldXMenu/XMakeAssoc.c | 3 ++- oldXMenu/XMenu.h | 3 ++- oldXMenu/XMenuInt.h | 4 ++-- oldXMenu/copyright.h | 3 ++- oldXMenu/insque.c | 3 ++- 144 files changed, 232 insertions(+), 173 deletions(-) diff --git a/etc/ChangeLog b/etc/ChangeLog index 10ecd9b6d09..3d64ba12cc3 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -2551,7 +2551,7 @@ ;; End: Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001 - 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/etc/DEBUG b/etc/DEBUG index 0c2739cafc8..1695c6e7f07 100644 --- a/etc/DEBUG +++ b/etc/DEBUG @@ -1,6 +1,6 @@ Debugging GNU Emacs Copyright (C) 1985, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/DISTRIB b/etc/DISTRIB index f5c380bfe37..8b52ee51418 100644 --- a/etc/DISTRIB +++ b/etc/DISTRIB @@ -5,7 +5,7 @@ the USA, see http://www.gnu.org/order/order.html. GNU Emacs availability information, October 2000 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1995, 1998, - 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document provided that the diff --git a/etc/GNU b/etc/GNU index 6d54265d849..53d7f576129 100644 --- a/etc/GNU +++ b/etc/GNU @@ -1,5 +1,5 @@ Copyright (C) 1985, 1993, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document, in any medium, provided that the copyright notice and diff --git a/etc/GNUS-NEWS b/etc/GNUS-NEWS index 59e0b5dbd2e..d5fbfe78106 100644 --- a/etc/GNUS-NEWS +++ b/etc/GNUS-NEWS @@ -1,6 +1,6 @@ GNUS NEWS -- history of user-visible changes. Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. See the end for copying conditions. Please send Gnus bug reports to bugs@gnus.org. @@ -529,7 +529,7 @@ ever-changing layouts. Copyright information: Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/NEWS b/etc/NEWS index f8a644a59d9..6fb402b0403 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -14793,7 +14793,7 @@ select one of those items. Copyright information: Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/PROBLEMS b/etc/PROBLEMS index d9c08149ad6..587d9090436 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -3595,7 +3595,7 @@ of machine defines NO_UNION_TYPE. Copyright 1987, 1988, 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, - 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Copying and redistribution of this file with or without modification are permitted without royalty provided this notice is preserved. diff --git a/etc/TUTORIAL b/etc/TUTORIAL index 0df9a6f2711..5748d0d4e5e 100644 --- a/etc/TUTORIAL +++ b/etc/TUTORIAL @@ -1104,7 +1104,7 @@ This version of the tutorial, like GNU Emacs, is copyrighted, and comes with permission to distribute copies on certain conditions: Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/TUTORIAL.bg b/etc/TUTORIAL.bg index 8f51458381f..9cb97696772 100644 --- a/etc/TUTORIAL.bg +++ b/etc/TUTORIAL.bg @@ -1170,7 +1170,7 @@ This version of the tutorial, like GNU Emacs, is copyrighted, and comes with permission to distribute copies on certain conditions: Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/TUTORIAL.cn b/etc/TUTORIAL.cn index f35c53be663..ce22ac0b349 100644 --- a/etc/TUTORIAL.cn +++ b/etc/TUTORIAL.cn @@ -1050,7 +1050,7 @@ issue here> É¢²¼Æä¿½±´£º Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Chinese Translation by Chao-Hong Liu (2002, 2003) Permission is granted to anyone to make or distribute verbatim copies diff --git a/etc/TUTORIAL.cs b/etc/TUTORIAL.cs index 57e77de9a4b..5b0e20ce218 100644 --- a/etc/TUTORIAL.cs +++ b/etc/TUTORIAL.cs @@ -1023,7 +1023,7 @@ Tato verze tutori je ¹íøena se svolením distribuovat kopie za jistých podmínek: Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Ka¾dému je zaruèeno právo vytváøet a distribuovat pøesné kopie tohoto dokumentu tak, jak jej obdr¾el, na jakémkoliv médiu, s tím, ¾e bude diff --git a/etc/TUTORIAL.de b/etc/TUTORIAL.de index 17019ad66dc..a571b15c545 100644 --- a/etc/TUTORIAL.de +++ b/etc/TUTORIAL.de @@ -1461,7 +1461,7 @@ Beachten Sie bitte, da Urheberrechtsnotiz gültig ist (zu finden in der Datei TUTORIAL). Copyright (C) 1985, 1996, 1997, 2002, 2003, 2004, - 2005 Free Software Foundation + 2005, 2006 Free Software Foundation, Inc. Hiermit wird für jedermann die Erlaubnis erteilt, wörtliche, unveränderte Kopien dieses Dokumentes für jegliches Medium zu diff --git a/etc/TUTORIAL.es b/etc/TUTORIAL.es index cb5e92a2df3..0860cb7972c 100644 --- a/etc/TUTORIAL.es +++ b/etc/TUTORIAL.es @@ -1188,7 +1188,7 @@ siguiente nota de derechos de reproducci archivo TUTORIAL). Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Se permite a cualquiera hacer o distribuir copias literales de este documento como se recibe, en cualquier medio, siempre que la nota diff --git a/etc/TUTORIAL.fr b/etc/TUTORIAL.fr index 30a6f05fe23..0c8b3d3ee9b 100644 --- a/etc/TUTORIAL.fr +++ b/etc/TUTORIAL.fr @@ -1171,7 +1171,7 @@ copyright, et vous pouvez en distribuer des copies sous certaines conditions : Copyright (C) 1985, 1996, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Chacun peut créer ou distribuer des copies de ce document tel qu'il l'a reçu, sur n'importe quel support, pourvu que la note de diff --git a/etc/TUTORIAL.it b/etc/TUTORIAL.it index d310a16eae4..46388e78cc3 100644 --- a/etc/TUTORIAL.it +++ b/etc/TUTORIAL.it @@ -1093,7 +1093,7 @@ distribuito con il permesso di farne copie a determinate condizioni: indicativo, restando comunque inteso il fatto che è quella originale a fare fede. -Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. È permesso a chiunque copiare e distribuire attraverso ogni mezzo copie fedeli di questo documento così come viene ricevuto, a condizione che diff --git a/etc/TUTORIAL.ja b/etc/TUTORIAL.ja index dec03f35d20..826a175e8c6 100644 --- a/etc/TUTORIAL.ja +++ b/etc/TUTORIAL.ja @@ -1048,7 +1048,7 @@ This version of the tutorial, like GNU Emacs, is copyrighted, and comes with permission to distribute copies on certain conditions: Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/TUTORIAL.ko b/etc/TUTORIAL.ko index c8875dc31be..9a9f28612c5 100644 --- a/etc/TUTORIAL.ko +++ b/etc/TUTORIAL.ko @@ -990,7 +990,7 @@ GNU $(C@L8F=:?M(B $(C00@L(B $(C@L(B $(CAvD'<-(B $(CFG@:(B $(C@z@[1G@L $(C6'?!(B $(C:9;g:;@;(B $(C9hFwGR(B $(C e como o GNU Emacs, tem um copyright, e vem com uma permissão de distribuição de cópias nas seguintes condições: -Copyright (C) 2004, 2005 Free Software Foundation, Inc. +Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. Permissão é garantida a qualquer um para fazer ou distribuir copias integrais deste documento como recebido, em qualquer meio, deixando diff --git a/etc/TUTORIAL.ro b/etc/TUTORIAL.ro index 85e8e30892f..3a4c7fb77af 100644 --- a/etc/TUTORIAL.ro +++ b/etc/TUTORIAL.ro @@ -1091,7 +1091,8 @@ continuare no This version of the tutorial, like GNU Emacs, is copyrighted, and comes with permission to distribute copies on certain conditions: -Copyright (C) 1998, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +Copyright (C) 1998, 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/TUTORIAL.ru b/etc/TUTORIAL.ru index cd84911db2d..4a097635a59 100644 --- a/etc/TUTORIAL.ru +++ b/etc/TUTORIAL.ru @@ -1132,7 +1132,7 @@ Dired ÓÌÅÄÕÀÝÉÍÉ ÓÏÇÌÁÛÅÎÉÑÍÉ: Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/TUTORIAL.sk b/etc/TUTORIAL.sk index 26e3f834748..6b2cd86bf91 100644 --- a/etc/TUTORIAL.sk +++ b/etc/TUTORIAL.sk @@ -1082,7 +1082,7 @@ T a je ¹írená s povolením distribuova» kópie za istých podmienok: Copyright (C) 1985, 1996, 1998, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Ka¾dému je zaruèené právo vytvára» a distribuova» presné kópie tohto dokumentu tak, ako ho dostal, na akomkoµvek médiu, s tým, ¾e bude diff --git a/etc/TUTORIAL.sl b/etc/TUTORIAL.sl index 37ebb2fbf11..52d2d18766c 100644 --- a/etc/TUTORIAL.sl +++ b/etc/TUTORIAL.sl @@ -1115,7 +1115,7 @@ To besedilo, kot sam GNU Emacs, je avtorsko delo, in njegovo razmno¾evanje in raz¹irjanje je dovoljeno pod naslednjimi pogoji: Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Dovoljeno je izdelovati in raz¹irjati neokrnjene kopije tega spisa v kakr¹nikoli obliki pod pogojem, da je ohranjena navedba o diff --git a/etc/TUTORIAL.sv b/etc/TUTORIAL.sv index 65dff742ec2..a2e0cd9abea 100644 --- a/etc/TUTORIAL.sv +++ b/etc/TUTORIAL.sv @@ -1127,7 +1127,7 @@ This version of the tutorial, like GNU Emacs, is copyrighted, and comes with permission to distribute copies on certain conditions: Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/TUTORIAL.th b/etc/TUTORIAL.th index 5db33b3d470..1156925e2a5 100644 --- a/etc/TUTORIAL.th +++ b/etc/TUTORIAL.th @@ -971,7 +971,7 @@ This version of the tutorial, like GNU Emacs, is copyrighted, and comes with permission to distribute copies on certain conditions: Copyright (C) 1985, 1996, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Permission is granted to anyone to make or distribute verbatim copies of this document as received, in any medium, provided that the diff --git a/etc/TUTORIAL.zh b/etc/TUTORIAL.zh index 1a1020a425b..0a04da4d9e1 100644 --- a/etc/TUTORIAL.zh +++ b/etc/TUTORIAL.zh @@ -1050,7 +1050,7 @@ issue here> ´²§G¨ä«þ¨©¡G Copyright (C) 1985, 1996, 1998, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Chinese Translation by Chao-Hong Liu (2002, 2003) Permission is granted to anyone to make or distribute verbatim copies diff --git a/etc/cs-dired-ref.tex b/etc/cs-dired-ref.tex index 12e3c01c871..46f7d7c6985 100644 --- a/etc/cs-dired-ref.tex +++ b/etc/cs-dired-ref.tex @@ -1,5 +1,6 @@ % Reference Card for Dired -% Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 2000, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % Czech hyphenation rules applied \chyph @@ -47,7 +48,7 @@ % e.g. in the TeX Live CD). \def\versionnumber{0.1} -\def\year{2005} +\def\year{2006} \def\version{May \year\ v\versionnumber} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill diff --git a/etc/cs-refcard.tex b/etc/cs-refcard.tex index 1164817a14d..be54da104ad 100644 --- a/etc/cs-refcard.tex +++ b/etc/cs-refcard.tex @@ -12,7 +12,7 @@ \columnsperpage=1 % Copyright (C) 1987, 1993, 1996, 1997, 2001, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -66,7 +66,7 @@ % e.g. in the TeX Live CD). \def\versionnumber{2.2} -\def\year{2005} +\def\year{2006} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill \centerline{\small \copyright\ \year\ Free Software Foundation, Inc. diff --git a/etc/cs-survival.tex b/etc/cs-survival.tex index 4140f2a858e..cf8297e7f39 100644 --- a/etc/cs-survival.tex +++ b/etc/cs-survival.tex @@ -21,7 +21,8 @@ \endinput \fi -% Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 2000, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -49,7 +50,7 @@ % e.g. in the TeX Live CD). \def\versionnumber{1.0} -\def\year{2005} +\def\year{2006} \def\copyrightnotice{\penalty-1\vfill \vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter diff --git a/etc/de-refcard.tex b/etc/de-refcard.tex index bb0ce3c978d..743e699fd76 100644 --- a/etc/de-refcard.tex +++ b/etc/de-refcard.tex @@ -8,7 +8,7 @@ \columnsperpage=2 % Copyright (C) 1987, 1993, 1996, 2000, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -53,7 +53,7 @@ % If there were room, it would be nice to see a section on Dired. \def\versionnumber{2.1} -\def\year{2005} +\def\year{2006} \def\version{March \year\ v\versionnumber} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill diff --git a/etc/dired-ref.tex b/etc/dired-ref.tex index 62038525a21..ce4150e1df7 100644 --- a/etc/dired-ref.tex +++ b/etc/dired-ref.tex @@ -1,6 +1,6 @@ % Reference Card for Dired % Copyright (C) 2000, 2001, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -41,7 +41,7 @@ \def\versionnumber{0.1} -\def\year{2005} +\def\year{2006} \def\version{May \year\ v\versionnumber} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill diff --git a/etc/edt-user.doc b/etc/edt-user.doc index 9910317de0a..1195c21841f 100644 --- a/etc/edt-user.doc +++ b/etc/edt-user.doc @@ -3,7 +3,7 @@ File: edt-user.doc --- EDT Emulation User Instructions For GNU Emacs 19 Copyright (C) 1986, 1992, 1994, 1995, 1999, 2000, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Author: Kevin Gallagher Maintainer: Kevin Gallagher diff --git a/etc/emacs.1 b/etc/emacs.1 index 1c9707243d9..ed9de22bf33 100644 --- a/etc/emacs.1 +++ b/etc/emacs.1 @@ -1,5 +1,5 @@ .\" Copyright (C) 1995, 1999, 2000, 2001, 2002, 2003, 2004, -.\" 2005 Free Software Foundation, Inc. +.\" 2005, 2006 Free Software Foundation, Inc. .\" .\" This file is part of GNU Emacs. .\" @@ -536,7 +536,8 @@ Joachim Martillo and Robert Krawitz added the X features. Copyright .if t \(co .if n (c) -1995, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +1995, 1999, 2000, 2001, 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of this document provided the copyright notice and this permission notice are diff --git a/etc/emacs.py b/etc/emacs.py index fcb55a0a205..9538b0b7127 100644 --- a/etc/emacs.py +++ b/etc/emacs.py @@ -1,6 +1,6 @@ """Definitions used by commands sent to inferior Python in python.el.""" -# Copyright (C) 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. # Author: Dave Love # This file is part of GNU Emacs. diff --git a/etc/emacstool.1 b/etc/emacstool.1 index 7f3200a0700..22eb311789a 100644 --- a/etc/emacstool.1 +++ b/etc/emacstool.1 @@ -136,7 +136,7 @@ emacs(1) Copyright .if t \(co .if n (c) -2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of this document provided the copyright notice and this permission notice are diff --git a/etc/etags.1 b/etc/etags.1 index ad049066577..39228685d08 100644 --- a/etc/etags.1 +++ b/etc/etags.1 @@ -1,5 +1,5 @@ .\" Copyright (C) 1992, 2001, 2002, 2003, 2004, -.\" 2005 Free Software Foundation, Inc. +.\" 2005, 2006 Free Software Foundation, Inc. .\" See section COPYING for conditions for redistribution .TH etags 1 "23nov2001" "GNU Tools" "GNU Tools" .de BP @@ -292,7 +292,7 @@ Stallman. Copyright .if t \(co .if n (c) -1999, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +1999, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. .PP Permission is granted to make and distribute verbatim copies of this document provided the copyright notice and this permission notice are diff --git a/etc/fr-drdref.tex b/etc/fr-drdref.tex index e64fe9574a5..40a238d529f 100644 --- a/etc/fr-drdref.tex +++ b/etc/fr-drdref.tex @@ -1,6 +1,7 @@ % Reference Card for Dired -% Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 2000, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -41,7 +42,7 @@ \def\versionnumber{0.1} -\def\year{2005} +\def\year{2006} \def\version{Mai \year\ v\versionnumber} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill diff --git a/etc/fr-refcard.tex b/etc/fr-refcard.tex index bff17c6d625..54d73ca6312 100644 --- a/etc/fr-refcard.tex +++ b/etc/fr-refcard.tex @@ -9,7 +9,7 @@ \columnsperpage=1 % Copyright (C) 1987, 1993, 1996, 1997, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -54,7 +54,7 @@ % If there were room, it would be nice to see a section on Dired. \def\versionnumber{2.2} -\def\year{2005} +\def\year{2006} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill \centerline{\small \copyright\ \year\ Free Software Foundation, Inc. diff --git a/etc/fr-survival.tex b/etc/fr-survival.tex index e73db5352a5..5c99fb27c49 100644 --- a/etc/fr-survival.tex +++ b/etc/fr-survival.tex @@ -22,7 +22,8 @@ \endinput \fi -% Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 2000, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -44,7 +45,7 @@ % Translated to french by \'Eric Jacoboni in November 2001 \def\versionnumber{1.0} -\def\year{2005} +\def\year{2006} \def\copyrightnotice{\penalty-1\vfill \vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter diff --git a/etc/gnus-refcard.tex b/etc/gnus-refcard.tex index 87c02032424..3bfca03d93d 100644 --- a/etc/gnus-refcard.tex +++ b/etc/gnus-refcard.tex @@ -113,7 +113,7 @@ \newcommand{\Copyright}{% \begin{center} Copyright \copyright\ 1995, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc.\\* + 2005, 2006 Free Software Foundation, Inc.\\* Copyright \copyright\ 1995 Vladimir Alexiev $<$vladimir@cs.ualberta.ca$>$.\\* Copyright \copyright\ 2000 Felix Natter $<$fnatter@gmx.net$>$.\\* diff --git a/etc/gnus-tut.txt b/etc/gnus-tut.txt index 29b5356e9e9..5dd26f1dfc5 100644 --- a/etc/gnus-tut.txt +++ b/etc/gnus-tut.txt @@ -24,7 +24,8 @@ was done by moi, yours truly, your humble servant, Lars Magne Ingebrigtsen. If you have a WWW browser, you can investigate to your heart's delight at . -;; Copyright (C) 1995, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1995, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news diff --git a/etc/orgcard.tex b/etc/orgcard.tex index 494ef6b3ae7..064d9decc95 100644 --- a/etc/orgcard.tex +++ b/etc/orgcard.tex @@ -5,7 +5,7 @@ % This file can be printed with 1, 2, or 3 columns per page (see below). % At the moment this card works quite nicely in 3 column format and -% currently takes 2 full pages. It is thus suited to producing one +% currently takes 2 full pages. It is thus suited to producing one % double-side page when printed. % There are a couple of tweaks in the format of this card which make it work @@ -18,7 +18,8 @@ \columnsperpage=3 -% Copyright (c) 2004 Philip Rooke, 2005, 2006 Free Software Foundation +% Copyright (C) 2005, 2006 Free Software Foundation, Inc. +% Copyright (c) 2004 Philip Rooke % GNU Emacs is free software; you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by @@ -88,7 +89,7 @@ are preserved on all copies. \def\ncolumns{\the\columnsperpage} -\message{[\ncolumns\space +\message{[\ncolumns\space column\if 1\ncolumns\else s\fi\space per page]} \def\scaledmag#1{ scaled \magstep #1} @@ -173,7 +174,7 @@ are preserved on all copies. \def\bye{\par\vfill\supereject \if a\abc \else\null\vfill\eject\fi \if a\abc \else\null\vfill\eject\fi - \end} + \end} \fi % we won't be using math mode much, so redefine some of the characters @@ -710,7 +711,7 @@ an org file. In the file, find a location with: \key{next heading}{DOWN} \key{previous heading}{UP} -Insert the note with one of the following: +Insert the note with one of the following: \key{as sublevel of heading at cursor}{RET} \key{right here (cursor not on heading)}{RET} @@ -752,7 +753,7 @@ $^4$ Keybinding affected by {\tt org-CUA-compatibility}. % arch-tag: 139f6750-5cfc-49ca-92b5-237fe5795290 -%%% Local Variables: +%%% Local Variables: %%% mode: latex %%% TeX-master: t -%%% End: +%%% End: diff --git a/etc/pl-refcard.tex b/etc/pl-refcard.tex index dfbb5a2783a..0d5f008378e 100644 --- a/etc/pl-refcard.tex +++ b/etc/pl-refcard.tex @@ -32,7 +32,8 @@ \columnsperpage=2 -% Copyright (C) 1999, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 1999, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -73,7 +74,7 @@ % If there were room, it would be nice to see a section on Dired. \def\versionnumber{1.1} -\def\year{2005} +\def\year{2006} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill \centerline{\small \copyright\ \year\ Free Software Foundation, Inc. diff --git a/etc/refcard.tex b/etc/refcard.tex index 5567320c98a..218a6cc8e36 100644 --- a/etc/refcard.tex +++ b/etc/refcard.tex @@ -15,7 +15,7 @@ % Nothing else needs to be changed below this line. % Copyright (C) 1987, 1993, 1996, 1997, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -64,7 +64,7 @@ % If there were room, it would be nice to see a section on Dired. \def\versionnumber{2.3} -\def\year{2005} +\def\year{2006} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill \centerline{\small \copyright\ \year\ Free Software Foundation, Inc. diff --git a/etc/ru-refcard.tex b/etc/ru-refcard.tex index 1083055bd9f..72fbe28e86f 100644 --- a/etc/ru-refcard.tex +++ b/etc/ru-refcard.tex @@ -1,4 +1,5 @@ -% Copyright (C) 1997, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 1997, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. \documentclass[10pt]{article} \usepackage{multicol,tabularx} @@ -19,7 +20,7 @@ \setlength{\ColThreeWidth}{25mm} \newcommand{\versionnumber}[0]{2.2} -\newcommand{\nyear}[0]{2005} +\newcommand{\nyear}[0]{2006} \newcommand\shortcopyrightnotice[0]{\vskip 1ex plus 2 fill \centerline{\footnotesize \copyright\ \nyear\ Free Software Foundation, Inc. diff --git a/etc/sk-dired-ref.tex b/etc/sk-dired-ref.tex index 26846834b36..82a3d2a5be0 100644 --- a/etc/sk-dired-ref.tex +++ b/etc/sk-dired-ref.tex @@ -1,5 +1,6 @@ % Reference Card for Dired -% Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 2000, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % Slovak hyphenation rules applied \shyph @@ -48,7 +49,7 @@ % e.g. in the TeX Live CD). \def\versionnumber{0.1} -\def\year{2005} +\def\year{2006} \def\version{May \year\ v\versionnumber} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill diff --git a/etc/sk-refcard.tex b/etc/sk-refcard.tex index 40f36f2109f..97911a66db8 100644 --- a/etc/sk-refcard.tex +++ b/etc/sk-refcard.tex @@ -12,7 +12,7 @@ \columnsperpage=1 % Copyright (C) 1987, 1993, 1996, 1997, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -68,7 +68,7 @@ % e.g. in the TeX Live CD). \def\versionnumber{2.2} -\def\year{2005} +\def\year{2006} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill \centerline{\small \copyright\ \year\ Free Software Foundation, Inc. diff --git a/etc/sk-survival.tex b/etc/sk-survival.tex index 346516cf48e..4cd12672ada 100644 --- a/etc/sk-survival.tex +++ b/etc/sk-survival.tex @@ -21,7 +21,8 @@ \endinput \fi -% Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 2000, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -50,7 +51,7 @@ % e.g. in the TeX Live CD). \def\versionnumber{1.0} -\def\year{2005} +\def\year{2006} \def\copyrightnotice{\penalty-1\vfill \vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter diff --git a/etc/survival.tex b/etc/survival.tex index 0e164d7654f..8c56232d7ad 100644 --- a/etc/survival.tex +++ b/etc/survival.tex @@ -25,7 +25,8 @@ \endinput \fi -% Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 2000, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -45,7 +46,7 @@ % Boston, MA 02110-1301, USA. \def\versionnumber{1.0} -\def\year{2005} +\def\year{2006} \def\copyrightnotice{\penalty-1\vfill \vbox{\smallfont\baselineskip=0.8\baselineskip\raggedcenter diff --git a/etc/vipcard.tex b/etc/vipcard.tex index cca644b6bfd..693667bd076 100644 --- a/etc/vipcard.tex +++ b/etc/vipcard.tex @@ -7,7 +7,8 @@ \columnsperpage=1 -% Copyright (C) 1987, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +% Copyright (C) 1987, 2002, 2003, 2004, 2005, +% 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -54,7 +55,7 @@ \def\versionnumber{1.2} -\def\year{2005} +\def\year{2006} \def\version{September \year\ v\versionnumber} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill diff --git a/etc/viperCard.tex b/etc/viperCard.tex index 50f65b2c0d5..b2761126837 100644 --- a/etc/viperCard.tex +++ b/etc/viperCard.tex @@ -8,7 +8,7 @@ \columnsperpage=2 % Copyright (C) 1995, 1996, 1997, 2002, 2003, 2004, -% 2005 Free Software Foundation, Inc. +% 2005, 2006 Free Software Foundation, Inc. % This file is part of GNU Emacs. @@ -62,7 +62,7 @@ \def\versionnumber{3.0} -\def\year{2005} +\def\year{2006} \def\version{August \year\ v\versionnumber} \def\shortcopyrightnotice{\vskip 1ex plus 2 fill diff --git a/lisp/obsolete/awk-mode.el b/lisp/obsolete/awk-mode.el index 166986fd34e..95c3a0582b7 100644 --- a/lisp/obsolete/awk-mode.el +++ b/lisp/obsolete/awk-mode.el @@ -1,7 +1,7 @@ ;;; awk-mode.el --- AWK code editing commands for Emacs ;; Copyright (C) 1988, 1994, 1996, 2000, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: unix, languages diff --git a/lisp/obsolete/bg-mouse.el b/lisp/obsolete/bg-mouse.el index 687619a051b..abb0b9560ce 100644 --- a/lisp/obsolete/bg-mouse.el +++ b/lisp/obsolete/bg-mouse.el @@ -1,6 +1,7 @@ ;;; bg-mouse.el --- GNU Emacs code for BBN Bitgraph mouse -;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: John Robinson ;; Stephen Gildea diff --git a/lisp/obsolete/fast-lock.el b/lisp/obsolete/fast-lock.el index 0d8fcfadc58..60c7988a66b 100644 --- a/lisp/obsolete/fast-lock.el +++ b/lisp/obsolete/fast-lock.el @@ -1,7 +1,7 @@ ;;; fast-lock.el --- automagic text properties caching for fast Font Lock mode ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Marshall ;; Maintainer: FSF diff --git a/lisp/obsolete/float.el b/lisp/obsolete/float.el index 400956ea232..32f0ef6a412 100644 --- a/lisp/obsolete/float.el +++ b/lisp/obsolete/float.el @@ -1,6 +1,7 @@ ;;; float.el --- obsolete floating point arithmetic package -;; Copyright (C) 1986, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1986, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Bill Rosenblatt ;; Maintainer: FSF diff --git a/lisp/obsolete/hilit19.el b/lisp/obsolete/hilit19.el index 666c580098f..adb4f7701dc 100644 --- a/lisp/obsolete/hilit19.el +++ b/lisp/obsolete/hilit19.el @@ -1,7 +1,7 @@ ;;; hilit19.el --- customizable highlighting for Emacs 19 ;; Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Jonathan Stigelman ;; Maintainer: FSF diff --git a/lisp/obsolete/hscroll.el b/lisp/obsolete/hscroll.el index 5e3d141f73b..0659c47c199 100644 --- a/lisp/obsolete/hscroll.el +++ b/lisp/obsolete/hscroll.el @@ -1,7 +1,7 @@ ;;; hscroll.el --- automatically scroll truncated lines horizontally ;; Copyright (C) 1992, 1993, 1995, 1996, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Wayne Mesard ;; Keywords: display diff --git a/lisp/obsolete/iso-acc.el b/lisp/obsolete/iso-acc.el index 6ff9e31d7fd..756833fec4b 100644 --- a/lisp/obsolete/iso-acc.el +++ b/lisp/obsolete/iso-acc.el @@ -1,7 +1,7 @@ ;;; iso-acc.el --- minor mode providing electric accent keys ;; Copyright (C) 1993, 1994, 1996, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Johan Vromans ;; Maintainer: FSF diff --git a/lisp/obsolete/iso-swed.el b/lisp/obsolete/iso-swed.el index ab5287bc97a..510efd32016 100644 --- a/lisp/obsolete/iso-swed.el +++ b/lisp/obsolete/iso-swed.el @@ -1,6 +1,7 @@ ;;; iso-swed.el --- set up char tables for ISO 8859/1 for Swedish/Finnish ttys -;; Copyright (C) 1987, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1987, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Howard Gayle ;; Maintainer: FSF diff --git a/lisp/obsolete/keyswap.el b/lisp/obsolete/keyswap.el index 0ed70d61dee..61b5bbeb171 100644 --- a/lisp/obsolete/keyswap.el +++ b/lisp/obsolete/keyswap.el @@ -1,6 +1,7 @@ ;;; keyswap.el --- swap BS and DEL keys -*- no-byte-compile: t -*- -;; Copyright (C) 1992, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1992, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Eric S. Raymond ;; Keywords: terminals diff --git a/lisp/obsolete/lazy-lock.el b/lisp/obsolete/lazy-lock.el index eaef84a6ab4..6dc9f31c066 100644 --- a/lisp/obsolete/lazy-lock.el +++ b/lisp/obsolete/lazy-lock.el @@ -1,7 +1,7 @@ ;;; lazy-lock.el --- lazy demand-driven fontification for fast Font Lock mode ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Marshall ;; Maintainer: FSF diff --git a/lisp/obsolete/mlsupport.el b/lisp/obsolete/mlsupport.el index 22356f1df64..68ee625cd8f 100644 --- a/lisp/obsolete/mlsupport.el +++ b/lisp/obsolete/mlsupport.el @@ -1,6 +1,7 @@ ;;; mlsupport.el --- run-time support for mocklisp code -;; Copyright (C) 1985, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1985, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: extensions diff --git a/lisp/obsolete/ooutline.el b/lisp/obsolete/ooutline.el index 17374ba1781..83f6fa69f30 100644 --- a/lisp/obsolete/ooutline.el +++ b/lisp/obsolete/ooutline.el @@ -1,7 +1,7 @@ ;;; ooutline.el --- outline mode commands for Emacs ;; Copyright (C) 1986, 1993, 1994, 1997, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: outlines diff --git a/lisp/obsolete/options.el b/lisp/obsolete/options.el index 733e3740dc0..1383666a9b1 100644 --- a/lisp/obsolete/options.el +++ b/lisp/obsolete/options.el @@ -1,6 +1,7 @@ ;;; options.el --- edit Options command for Emacs -;; Copyright (C) 1985, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1985, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Maintainer: FSF diff --git a/lisp/obsolete/profile.el b/lisp/obsolete/profile.el index 3d5ea982b86..80b27063dbc 100644 --- a/lisp/obsolete/profile.el +++ b/lisp/obsolete/profile.el @@ -1,7 +1,7 @@ ;;; profile.el --- Emacs profiler (OBSOLETE; use elp.el instead) ;; Copyright (C) 1992, 1994, 1998, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Boaz Ben-Zvi ;; Created: 07 Feb 1992 diff --git a/lisp/obsolete/rnews.el b/lisp/obsolete/rnews.el index e6ab3e8c872..89c74dd7993 100644 --- a/lisp/obsolete/rnews.el +++ b/lisp/obsolete/rnews.el @@ -1,7 +1,7 @@ ;;; rnews.el --- USENET news reader for GNU Emacs ;; Copyright (C) 1985, 1986, 1987, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: news diff --git a/lisp/obsolete/rnewspost.el b/lisp/obsolete/rnewspost.el index 221f1a0e675..f07ce703db8 100644 --- a/lisp/obsolete/rnewspost.el +++ b/lisp/obsolete/rnewspost.el @@ -1,7 +1,7 @@ ;;; rnewspost.el --- USENET news poster/mailer for GNU Emacs ;; Copyright (C) 1985, 1986, 1987, 1995, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: mail, news diff --git a/lisp/obsolete/rsz-mini.el b/lisp/obsolete/rsz-mini.el index 94b7e212279..a9e4b007dd8 100644 --- a/lisp/obsolete/rsz-mini.el +++ b/lisp/obsolete/rsz-mini.el @@ -1,7 +1,7 @@ ;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents ;; Copyright (C) 1990, 1993, 1994, 1995, 1997, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Noah Friedman ;; Roland McGrath diff --git a/lisp/obsolete/scribe.el b/lisp/obsolete/scribe.el index 1be01ebc5bb..905e63ea1c5 100644 --- a/lisp/obsolete/scribe.el +++ b/lisp/obsolete/scribe.el @@ -1,6 +1,7 @@ ;;; scribe.el --- scribe mode, and its idiosyncratic commands -;; Copyright (C) 1985, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1985, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: wp diff --git a/lisp/obsolete/sun-curs.el b/lisp/obsolete/sun-curs.el index 769d4de868f..faa55fb8dd5 100644 --- a/lisp/obsolete/sun-curs.el +++ b/lisp/obsolete/sun-curs.el @@ -1,6 +1,7 @@ ;;; sun-curs.el --- cursor definitions for Sun windows -;; Copyright (C) 1987, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1987, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Jeff Peck ;; Keywords: hardware diff --git a/lisp/obsolete/sun-fns.el b/lisp/obsolete/sun-fns.el index 614b352ad3a..532d28462c9 100644 --- a/lisp/obsolete/sun-fns.el +++ b/lisp/obsolete/sun-fns.el @@ -1,6 +1,7 @@ ;;; sun-fns.el --- subroutines of Mouse handling for Sun windows -;; Copyright (C) 1987, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1987, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Author: Jeff Peck ;; Maintainer: none diff --git a/lisp/obsolete/uncompress.el b/lisp/obsolete/uncompress.el index 7ee25992218..7c1ab59fd87 100644 --- a/lisp/obsolete/uncompress.el +++ b/lisp/obsolete/uncompress.el @@ -1,7 +1,7 @@ ;;; uncompress.el --- auto-decompression hook for visiting .Z files ;; Copyright (C) 1992, 1994, 2001, 2002, 2003, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Maintainer: FSF ;; Keywords: files diff --git a/lisp/obsolete/x-apollo.el b/lisp/obsolete/x-apollo.el index edf3436aa96..869f63481ee 100644 --- a/lisp/obsolete/x-apollo.el +++ b/lisp/obsolete/x-apollo.el @@ -1,6 +1,7 @@ ;;; x-apollo.el --- Apollo support functions -;; Copyright (C) 1995, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1995, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. diff --git a/lisp/obsolete/x-menu.el b/lisp/obsolete/x-menu.el index 12427f803cc..c13c9c1865b 100644 --- a/lisp/obsolete/x-menu.el +++ b/lisp/obsolete/x-menu.el @@ -1,6 +1,7 @@ ;;; x-menu.el --- menu support for X -;; Copyright (C) 1986, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1986, 2002, 2003, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; This file is part of GNU Emacs. diff --git a/lisp/url/url-about.el b/lisp/url/url-about.el index c305bb31f7a..d0dcc6dc905 100644 --- a/lisp/url/url-about.el +++ b/lisp/url/url-about.el @@ -1,6 +1,6 @@ ;;; url-about.el --- Show internal URLs -;; Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes, hypermedia diff --git a/lisp/url/url-auth.el b/lisp/url/url-auth.el index 317f91c9a13..5845b9d660e 100644 --- a/lisp/url/url-auth.el +++ b/lisp/url/url-auth.el @@ -1,7 +1,7 @@ ;;; url-auth.el --- Uniform Resource Locator authorization modules ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes, hypermedia diff --git a/lisp/url/url-cid.el b/lisp/url/url-cid.el index abaf8dd9e76..f6e569a4b2f 100644 --- a/lisp/url/url-cid.el +++ b/lisp/url/url-cid.el @@ -1,6 +1,6 @@ ;;; url-cid.el --- Content-ID URL loader -;; Copyright (C) 1998, 1999, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-dav.el b/lisp/url/url-dav.el index 2a6b28b9b3c..449d8a510b5 100644 --- a/lisp/url/url-dav.el +++ b/lisp/url/url-dav.el @@ -1,6 +1,6 @@ ;;; url-dav.el --- WebDAV support -;; Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Bill Perry ;; Maintainer: Bill Perry diff --git a/lisp/url/url-dired.el b/lisp/url/url-dired.el index b5ff892721e..28f86560942 100644 --- a/lisp/url/url-dired.el +++ b/lisp/url/url-dired.el @@ -1,7 +1,7 @@ ;;; url-dired.el --- URL Dired minor mode ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, files diff --git a/lisp/url/url-expand.el b/lisp/url/url-expand.el index ca4b8c72ab8..4f422e5cc5f 100644 --- a/lisp/url/url-expand.el +++ b/lisp/url/url-expand.el @@ -1,6 +1,6 @@ ;;; url-expand.el --- expand-file-name for URLs -;; Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-file.el b/lisp/url/url-file.el index 64766930c43..c9bbebdfddb 100644 --- a/lisp/url/url-file.el +++ b/lisp/url/url-file.el @@ -1,7 +1,7 @@ ;;; url-file.el --- File retrieval code ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-ftp.el b/lisp/url/url-ftp.el index 633f4ed40d1..8ff43ff57a5 100644 --- a/lisp/url/url-ftp.el +++ b/lisp/url/url-ftp.el @@ -1,7 +1,7 @@ ;;; url-ftp.el --- FTP wrapper ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-gw.el b/lisp/url/url-gw.el index 66ac39612fd..0cd2e6f9a50 100644 --- a/lisp/url/url-gw.el +++ b/lisp/url/url-gw.el @@ -1,6 +1,6 @@ ;;; url-gw.el --- Gateway munging for URL loading -;; Copyright (C) 1997, 1998, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Bill Perry ;; Keywords: comm, data, processes diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 725f4bc1c8a..ac8f490f3e8 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -1,6 +1,6 @@ ;;; url-http.el --- HTTP retrieval routines -;; Copyright (C) 1999, 2001, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2001, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Bill Perry ;; Keywords: comm, data, processes diff --git a/lisp/url/url-https.el b/lisp/url/url-https.el index 1777da0b6b9..a7440a76535 100644 --- a/lisp/url/url-https.el +++ b/lisp/url/url-https.el @@ -1,6 +1,6 @@ ;;; url-https.el --- HTTP over SSL/TLS routines -;; Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-imap.el b/lisp/url/url-imap.el index 8d1b9b3877b..a10db8e7445 100644 --- a/lisp/url/url-imap.el +++ b/lisp/url/url-imap.el @@ -1,6 +1,6 @@ ;;; url-imap.el --- IMAP retrieval routines -;; Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Keywords: comm, data, processes diff --git a/lisp/url/url-irc.el b/lisp/url/url-irc.el index a06bdff5bfd..a876657d393 100644 --- a/lisp/url/url-irc.el +++ b/lisp/url/url-irc.el @@ -1,7 +1,7 @@ ;;; url-irc.el --- IRC URL interface ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-ldap.el b/lisp/url/url-ldap.el index ce7b7a9bab1..64471bae5b1 100644 --- a/lisp/url/url-ldap.el +++ b/lisp/url/url-ldap.el @@ -1,6 +1,6 @@ ;;; url-ldap.el --- LDAP Uniform Resource Locator retrieval code -;; Copyright (C) 1998, 1999, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1998, 1999, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-mailto.el b/lisp/url/url-mailto.el index e9d5ff6fc15..d9d6e22cd05 100644 --- a/lisp/url/url-mailto.el +++ b/lisp/url/url-mailto.el @@ -1,7 +1,7 @@ ;;; url-mail.el --- Mail Uniform Resource Locator retrieval code ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-methods.el b/lisp/url/url-methods.el index e39ffa1eb5b..6854d62af03 100644 --- a/lisp/url/url-methods.el +++ b/lisp/url/url-methods.el @@ -1,7 +1,7 @@ ;;; url-methods.el --- Load URL schemes as needed ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes, hypermedia diff --git a/lisp/url/url-misc.el b/lisp/url/url-misc.el index 5041a407420..f7f9bcd439c 100644 --- a/lisp/url/url-misc.el +++ b/lisp/url/url-misc.el @@ -1,7 +1,7 @@ ;;; url-misc.el --- Misc Uniform Resource Locator retrieval code ;; Copyright (C) 1996, 1997, 1998, 1999, 2002, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-nfs.el b/lisp/url/url-nfs.el index e6822efc242..d6bc8417631 100644 --- a/lisp/url/url-nfs.el +++ b/lisp/url/url-nfs.el @@ -1,7 +1,7 @@ ;;; url-nfs.el --- NFS URL interface ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-ns.el b/lisp/url/url-ns.el index 3edbf2c84d4..6b017b83ca9 100644 --- a/lisp/url/url-ns.el +++ b/lisp/url/url-ns.el @@ -1,6 +1,7 @@ ;;; url-ns.el --- Various netscape-ish functions for proxy definitions -;; Copyright (C) 1997, 1998, 1999, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998, 1999, 2004, 2005, +;; 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes, hypermedia diff --git a/lisp/url/url-parse.el b/lisp/url/url-parse.el index bbe7f112cea..f84bf1a7ba2 100644 --- a/lisp/url/url-parse.el +++ b/lisp/url/url-parse.el @@ -1,7 +1,7 @@ ;;; url-parse.el --- Uniform Resource Locator parser ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes diff --git a/lisp/url/url-proxy.el b/lisp/url/url-proxy.el index c5d7753daf5..c3bfb1e0c4b 100644 --- a/lisp/url/url-proxy.el +++ b/lisp/url/url-proxy.el @@ -1,6 +1,6 @@ ;;; url-proxy.el --- Proxy server support -;; Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 1999, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Keywords: comm, data, processes, hypermedia diff --git a/lisp/url/url-util.el b/lisp/url/url-util.el index 538eb3eca45..f33a58950fc 100644 --- a/lisp/url/url-util.el +++ b/lisp/url/url-util.el @@ -1,7 +1,7 @@ ;;; url-util.el --- Miscellaneous helper routines for URL library ;; Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, -;; 2005 Free Software Foundation, Inc. +;; 2005, 2006 Free Software Foundation, Inc. ;; Author: Bill Perry ;; Keywords: comm, data, processes diff --git a/lisp/url/vc-dav.el b/lisp/url/vc-dav.el index 926b90d5f31..8181788a05c 100644 --- a/lisp/url/vc-dav.el +++ b/lisp/url/vc-dav.el @@ -1,6 +1,6 @@ ;;; vc-dav.el --- vc.el support for WebDAV -;; Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2004, 2005, 2006 Free Software Foundation, Inc. ;; Author: Bill Perry ;; Maintainer: Bill Perry diff --git a/lispintro/ChangeLog b/lispintro/ChangeLog index 380dd66ec10..753aec71d80 100644 --- a/lispintro/ChangeLog +++ b/lispintro/ChangeLog @@ -58,8 +58,8 @@ ;; coding: iso-2022-7bit ;; End: - Copyright (C) 2001, 2002, 2003, 2004, 2005 - Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/lispintro/Makefile.in b/lispintro/Makefile.in index 0f912d61487..8d902f41a64 100644 --- a/lispintro/Makefile.in +++ b/lispintro/Makefile.in @@ -1,7 +1,7 @@ #### Makefile for the Emacs Lisp Introduction manual # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, -# 2003, 2004, 2005 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This file is part of GNU Emacs. diff --git a/lispintro/aclocal.m4 b/lispintro/aclocal.m4 index e446f25337a..2568263f93b 100644 --- a/lispintro/aclocal.m4 +++ b/lispintro/aclocal.m4 @@ -1,7 +1,7 @@ dnl aclocal.m4 generated automatically by aclocal 1.4-p4 dnl Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2002, 2003, -dnl 2004, 2005 Free Software Foundation, Inc. +dnl 2004, 2005, 2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index e0338fb3cbc..b5719a4d214 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi @@ -183,7 +183,7 @@ people who are not programmers. Edition @value{edition-number}, @value{update-date} @sp 1 Copyright @copyright{} 1990, 1991, 1992, 1993, 1994, 1995, 1997, 2001, - 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. @sp 1 @iftex diff --git a/lispintro/makefile.w32-in b/lispintro/makefile.w32-in index 09acbb699ab..c0b4b2a7b69 100644 --- a/lispintro/makefile.w32-in +++ b/lispintro/makefile.w32-in @@ -1,6 +1,6 @@ #### -*- Makefile -*- for the Emacs Lisp Introduction manual. -# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This file is part of GNU Emacs. diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog index de7c73e0d05..0bd79a323c7 100644 --- a/lwlib/ChangeLog +++ b/lwlib/ChangeLog @@ -1298,7 +1298,7 @@ ;; coding: iso-2022-7bit-unix ;; End: - Copyright (C) 1995, 1996, 1997, 1998, 1999, 2001, 2002 + Copyright (C) 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2006 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/lwlib/lwlib-Xlw.c b/lwlib/lwlib-Xlw.c index 40091e7b69b..4799b1dbd9d 100644 --- a/lwlib/lwlib-Xlw.c +++ b/lwlib/lwlib-Xlw.c @@ -1,7 +1,7 @@ /* The lwlib interface to "xlwmenu" menus. Copyright (C) 1992 Lucid, Inc. Copyright (C) 1994, 2000, 2001, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. This file is part of the Lucid Widget Library. diff --git a/lwlib/lwlib-Xm.c b/lwlib/lwlib-Xm.c index 32abbca7601..78ad165ef0e 100644 --- a/lwlib/lwlib-Xm.c +++ b/lwlib/lwlib-Xm.c @@ -1,6 +1,6 @@ /* The lwlib interface to Motif widgets. Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003, - 2004, 2005 Free Software Foundation, Inc. + 2004, 2005, 2006 Free Software Foundation, Inc. Copyright (C) 1992 Lucid, Inc. This file is part of the Lucid Widget Library. diff --git a/lwlib/lwlib-Xm.h b/lwlib/lwlib-Xm.h index d6069fad2d8..74eea3d4d79 100644 --- a/lwlib/lwlib-Xm.h +++ b/lwlib/lwlib-Xm.h @@ -1,6 +1,6 @@ /* The lwlib interface to Motif widgets. Copyright (C) 1994, 2000, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. Copyright (C) 1992 Lucid, Inc. This file is part of the Lucid Widget Library. diff --git a/lwlib/xlwmenu.c b/lwlib/xlwmenu.c index 1f6cad8d3f2..0a5d82c4671 100644 --- a/lwlib/xlwmenu.c +++ b/lwlib/xlwmenu.c @@ -1,6 +1,6 @@ /* Implements a lightweight menubar widget. Copyright (C) 1992 Lucid, Inc. - Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the Lucid Widget Library. diff --git a/lwlib/xlwmenu.h b/lwlib/xlwmenu.h index 93703358ccb..fa5dc887330 100644 --- a/lwlib/xlwmenu.h +++ b/lwlib/xlwmenu.h @@ -1,5 +1,6 @@ /* Interface of a lightweight menubar widget. - Copyright (C) 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2000, 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. This file is part of the Lucid Widget Library. diff --git a/lwlib/xlwmenuP.h b/lwlib/xlwmenuP.h index ca2b7dc6a1a..ce170d7bfe4 100644 --- a/lwlib/xlwmenuP.h +++ b/lwlib/xlwmenuP.h @@ -1,6 +1,6 @@ /* Internals of a lightweight menubar widget. Copyright (C) 1999, 2000, 2002, 2003, 2004, - 2005 Free Software Foundation, Inc. + 2005, 2006 Free Software Foundation, Inc. This file is part of the Lucid Widget Library. diff --git a/oldXMenu/Activate.c b/oldXMenu/Activate.c index d03534e144a..6809607c3dc 100644 --- a/oldXMenu/Activate.c +++ b/oldXMenu/Activate.c @@ -1,5 +1,6 @@ /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ #include "copyright.h" diff --git a/oldXMenu/AddPane.c b/oldXMenu/AddPane.c index 4bb16c8d573..2e122ea0ae3 100644 --- a/oldXMenu/AddPane.c +++ b/oldXMenu/AddPane.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/AddSel.c b/oldXMenu/AddSel.c index a063b63f557..6ddec57a525 100644 --- a/oldXMenu/AddSel.c +++ b/oldXMenu/AddSel.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/ChangeLog b/oldXMenu/ChangeLog index afe7607115a..a9d7c9b1279 100644 --- a/oldXMenu/ChangeLog +++ b/oldXMenu/ChangeLog @@ -444,7 +444,7 @@ ;; End: Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, - 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/oldXMenu/ChgPane.c b/oldXMenu/ChgPane.c index 7c8ff91f88c..20b0a949d9a 100644 --- a/oldXMenu/ChgPane.c +++ b/oldXMenu/ChgPane.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/ChgSel.c b/oldXMenu/ChgSel.c index e0fcb224f3e..b34a22574f2 100644 --- a/oldXMenu/ChgSel.c +++ b/oldXMenu/ChgSel.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/Create.c b/oldXMenu/Create.c index d4b32f2e937..77115b20835 100644 --- a/oldXMenu/Create.c +++ b/oldXMenu/Create.c @@ -1,5 +1,6 @@ /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ #include "copyright.h" diff --git a/oldXMenu/DelPane.c b/oldXMenu/DelPane.c index 6d042e757f8..e824b539cf1 100644 --- a/oldXMenu/DelPane.c +++ b/oldXMenu/DelPane.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/DelSel.c b/oldXMenu/DelSel.c index 7f14aa74fa6..c8b39eb03a1 100644 --- a/oldXMenu/DelSel.c +++ b/oldXMenu/DelSel.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/Destroy.c b/oldXMenu/Destroy.c index b0b9ed77569..52ab5028546 100644 --- a/oldXMenu/Destroy.c +++ b/oldXMenu/Destroy.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/Error.c b/oldXMenu/Error.c index 0bd4fcc8782..51d5b8fa6cb 100644 --- a/oldXMenu/Error.c +++ b/oldXMenu/Error.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/EvHand.c b/oldXMenu/EvHand.c index c9e8b36c873..457609f4c2a 100644 --- a/oldXMenu/EvHand.c +++ b/oldXMenu/EvHand.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/FindPane.c b/oldXMenu/FindPane.c index c886d6f7b7a..6c0be73f0fb 100644 --- a/oldXMenu/FindPane.c +++ b/oldXMenu/FindPane.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/FindSel.c b/oldXMenu/FindSel.c index 5a91faf0f8f..777770a4706 100644 --- a/oldXMenu/FindSel.c +++ b/oldXMenu/FindSel.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/InsPane.c b/oldXMenu/InsPane.c index 805a978bb74..5f8f334f184 100644 --- a/oldXMenu/InsPane.c +++ b/oldXMenu/InsPane.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/InsSel.c b/oldXMenu/InsSel.c index 103081ac446..30e0756d8e4 100644 --- a/oldXMenu/InsSel.c +++ b/oldXMenu/InsSel.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/Internal.c b/oldXMenu/Internal.c index 0fea995a899..ec11cc7d156 100644 --- a/oldXMenu/Internal.c +++ b/oldXMenu/Internal.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/Locate.c b/oldXMenu/Locate.c index 90fad2c7b2a..59916eee979 100644 --- a/oldXMenu/Locate.c +++ b/oldXMenu/Locate.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/Post.c b/oldXMenu/Post.c index 2be31aebe39..ca6bb5752ab 100644 --- a/oldXMenu/Post.c +++ b/oldXMenu/Post.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/Recomp.c b/oldXMenu/Recomp.c index a10c380427e..e955323c825 100644 --- a/oldXMenu/Recomp.c +++ b/oldXMenu/Recomp.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/SetAEQ.c b/oldXMenu/SetAEQ.c index 9124561dcbe..437f5e2d721 100644 --- a/oldXMenu/SetAEQ.c +++ b/oldXMenu/SetAEQ.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/SetFrz.c b/oldXMenu/SetFrz.c index 8e778a66760..7a75dddfd59 100644 --- a/oldXMenu/SetFrz.c +++ b/oldXMenu/SetFrz.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/SetPane.c b/oldXMenu/SetPane.c index 907dba3b233..e76b75902c3 100644 --- a/oldXMenu/SetPane.c +++ b/oldXMenu/SetPane.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/SetSel.c b/oldXMenu/SetSel.c index 06e2c76069f..5910354b966 100644 --- a/oldXMenu/SetSel.c +++ b/oldXMenu/SetSel.c @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/X10.h b/oldXMenu/X10.h index 63bf90f38d2..4d7d84e8c03 100644 --- a/oldXMenu/X10.h +++ b/oldXMenu/X10.h @@ -15,7 +15,8 @@ * */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * X10.h - Header definition and support file for the C subroutine diff --git a/oldXMenu/XCrAssoc.c b/oldXMenu/XCrAssoc.c index 0c8203579e8..0596b9fcee1 100644 --- a/oldXMenu/XCrAssoc.c +++ b/oldXMenu/XCrAssoc.c @@ -1,5 +1,6 @@ /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* Permission to use, copy, modify, distribute, and sell this software and its diff --git a/oldXMenu/XDelAssoc.c b/oldXMenu/XDelAssoc.c index 286353f46cf..772e9fa1b40 100644 --- a/oldXMenu/XDelAssoc.c +++ b/oldXMenu/XDelAssoc.c @@ -1,5 +1,6 @@ /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* Permission to use, copy, modify, distribute, and sell this software and its diff --git a/oldXMenu/XDestAssoc.c b/oldXMenu/XDestAssoc.c index eab0511bb66..1772321ad27 100644 --- a/oldXMenu/XDestAssoc.c +++ b/oldXMenu/XDestAssoc.c @@ -1,5 +1,6 @@ /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* Permission to use, copy, modify, distribute, and sell this software and its diff --git a/oldXMenu/XLookAssoc.c b/oldXMenu/XLookAssoc.c index b1b53d9dd6a..7e72570e2ba 100644 --- a/oldXMenu/XLookAssoc.c +++ b/oldXMenu/XLookAssoc.c @@ -1,5 +1,6 @@ /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* Permission to use, copy, modify, distribute, and sell this software and its diff --git a/oldXMenu/XMakeAssoc.c b/oldXMenu/XMakeAssoc.c index d749ec8d04c..db020c4884b 100644 --- a/oldXMenu/XMakeAssoc.c +++ b/oldXMenu/XMakeAssoc.c @@ -1,5 +1,6 @@ /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* Permission to use, copy, modify, distribute, and sell this software and its diff --git a/oldXMenu/XMenu.h b/oldXMenu/XMenu.h index 84bf72a5df9..858e4a64f7b 100644 --- a/oldXMenu/XMenu.h +++ b/oldXMenu/XMenu.h @@ -1,7 +1,8 @@ #include "copyright.h" /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/XMenuInt.h b/oldXMenu/XMenuInt.h index fd272300c60..a2e6f56e89b 100644 --- a/oldXMenu/XMenuInt.h +++ b/oldXMenu/XMenuInt.h @@ -1,6 +1,6 @@ - /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* * XMenu: MIT Project Athena, X Window system menu package diff --git a/oldXMenu/copyright.h b/oldXMenu/copyright.h index dffc63ac63e..05062d856df 100644 --- a/oldXMenu/copyright.h +++ b/oldXMenu/copyright.h @@ -16,7 +16,8 @@ without express or implied warranty. */ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* arch-tag: c689b1bc-a3ba-41a1-baa0-a3622b5445b2 (do not change this comment) */ diff --git a/oldXMenu/insque.c b/oldXMenu/insque.c index 2395e4ea2d3..fef750484a3 100644 --- a/oldXMenu/insque.c +++ b/oldXMenu/insque.c @@ -1,4 +1,5 @@ -/* Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc. */ +/* Copyright (C) 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. */ /* This file implements the emacs_insque and emacs_remque functions, copies of the insque and remque functions of BSD. They and all From 55495ab90ed2afd64f757e55f697d716a7c7b75c Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Sun, 5 Feb 2006 23:47:04 +0000 Subject: [PATCH 42/42] Update "copyright notices" section. --- admin/FOR-RELEASE | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE index eab1e5aed2f..396f591bf89 100644 --- a/admin/FOR-RELEASE +++ b/admin/FOR-RELEASE @@ -64,7 +64,7 @@ you're going to handle. DIRECTORY STATUS IN CHARGE --------- ------ --------- -etc (and subdirs) working Thien-Thi Nguyen (ttn(@gnu.org)) +etc (and subdirs) done Thien-Thi Nguyen (ttn(@gnu.org)) leim working Kenichi Handa lib-src working ttn lisp working ttn @@ -79,23 +79,23 @@ lisp/language working Kenichi Handa lisp/mail working ttn lisp/mh-e done Bill Wohler lisp/net working ttn -lisp/obsolete working ttn +lisp/obsolete done ttn lisp/play done Romain Francoise lisp/progmodes working Nick Roberts lisp/term working ttn lisp/textmodes working ttn -lisp/url working ttn -lispintro working ttn +lisp/url done ttn +lispintro done ttn lispref working ttn -lwlib working ttn -m4 working ttn +lwlib done ttn +m4 done ttn mac (and subdirs) working ttn -man working ttn +man done ttn msdos working ttn nt (and subdirs) working ttn -oldXMenu working ttn +oldXMenu done ttn src (and subdirs) working ttn -vms working ttn +vms done ttn ** Check the Emacs manual.