diff options
| author | jave | 2014-12-28 17:33:38 +0100 |
|---|---|---|
| committer | jave | 2014-12-28 17:33:38 +0100 |
| commit | 703cbed72f82633cf3720ce8ad0523ea3af2c9f5 (patch) | |
| tree | b6ba0487fe9097e2efea4629d76c8661bd417c21 | |
| parent | 5f46725992bf26f887483c14c63c03f5b5794f34 (diff) | |
| parent | 807c3413c478be964f24b5ecc44712ce3358001e (diff) | |
| download | emacs-703cbed72f82633cf3720ce8ad0523ea3af2c9f5.tar.gz emacs-703cbed72f82633cf3720ce8ad0523ea3af2c9f5.zip | |
Merge branch 'master' into xwidget
66 files changed, 3184 insertions, 1996 deletions
diff --git a/CONTRIBUTE b/CONTRIBUTE index dc6fd71624a..3bc49cf3ea3 100644 --- a/CONTRIBUTE +++ b/CONTRIBUTE | |||
| @@ -1,196 +1,15 @@ | |||
| 1 | Copyright (C) 2006-2014 Free Software Foundation, Inc. | 1 | This file contains information on Emacs developer processes. |
| 2 | See end for license conditions. | ||
| 3 | 2 | ||
| 3 | For information on contributing to Emacs as a non-developer, see | ||
| 4 | (info "(emacs)Contributing") or | ||
| 5 | http://www.gnu.org/software/emacs/manual/html_node/emacs/Contributing.html | ||
| 4 | 6 | ||
| 5 | Contributing to Emacs | 7 | * Information for Emacs Developers. |
| 6 | |||
| 7 | Emacs is a collaborative project and we encourage contributions from | ||
| 8 | anyone and everyone. If you want to contribute in the way that will | ||
| 9 | help us most, we recommend (1) fixing reported bugs and (2) | ||
| 10 | implementing the feature ideas in etc/TODO. However, if you think of | ||
| 11 | new features to add, please suggest them too -- we might like your | ||
| 12 | idea. Porting to new platforms is also useful, when there is a new | ||
| 13 | platform, but that is not common nowadays. | ||
| 14 | |||
| 15 | For documentation on Emacs (to understand how to implement your | ||
| 16 | desired change), refer to: | ||
| 17 | |||
| 18 | - the Emacs Manual | ||
| 19 | http://www.gnu.org/software/emacs/manual/emacs.html | ||
| 20 | (info "(Emacs)Top") | ||
| 21 | |||
| 22 | - the Emacs Lisp Reference Manual | ||
| 23 | http://www.gnu.org/software/emacs/manual/elisp.html | ||
| 24 | (info "(elisp)Top") | ||
| 25 | |||
| 26 | - http://www.gnu.org/software/emacs | ||
| 27 | |||
| 28 | - http://www.emacswiki.org/ | ||
| 29 | |||
| 30 | There are many ways to contribute to Emacs: | ||
| 31 | |||
| 32 | - implement a new feature, and submit a patch (see "Submitting | ||
| 33 | Patches" below). | ||
| 34 | |||
| 35 | - answer questions on the Emacs user mailing list | ||
| 36 | https://lists.gnu.org/mailman/listinfo/help-gnu-emacs | ||
| 37 | |||
| 38 | - write documentation, either on the wiki, or in the Emacs source | ||
| 39 | repository (see "Submitting Patches" below) | ||
| 40 | |||
| 41 | - find and report bugs; use M-x report-emacs-bug | ||
| 42 | |||
| 43 | - check if existing bug reports are fixed in newer versions of Emacs | ||
| 44 | http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs | ||
| 45 | |||
| 46 | - develop a package that works with Emacs, and publish it on your own | ||
| 47 | or in Gnu ELPA (see admin/notes/elpa). | ||
| 48 | |||
| 49 | Here are some style and legal conventions for contributors to Emacs: | ||
| 50 | |||
| 51 | |||
| 52 | * Coding Standards | ||
| 53 | |||
| 54 | Contributed code should follow the GNU Coding Standards | ||
| 55 | (http://www.gnu.org/prep/standards/ - may also be available in info on | ||
| 56 | your system). | ||
| 57 | |||
| 58 | If it doesn't, we'll need to find someone to fix the code before we | ||
| 59 | can use it. | ||
| 60 | |||
| 61 | Emacs has additional style and coding conventions: | ||
| 62 | |||
| 63 | - the "Tips" Appendix in the Emacs Lisp Reference | ||
| 64 | http://www.gnu.org/software/emacs/manual/html_node/elisp/Tips.html | ||
| 65 | (info "(elisp)Tips"). | ||
| 66 | |||
| 67 | - Avoid using `defadvice' or `eval-after-load' for Lisp code to be | ||
| 68 | included in Emacs. | ||
| 69 | |||
| 70 | - Remove all trailing whitespace in all source and text files. | ||
| 71 | |||
| 72 | - Emacs has no convention on whether to use tabs in source code; | ||
| 73 | please don't change whitespace in the files you edit. | ||
| 74 | |||
| 75 | - Use ?\s instead of ? in Lisp code for a space character. | ||
| 76 | |||
| 77 | * Copyright Assignment | ||
| 78 | |||
| 79 | The FSF (Free Software Foundation) is the copyright holder for GNU Emacs. | ||
| 80 | The FSF is a nonprofit with a worldwide mission to promote computer | ||
| 81 | user freedom and to defend the rights of all free software users. | ||
| 82 | For general information, see the website http://www.fsf.org/ . | ||
| 83 | |||
| 84 | Generally speaking, for non-trivial contributions to GNU Emacs we | ||
| 85 | require that the copyright be assigned to the FSF. For the reasons | ||
| 86 | behind this, see: http://www.gnu.org/licenses/why-assign.html . | ||
| 87 | |||
| 88 | Copyright assignment is a simple process. Residents of some countries | ||
| 89 | can do it entirely electronically. We can help you get started, and | ||
| 90 | answer any questions you may have (or point you to the people with the | ||
| 91 | answers), at the emacs-devel@gnu.org mailing list. | ||
| 92 | |||
| 93 | (Please note: general discussion about why some GNU projects ask | ||
| 94 | for a copyright assignment is off-topic for emacs-devel. | ||
| 95 | See gnu-misc-discuss instead.) | ||
| 96 | |||
| 97 | A copyright disclaimer is also a possibility, but we prefer an assignment. | ||
| 98 | Note that the disclaimer, like an assignment, involves you sending | ||
| 99 | signed paperwork to the FSF (simply saying "this is in the public domain" | ||
| 100 | is not enough). Also, a disclaimer cannot be applied to future work, it | ||
| 101 | has to be repeated each time you want to send something new. | ||
| 102 | |||
| 103 | We can accept small changes (roughly, fewer than 15 lines) without | ||
| 104 | an assignment. This is a cumulative limit (e.g. three separate 5 line | ||
| 105 | patches) over all your contributions. | ||
| 106 | |||
| 107 | * Getting the Source Code | ||
| 108 | |||
| 109 | The current working version of the Emacs source code is stored in a | ||
| 110 | git repository on the Savannah web site | ||
| 111 | (http://savannah.gnu.org/projects/emacs). It is important to write | ||
| 112 | your patch based on the current working version. If you start from an | ||
| 113 | older version, your patch may be outdated (so that maintainers will | ||
| 114 | have a hard time applying it), or changes in Emacs may have made your | ||
| 115 | patch unnecessary. | ||
| 116 | |||
| 117 | After you have downloaded the repository source, you should read the file | ||
| 118 | INSTALL.REPO for build instructions (they differ to some extent from a | ||
| 119 | normal build). | ||
| 120 | |||
| 121 | * Submitting Patches | ||
| 122 | |||
| 123 | Every patch must have several pieces of information before we | ||
| 124 | can properly evaluate it. | ||
| 125 | |||
| 126 | When you have all these pieces, bundle them up in a mail message and | ||
| 127 | send it to the developers. Sending it to bug-gnu-emacs@gnu.org | ||
| 128 | (which is the bug/feature list) is recommended, because that list | ||
| 129 | is coupled to a tracking system that makes it easier to locate patches. | ||
| 130 | If your patch is not complete and you think it needs more discussion, | ||
| 131 | you might want to send it to emacs-devel@gnu.org instead. If you | ||
| 132 | revise your patch, send it as a followup to the initial topic. | ||
| 133 | |||
| 134 | ** Description | ||
| 135 | |||
| 136 | For bug fixes, a description of the bug and how your patch fixes it. | ||
| 137 | |||
| 138 | For new features, a description of the feature and your implementation. | ||
| 139 | |||
| 140 | ** ChangeLog | ||
| 141 | |||
| 142 | A ChangeLog entry as plaintext (separate from the patch). | ||
| 143 | |||
| 144 | See the existing ChangeLog files for format and content. Note that, | ||
| 145 | unlike some other projects, we do require ChangeLogs for | ||
| 146 | documentation, i.e. Texinfo files. | ||
| 147 | |||
| 148 | Ref: "Change Log Concepts" node of the GNU Coding Standards Info | ||
| 149 | Manual, for how to write good log entries. | ||
| 150 | http://www.gnu.org/prep/standards/html_node/Change-Log-Concepts.html | ||
| 151 | |||
| 152 | When using git, commit messages should use ChangeLog format, with a | ||
| 153 | single short line explaining the change, then an empty line, then | ||
| 154 | unindented ChangeLog entries. (Essentially, a commit message should | ||
| 155 | be a duplicate of what the patch adds to the ChangeLog files. We are | ||
| 156 | planning to automate this better, to avoid the duplication.) You can | ||
| 157 | use the Emacs functions log-edit-add-to-changelog or | ||
| 158 | log-edit-insert-changelog to ease this process. | ||
| 159 | |||
| 160 | ** The patch itself. | ||
| 161 | |||
| 162 | If you are accessing the Emacs repository, make sure your copy is | ||
| 163 | up-to-date (e.g. with 'git pull'). You can commit your changes | ||
| 164 | to a private branch and generate a patch from the master version | ||
| 165 | by using | ||
| 166 | git format-patch master | ||
| 167 | Or you can leave your changes uncommitted and use | ||
| 168 | git diff | ||
| 169 | With no repository, you can use | ||
| 170 | diff -u OLD NEW | ||
| 171 | |||
| 172 | ** Mail format. | ||
| 173 | |||
| 174 | We prefer to get the patches as plain text, either inline (be careful | ||
| 175 | your mail client does not change line breaks) or as MIME attachments. | ||
| 176 | |||
| 177 | ** Please reread your patch before submitting it. | ||
| 178 | |||
| 179 | ** Do not mix changes. | ||
| 180 | |||
| 181 | If you send several unrelated changes together, we will ask you to | ||
| 182 | separate them so we can consider each of the changes by itself. | ||
| 183 | |||
| 184 | ** Do not make formatting changes. | ||
| 185 | |||
| 186 | Making cosmetic formatting changes (indentation, etc) makes it harder | ||
| 187 | to see what you have really changed. | ||
| 188 | |||
| 189 | |||
| 190 | * Supplemental information for Emacs Developers. | ||
| 191 | 8 | ||
| 192 | An "Emacs Developer" is someone who contributes a lot of code or | 9 | An "Emacs Developer" is someone who contributes a lot of code or |
| 193 | documentation to the Emacs repository. | 10 | documentation to the Emacs repository. Generally, they have write |
| 11 | access to the Emacs git repository on Savannah | ||
| 12 | https://savannah.gnu.org/git/?group=emacs. | ||
| 194 | 13 | ||
| 195 | ** Write access to the Emacs repository. | 14 | ** Write access to the Emacs repository. |
| 196 | 15 | ||
| @@ -213,6 +32,31 @@ entry in their name, not yours. git distinguishes between the author | |||
| 213 | and the committer; use the --author option on the commit command to | 32 | and the committer; use the --author option on the commit command to |
| 214 | specify the actual author; the committer defaults to you. | 33 | specify the actual author; the committer defaults to you. |
| 215 | 34 | ||
| 35 | ** commit messages | ||
| 36 | |||
| 37 | When using git, commit messages should use ChangeLog format, with the | ||
| 38 | following modifications: | ||
| 39 | |||
| 40 | - Add a single short line explaining the change, then an empty line, | ||
| 41 | then unindented ChangeLog entries. | ||
| 42 | |||
| 43 | You can use various Emacs functions to ease this process; see (info | ||
| 44 | "(emacs)Change Log Commands") or | ||
| 45 | http://www.gnu.org/software/emacs/manual/html_node/emacs/Change-Log-Commands.html. | ||
| 46 | |||
| 47 | - The summary line is limited to 72 characters (enforced by a commit | ||
| 48 | hook). If you have trouble making that a good summary, add a | ||
| 49 | paragraph below it, before the individual file descriptions. | ||
| 50 | |||
| 51 | - If only a single file is changed, the summary line can be the normal | ||
| 52 | file first line (starting with the asterisk). Then there is no | ||
| 53 | individual files section. | ||
| 54 | |||
| 55 | - Explaining the rationale for a design choice is best done in comments | ||
| 56 | in the source code. However, sometimes it is useful to describe just | ||
| 57 | the rationale for a change; that can be done in the commit message | ||
| 58 | between the summary line and the file entries. | ||
| 59 | |||
| 216 | ** Changelog notes | 60 | ** Changelog notes |
| 217 | 61 | ||
| 218 | - Emacs generally follows the GNU coding standards when it comes to | 62 | - Emacs generally follows the GNU coding standards when it comes to |
| @@ -222,11 +66,25 @@ specify the actual author; the committer defaults to you. | |||
| 222 | standards used to recommend) rather than 'like-this' (as they do | 66 | standards used to recommend) rather than 'like-this' (as they do |
| 223 | now), because `...' is so widely used elsewhere in Emacs. | 67 | now), because `...' is so widely used elsewhere in Emacs. |
| 224 | 68 | ||
| 69 | - Some of the rules in the GNU coding standards section 5.2 | ||
| 70 | "Commenting Your Work" also apply to Changelog entries: they must be | ||
| 71 | in English, and be complete sentences starting with a capital and | ||
| 72 | ending with a period (except the summary line should not end in a | ||
| 73 | period). | ||
| 74 | |||
| 75 | It is tempting to relax this rule for commit messages, since they | ||
| 76 | are somewhat transient. However, they are preserved indefinitely, | ||
| 77 | and have a reasonable chance of being read in the future, so it's | ||
| 78 | better that they have good presentation. | ||
| 79 | |||
| 225 | - There are multiple ChangeLogs in the emacs source; roughly one per | 80 | - There are multiple ChangeLogs in the emacs source; roughly one per |
| 226 | high-level directory. The ChangeLog entry for a commit belongs in the | 81 | high-level directory. The ChangeLog entry for a commit belongs in the |
| 227 | lowest ChangeLog that is higher than or at the same level as any file | 82 | lowest ChangeLog that is higher than or at the same level as any file |
| 228 | changed by the commit. | 83 | changed by the commit. |
| 229 | 84 | ||
| 85 | - Use the present tense; describe "what the change does", not "what | ||
| 86 | the change did". | ||
| 87 | |||
| 230 | - Preferred form for several entries with the same content: | 88 | - Preferred form for several entries with the same content: |
| 231 | 89 | ||
| 232 | * help.el (view-lossage): | 90 | * help.el (view-lossage): |
| @@ -235,7 +93,13 @@ specify the actual author; the committer defaults to you. | |||
| 235 | 93 | ||
| 236 | (Rather than anything involving "ditto" and suchlike.) | 94 | (Rather than anything involving "ditto" and suchlike.) |
| 237 | 95 | ||
| 238 | - In ChangeLog files, there is no standard or recommended way to | 96 | - If the commit fixes a bug, add a separate line |
| 97 | |||
| 98 | Fixes: bug#NNNN | ||
| 99 | |||
| 100 | where NNNN is the bug number. | ||
| 101 | |||
| 102 | - In ChangeLog entries, there is no standard or recommended way to | ||
| 239 | identify revisions. | 103 | identify revisions. |
| 240 | 104 | ||
| 241 | One way to identify revisions is by quoting their summary line. | 105 | One way to identify revisions is by quoting their summary line. |
| @@ -244,7 +108,7 @@ specify the actual author; the committer defaults to you. | |||
| 244 | "2014-01-16T05:43:35Z!esr@thyrsus.com". Often, "my previous commit" | 108 | "2014-01-16T05:43:35Z!esr@thyrsus.com". Often, "my previous commit" |
| 245 | will suffice. | 109 | will suffice. |
| 246 | 110 | ||
| 247 | - There is no need to make separate change log entries for files such | 111 | - There is no need to make separate ChangeLog entries for files such |
| 248 | as NEWS, MAINTAINERS, and FOR-RELEASE, or to indicate regeneration | 112 | as NEWS, MAINTAINERS, and FOR-RELEASE, or to indicate regeneration |
| 249 | of files such as 'configure'. "There is no need" means you don't | 113 | of files such as 'configure'. "There is no need" means you don't |
| 250 | have to, but you can if you want to. | 114 | have to, but you can if you want to. |
| @@ -260,16 +124,13 @@ Development is discussed on the emacs-devel mailing list. | |||
| 260 | Sometime before the release of a new major version of Emacs a "feature | 124 | Sometime before the release of a new major version of Emacs a "feature |
| 261 | freeze" is imposed on the trunk, to prepare for creating a release | 125 | freeze" is imposed on the trunk, to prepare for creating a release |
| 262 | branch. No new features may be added to the trunk after this point, | 126 | branch. No new features may be added to the trunk after this point, |
| 263 | until the release branch is created. This freeze is announced on the | 127 | until the release branch is created. Announcements about the freeze |
| 264 | emacs-devel mailing list, and not anywhere else. | 128 | (and other important events) are made on the info-gnu-emacs mailing |
| 129 | list, and not anywhere else. | ||
| 265 | 130 | ||
| 266 | The trunk branch is named "master" in git; release branches are named | 131 | The trunk branch is named "master" in git; release branches are named |
| 267 | "emacs-nn" where "nn" is the major version. | 132 | "emacs-nn" where "nn" is the major version. |
| 268 | 133 | ||
| 269 | You must follow emacs-devel to know exactly what kinds of changes are | ||
| 270 | allowed on what branch at any time. Announcements about the freeze | ||
| 271 | (and other important events) will contain "ANNOUNCE" in the subject. | ||
| 272 | |||
| 273 | If you are fixing a bug that exists in the current release, be sure to | 134 | If you are fixing a bug that exists in the current release, be sure to |
| 274 | commit it to the release branch; it will be merged to the master | 135 | commit it to the release branch; it will be merged to the master |
| 275 | branch later. | 136 | branch later. |
| @@ -287,6 +148,23 @@ then exclude that commit from the merge to trunk. | |||
| 287 | See all the files in admin/notes/* . In particular, see | 148 | See all the files in admin/notes/* . In particular, see |
| 288 | admin/notes/newfile, see admin/notes/repo. | 149 | admin/notes/newfile, see admin/notes/repo. |
| 289 | 150 | ||
| 151 | *** git vs rename | ||
| 152 | |||
| 153 | git does not explicitly represent a file renaming; it uses a percent | ||
| 154 | changed heuristic to deduce that a file was renamed. So if you are | ||
| 155 | planning to make extensive changes to a file after renaming it (or | ||
| 156 | moving it to another directory), you should: | ||
| 157 | |||
| 158 | - create a feature branch | ||
| 159 | |||
| 160 | - commit the rename without any changes | ||
| 161 | |||
| 162 | - make other changes | ||
| 163 | |||
| 164 | - merge the feature branch to trunk, _not_ squashing the commits into | ||
| 165 | one. The commit message on this merge should summarize the renames | ||
| 166 | and all the changes. | ||
| 167 | |||
| 290 | ** Emacs Mailing lists. | 168 | ** Emacs Mailing lists. |
| 291 | 169 | ||
| 292 | Discussion about Emacs development takes place on emacs-devel@gnu.org. | 170 | Discussion about Emacs development takes place on emacs-devel@gnu.org. |
| @@ -1,3 +1,43 @@ | |||
| 1 | 2014-12-25 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Prefer stpcpy to strcat | ||
| 4 | * admin/merge-gnulib (GNULIB_MODULES): Add stpcpy. | ||
| 5 | * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate. | ||
| 6 | * lib/stpcpy.c, m4/stpcpy.m4: New files, from gnulib. | ||
| 7 | * lib-src/ebrowse.c (sym_scope_1, operator_name, open_file): | ||
| 8 | * lib-src/emacsclient.c (get_server_config, set_local_socket) | ||
| 9 | (start_daemon_and_retry_set_socket): | ||
| 10 | * lib-src/etags.c (main, C_entries, relative_filename): | ||
| 11 | * lib-src/pop.c (sendline): | ||
| 12 | * lib-src/update-game-score.c (main): | ||
| 13 | * lwlib/xlwmenu.c (resource_widget_value): | ||
| 14 | * src/callproc.c (child_setup): | ||
| 15 | * src/dbusbind.c (xd_signature_cat): | ||
| 16 | * src/doc.c (get_doc_string, Fsnarf_documentation): | ||
| 17 | * src/editfns.c (Fuser_full_name): | ||
| 18 | * src/frame.c (xrdb_get_resource): | ||
| 19 | * src/gtkutil.c (xg_get_file_with_chooser): | ||
| 20 | * src/tparam.c (tparam1): | ||
| 21 | * src/xfns.c (xic_create_fontsetname): | ||
| 22 | * src/xrdb.c (gethomedir, get_user_db, get_environ_db): | ||
| 23 | * src/xsmfns.c (smc_save_yourself_CB): | ||
| 24 | Rewrite to avoid the need for strcat, typically by using stpcpy | ||
| 25 | and/or lispstpcpy. strcat tends to be part of O(N**2) algorithms. | ||
| 26 | * src/doc.c (sibling_etc): | ||
| 27 | * src/xrdb.c (xdefaults): | ||
| 28 | Now a top-level static constant. | ||
| 29 | |||
| 30 | 2014-12-24 Stephen Leake <stephen_leake@stephe-leake.org> | ||
| 31 | |||
| 32 | * CONTRIBUTE: Move user-level information to doc/emacs/trouble.texi. | ||
| 33 | Add Savannah url, cleanup announcing freeze. | ||
| 34 | (commit messages): New, gathered from comments on emacs-devel. | ||
| 35 | (Changelog notes): Add reference to GNU coding standards section 5.2; | ||
| 36 | doc 'present tense', bug fix format. | ||
| 37 | (branches): Freeze announcements are made on info-gnu-emacs mailing | ||
| 38 | list. | ||
| 39 | (git vs rename): New. | ||
| 40 | |||
| 1 | 2014-12-23 Paul Eggert <eggert@cs.ucla.edu> | 41 | 2014-12-23 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 42 | ||
| 3 | Merge from gnulib | 43 | Merge from gnulib |
| @@ -8,16 +48,7 @@ | |||
| 8 | 48 | ||
| 9 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | 49 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> |
| 10 | 50 | ||
| 11 | Spelling fixes | 51 | Spelling fixes. All uses changed. |
| 12 | All uses changed. | ||
| 13 | * lib-src/etags.c (analyze_regex): Rename from analyse_regex. | ||
| 14 | * lisp/cedet/semantic/lex-spp.el: | ||
| 15 | (semantic-lex-spp-analyzer-do-replace): | ||
| 16 | Rename from semantic-lex-spp-anlyzer-do-replace. | ||
| 17 | * lisp/emacs-lisp/cconv.el (cconv--analyze-use): | ||
| 18 | Rename from cconv--analyse-use. | ||
| 19 | (cconv--analyze-function): Rename from cconv--analyse-function. | ||
| 20 | (cconv-analyze-form): Rename from cconv-analyse-form. | ||
| 21 | * src/regex.c (analyze_first): Rename from analyze_first. | 52 | * src/regex.c (analyze_first): Rename from analyze_first. |
| 22 | 53 | ||
| 23 | 2014-12-14 Glenn Morris <rgm@gnu.org> | 54 | 2014-12-14 Glenn Morris <rgm@gnu.org> |
diff --git a/admin/ChangeLog b/admin/ChangeLog index 88ce1450d7f..b32d7004517 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,8 +1,14 @@ | |||
| 1 | 2014-12-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * authors.el (authors-obsolete-files-regexps) | ||
| 4 | (authors-ignored-files, authors-valid-file-names) | ||
| 5 | (authors-renamed-files-alist, authors-renamed-files-regexps): | ||
| 6 | Additions. | ||
| 7 | |||
| 1 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | 8 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 9 | ||
| 3 | * notes/unicode: Track leim/quail file renames. | 10 | * notes/unicode: Track leim/quail file renames. |
| 4 | Correct coding system | 11 | Correct coding system of lisp/international/titdic-cnv.el. |
| 5 | of lisp/international/titdic-cnv.el. | ||
| 6 | 12 | ||
| 7 | 2014-12-14 Glenn Morris <rgm@gnu.org> | 13 | 2014-12-14 Glenn Morris <rgm@gnu.org> |
| 8 | 14 | ||
diff --git a/admin/authors.el b/admin/authors.el index 42f3bcd799d..790e3514191 100644 --- a/admin/authors.el +++ b/admin/authors.el | |||
| @@ -240,7 +240,7 @@ If REALNAME is nil, ignore that author.") | |||
| 240 | 240 | ||
| 241 | (defvar authors-obsolete-files-regexps | 241 | (defvar authors-obsolete-files-regexps |
| 242 | '(".*loaddefs.el$" ; not obsolete, but auto-generated | 242 | '(".*loaddefs.el$" ; not obsolete, but auto-generated |
| 243 | "\\.\\(cvs\\|git\\)ignore$" ; obsolete or uninteresting | 243 | "\\.\\(bzr\\|cvs\\|git\\)ignore$" ; obsolete or uninteresting |
| 244 | "\\.arch-inventory$" | 244 | "\\.arch-inventory$" |
| 245 | "automated/data/" ; not interesting | 245 | "automated/data/" ; not interesting |
| 246 | ;; TODO lib/? Matches other things? | 246 | ;; TODO lib/? Matches other things? |
| @@ -314,6 +314,7 @@ Changes to files matching one of the regexps in this list are not listed.") | |||
| 314 | "CODINGS" "CHARSETS" | 314 | "CODINGS" "CHARSETS" |
| 315 | "calc/INSTALL" "calc/Makefile" "calc/README.prev" | 315 | "calc/INSTALL" "calc/Makefile" "calc/README.prev" |
| 316 | "vms-pp.trans" "_emacs" "batcomp.com" "notes/cpp" ; admin/ | 316 | "vms-pp.trans" "_emacs" "batcomp.com" "notes/cpp" ; admin/ |
| 317 | "notes/BRANCH" "notes/exit-value" | ||
| 317 | "emacsver.texi.in" | 318 | "emacsver.texi.in" |
| 318 | "vpath.sed" | 319 | "vpath.sed" |
| 319 | "Cocoa/Emacs.base/Contents/Info.plist" | 320 | "Cocoa/Emacs.base/Contents/Info.plist" |
| @@ -634,6 +635,7 @@ Changes to files in this list are not listed.") | |||
| 634 | "images/page-down.xpm" "images/widen.pbm" "images/widen.xpm" | 635 | "images/page-down.xpm" "images/widen.pbm" "images/widen.xpm" |
| 635 | "images/gnus/bar.xbm" "images/gnus/bar.xpm" | 636 | "images/gnus/bar.xbm" "images/gnus/bar.xpm" |
| 636 | "images/gnus/reverse-smile.xpm" | 637 | "images/gnus/reverse-smile.xpm" |
| 638 | "notes/commits" "notes/changelogs" | ||
| 637 | "revdiff" ; admin/ | 639 | "revdiff" ; admin/ |
| 638 | "vcdiff" "rcs-checkin" "tindex.pl" | 640 | "vcdiff" "rcs-checkin" "tindex.pl" |
| 639 | "mainmake" "sed1.inp" "sed2.inp" "sed3.inp" ; msdos/ | 641 | "mainmake" "sed1.inp" "sed2.inp" "sed3.inp" ; msdos/ |
| @@ -661,6 +663,7 @@ Changes to files in this list are not listed.") | |||
| 661 | "org-lparse.el" | 663 | "org-lparse.el" |
| 662 | "org-special-blocks.el" "org-taskjuggler.el" | 664 | "org-special-blocks.el" "org-taskjuggler.el" |
| 663 | "progmodes/cap-words.el" | 665 | "progmodes/cap-words.el" |
| 666 | "w32-common-fns.el" | ||
| 664 | ;; gnus | 667 | ;; gnus |
| 665 | "nnwfm.el" "nnlistserv.el" "nnkiboze.el" "nndb.el" "nnsoup.el" | 668 | "nnwfm.el" "nnlistserv.el" "nnkiboze.el" "nndb.el" "nnsoup.el" |
| 666 | "netrc.el" "password.el" "sasl-cram.el" "sasl-digest.el" "sasl-ntlm.el" | 669 | "netrc.el" "password.el" "sasl-cram.el" "sasl-digest.el" "sasl-ntlm.el" |
| @@ -691,7 +694,7 @@ Changes to files in this list are not listed.") | |||
| 691 | "etags-vmslib.c" "fakemail.c" "getdate.c" "getopt.h" "getopt1.c" | 694 | "etags-vmslib.c" "fakemail.c" "getdate.c" "getopt.h" "getopt1.c" |
| 692 | "getopt_.h" "getopt_int.h" "gettext.h" "leditcfns.c" "loadst.c" | 695 | "getopt_.h" "getopt_int.h" "gettext.h" "leditcfns.c" "loadst.c" |
| 693 | "make-path.c" "qsort.c" "sorted-doc.c" "tcp.c" "timer.c" "wakeup.c" | 696 | "make-path.c" "qsort.c" "sorted-doc.c" "tcp.c" "timer.c" "wakeup.c" |
| 694 | "yow.c" "grep-changelog" | 697 | "yow.c" "grep-changelog" "grep-changelog.1" |
| 695 | ;; etc/ | 698 | ;; etc/ |
| 696 | "emacsclient.c" "etags.c" "hexl.c" "make-docfile.c" "movemail.c" | 699 | "emacsclient.c" "etags.c" "hexl.c" "make-docfile.c" "movemail.c" |
| 697 | "test-distrib.c" "testfile" | 700 | "test-distrib.c" "testfile" |
| @@ -801,6 +804,7 @@ in the repository.") | |||
| 801 | ;; The one in lisp is eshell/eshell.el. | 804 | ;; The one in lisp is eshell/eshell.el. |
| 802 | ("eshell.el" . "automated/eshell.el") | 805 | ("eshell.el" . "automated/eshell.el") |
| 803 | ("eshell/esh-test.el" . "automated/eshell.el") | 806 | ("eshell/esh-test.el" . "automated/eshell.el") |
| 807 | ("automated/cl-lib.el" . "automated/cl-lib-tests.el") | ||
| 804 | ("automated/package-x-test.el" . "automated/package-test.el") | 808 | ("automated/package-x-test.el" . "automated/package-test.el") |
| 805 | ;; INSTALL-CVS -> .CVS -> .BZR -> .REPO | 809 | ;; INSTALL-CVS -> .CVS -> .BZR -> .REPO |
| 806 | ("INSTALL-CVS" . "INSTALL.REPO") | 810 | ("INSTALL-CVS" . "INSTALL.REPO") |
| @@ -867,6 +871,8 @@ in the repository.") | |||
| 867 | ("grammars/wisent-grammar.el" . "wisent/grammar.el") | 871 | ("grammars/wisent-grammar.el" . "wisent/grammar.el") |
| 868 | ;; Moved from admin/nt/ to nt/. | 872 | ;; Moved from admin/nt/ to nt/. |
| 869 | ("nt/README.W32" . "README.W32") | 873 | ("nt/README.W32" . "README.W32") |
| 874 | ("notes/BRANCH" . "notes/repo") | ||
| 875 | ("notes/bzr" . "notes/repo") | ||
| 870 | ) | 876 | ) |
| 871 | "Alist of files which have been renamed during their lifetime. | 877 | "Alist of files which have been renamed during their lifetime. |
| 872 | Elements are (OLDNAME . NEWNAME).") | 878 | Elements are (OLDNAME . NEWNAME).") |
| @@ -939,6 +945,8 @@ ediff\\|emerge\\|log-edit\\|log-view\\|pcvs\\|smerge-mode\\|vc\\)\\.el\\'" | |||
| 939 | ("comint-testsuite.el" "automated/\\&") | 945 | ("comint-testsuite.el" "automated/\\&") |
| 940 | ("\\`\\(bytecomp\\|font-parse\\|icalendar\\|occur\\|newsticker\\)\ | 946 | ("\\`\\(bytecomp\\|font-parse\\|icalendar\\|occur\\|newsticker\\)\ |
| 941 | -testsuite\\.el" "automated/\\1-tests.el") | 947 | -testsuite\\.el" "automated/\\1-tests.el") |
| 948 | ("automated/flymake/warnpred/\\(Makefile\\|test\\.\\(?:c\\|pl\\)\\)\\'" | ||
| 949 | "automated/data/flymake/\\1") | ||
| 942 | ;; NB lax rules should come last. | 950 | ;; NB lax rules should come last. |
| 943 | ("^m/m-\\(.*\\.h\\)$" "m/\\1" t) | 951 | ("^m/m-\\(.*\\.h\\)$" "m/\\1" t) |
| 944 | ("^m-\\(.*\\.h\\)$" "\\1" t) | 952 | ("^m-\\(.*\\.h\\)$" "\\1" t) |
diff --git a/admin/merge-gnulib b/admin/merge-gnulib index 64514f79bdd..84c6ebf3e27 100755 --- a/admin/merge-gnulib +++ b/admin/merge-gnulib | |||
| @@ -36,7 +36,7 @@ GNULIB_MODULES=' | |||
| 36 | manywarnings memrchr mkostemp mktime | 36 | manywarnings memrchr mkostemp mktime |
| 37 | pipe2 pselect pthread_sigmask putenv qacl readlink readlinkat | 37 | pipe2 pselect pthread_sigmask putenv qacl readlink readlinkat |
| 38 | sig2str socklen stat-time stdalign stddef stdio | 38 | sig2str socklen stat-time stdalign stddef stdio |
| 39 | strftime strtoimax strtoumax symlink sys_stat | 39 | stpcpy strftime strtoimax strtoumax symlink sys_stat |
| 40 | sys_time time time_r timer-time timespec-add timespec-sub | 40 | sys_time time time_r timer-time timespec-add timespec-sub |
| 41 | unsetenv update-copyright utimens | 41 | unsetenv update-copyright utimens |
| 42 | vla warnings | 42 | vla warnings |
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index d2f7a345566..7081c19c3f0 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-12-24 Stephen Leake <stephen_leake@stephe-leake.org> | ||
| 2 | |||
| 3 | * trouble.texi: Move user-level information from CONTRIBUTE here. | ||
| 4 | |||
| 1 | 2014-12-14 Alan Mackenzie <acm@muc.de> | 5 | 2014-12-14 Alan Mackenzie <acm@muc.de> |
| 2 | 6 | ||
| 3 | * display.texi (Scrolling): fast-but-imprecise-scrolling. | 7 | * display.texi (Scrolling): fast-but-imprecise-scrolling. |
diff --git a/doc/emacs/trouble.texi b/doc/emacs/trouble.texi index 5f3cf9223eb..13d5cbd7ec2 100644 --- a/doc/emacs/trouble.texi +++ b/doc/emacs/trouble.texi | |||
| @@ -1060,19 +1060,44 @@ but using it will take extra work. Maintaining GNU Emacs is a lot of | |||
| 1060 | work in the best of circumstances, and we can't keep up unless you do | 1060 | work in the best of circumstances, and we can't keep up unless you do |
| 1061 | your best to help. | 1061 | your best to help. |
| 1062 | 1062 | ||
| 1063 | Every patch must have several pieces of information before we | ||
| 1064 | can properly evaluate it. | ||
| 1065 | |||
| 1066 | When you have all these pieces, bundle them up in a mail message and | ||
| 1067 | send it to the developers. Sending it to | ||
| 1068 | @email{bug-gnu-emacs@@gnu.org} (which is the bug/feature list) is | ||
| 1069 | recommended, because that list is coupled to a tracking system that | ||
| 1070 | makes it easier to locate patches. If your patch is not complete and | ||
| 1071 | you think it needs more discussion, you might want to send it to | ||
| 1072 | @email{emacs-devel@@gnu@@gnu.org} instead. If you revise your patch, | ||
| 1073 | send it as a followup to the initial topic. | ||
| 1074 | |||
| 1075 | We prefer to get the patches as plain text, either inline (be careful | ||
| 1076 | your mail client does not change line breaks) or as MIME attachments. | ||
| 1077 | |||
| 1063 | @itemize @bullet | 1078 | @itemize @bullet |
| 1064 | @item | 1079 | @item |
| 1065 | Send an explanation with your changes of what problem they fix or what | 1080 | Include an explanation with your changes of what problem they fix or what |
| 1066 | improvement they bring about. For a fix for an existing bug, it is | 1081 | improvement they bring about. |
| 1082 | |||
| 1083 | @itemize | ||
| 1084 | @item | ||
| 1085 | For a fix for an existing bug, it is | ||
| 1067 | best to reply to the relevant discussion on the @samp{bug-gnu-emacs} | 1086 | best to reply to the relevant discussion on the @samp{bug-gnu-emacs} |
| 1068 | list, or the bug entry in the GNU Bug Tracker at | 1087 | list, or the bug entry in the GNU Bug Tracker at |
| 1069 | @url{http://debbugs.gnu.org}. Explain why your change fixes the bug. | 1088 | @url{http://debbugs.gnu.org}. Explain why your change fixes the bug. |
| 1070 | 1089 | ||
| 1071 | @item | 1090 | @item |
| 1072 | Always include a proper bug report for the problem you think you have | 1091 | For a new feature, include a description of the feature and your |
| 1073 | fixed. We need to convince ourselves that the change is right before | 1092 | implementation. |
| 1074 | installing it. Even if it is correct, we might have trouble | 1093 | |
| 1075 | understanding it if we don't have a way to reproduce the problem. | 1094 | @item |
| 1095 | For a new bug, include a proper bug report for the problem you think | ||
| 1096 | you have fixed. We need to convince ourselves that the change is | ||
| 1097 | right before installing it. Even if it is correct, we might have | ||
| 1098 | trouble understanding it if we don't have a way to reproduce the | ||
| 1099 | problem. | ||
| 1100 | @end itemize | ||
| 1076 | 1101 | ||
| 1077 | @item | 1102 | @item |
| 1078 | Include all the comments that are appropriate to help people reading the | 1103 | Include all the comments that are appropriate to help people reading the |
| @@ -1104,6 +1129,8 @@ right away. That gives us the option of installing it immediately if it | |||
| 1104 | is important. | 1129 | is important. |
| 1105 | 1130 | ||
| 1106 | @item | 1131 | @item |
| 1132 | The patch itself. | ||
| 1133 | |||
| 1107 | Use @samp{diff -c} to make your diffs. Diffs without context are hard | 1134 | Use @samp{diff -c} to make your diffs. Diffs without context are hard |
| 1108 | to install reliably. More than that, they are hard to study; we must | 1135 | to install reliably. More than that, they are hard to study; we must |
| 1109 | always study a patch to decide whether we want to install it. Unidiff | 1136 | always study a patch to decide whether we want to install it. Unidiff |
| @@ -1114,6 +1141,12 @@ If you have GNU diff, use @samp{diff -c -F'^[_a-zA-Z0-9$]+ *('} when | |||
| 1114 | making diffs of C code. This shows the name of the function that each | 1141 | making diffs of C code. This shows the name of the function that each |
| 1115 | change occurs in. | 1142 | change occurs in. |
| 1116 | 1143 | ||
| 1144 | If you are using the Emacs repository, make sure your copy is | ||
| 1145 | up-to-date (e.g. with @code{git pull}). You can commit your changes | ||
| 1146 | to a private branch and generate a patch from the master version by | ||
| 1147 | using @code{git format-patch master}. Or you can leave your changes | ||
| 1148 | uncommitted and use @code{git diff}. | ||
| 1149 | |||
| 1117 | @item | 1150 | @item |
| 1118 | Avoid any ambiguity as to which is the old version and which is the new. | 1151 | Avoid any ambiguity as to which is the old version and which is the new. |
| 1119 | Please make the old version the first argument to diff, and the new | 1152 | Please make the old version the first argument to diff, and the new |
| @@ -1138,8 +1171,16 @@ feel that the purpose needs explaining, it probably does---but put the | |||
| 1138 | explanation in comments in the code. It will be more useful there. | 1171 | explanation in comments in the code. It will be more useful there. |
| 1139 | 1172 | ||
| 1140 | Please look at the change log entries of recent commits to see what | 1173 | Please look at the change log entries of recent commits to see what |
| 1141 | sorts of information to put in, and to learn the style that we use. | 1174 | sorts of information to put in, and to learn the style that we use. Note that, |
| 1142 | @xref{Change Log}. | 1175 | unlike some other projects, we do require change logs for |
| 1176 | documentation, i.e. Texinfo files. | ||
| 1177 | @xref{Change Log}, | ||
| 1178 | @ifset WWW_GNU_ORG | ||
| 1179 | see | ||
| 1180 | @url{http://www.gnu.org/prep/standards/html_node/Change-Log-Concepts.html}, | ||
| 1181 | @end ifset | ||
| 1182 | @xref{Change Log Concepts, Change Log Concepts, | ||
| 1183 | Change Log Concepts, gnu-coding-standards, GNU Coding Standards}. | ||
| 1143 | 1184 | ||
| 1144 | @item | 1185 | @item |
| 1145 | When you write the fix, keep in mind that we can't install a change that | 1186 | When you write the fix, keep in mind that we can't install a change that |
| @@ -1160,11 +1201,52 @@ Please help us keep up with the workload by designing the patch in a | |||
| 1160 | form that is clearly safe to install. | 1201 | form that is clearly safe to install. |
| 1161 | @end itemize | 1202 | @end itemize |
| 1162 | 1203 | ||
| 1163 | @c FIXME: Include the node above? | ||
| 1164 | @node Contributing | 1204 | @node Contributing |
| 1165 | @section Contributing to Emacs Development | 1205 | @section Contributing to Emacs Development |
| 1166 | @cindex contributing to Emacs | 1206 | @cindex contributing to Emacs |
| 1167 | 1207 | ||
| 1208 | Emacs is a collaborative project and we encourage contributions from | ||
| 1209 | anyone and everyone. | ||
| 1210 | |||
| 1211 | There are many ways to contribute to Emacs: | ||
| 1212 | |||
| 1213 | @itemize | ||
| 1214 | @item | ||
| 1215 | find and report bugs; @xref{Bugs}. | ||
| 1216 | |||
| 1217 | @item | ||
| 1218 | answer questions on the Emacs user mailing list | ||
| 1219 | @url{https://lists.gnu.org/mailman/listinfo/help-gnu-emacs}. | ||
| 1220 | |||
| 1221 | @item | ||
| 1222 | write documentation, either on the wiki, or in the Emacs source | ||
| 1223 | repository (@pxref{Sending Patches}). | ||
| 1224 | |||
| 1225 | @item | ||
| 1226 | check if existing bug reports are fixed in newer versions of Emacs | ||
| 1227 | @url{http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs}. | ||
| 1228 | |||
| 1229 | @item | ||
| 1230 | fix existing bug reports | ||
| 1231 | @url{http://debbugs.gnu.org/cgi/pkgreport.cgi?which=pkg&data=emacs}. | ||
| 1232 | |||
| 1233 | @item | ||
| 1234 | @c etc/TODO not in WWW_GNU_ORG | ||
| 1235 | implement a feature listed in the @file{etc/TODO} file in the Emacs | ||
| 1236 | distribution, and submit a patch. | ||
| 1237 | |||
| 1238 | @item | ||
| 1239 | implement a new feature, and submit a patch. | ||
| 1240 | |||
| 1241 | @item | ||
| 1242 | develop a package that works with Emacs, and publish it on your own | ||
| 1243 | or in Gnu ELPA (@url{https://elpa.gnu.org/}). | ||
| 1244 | |||
| 1245 | @item | ||
| 1246 | port Emacs to a new platform, but that is not common nowadays. | ||
| 1247 | |||
| 1248 | @end itemize | ||
| 1249 | |||
| 1168 | If you would like to work on improving Emacs, please contact the maintainers at | 1250 | If you would like to work on improving Emacs, please contact the maintainers at |
| 1169 | @ifnothtml | 1251 | @ifnothtml |
| 1170 | @email{emacs-devel@@gnu.org}. | 1252 | @email{emacs-devel@@gnu.org}. |
| @@ -1186,24 +1268,148 @@ you have not yet started work, it is useful to contact | |||
| 1186 | before you start; it might be possible to suggest ways to make your | 1268 | before you start; it might be possible to suggest ways to make your |
| 1187 | extension fit in better with the rest of Emacs. | 1269 | extension fit in better with the rest of Emacs. |
| 1188 | 1270 | ||
| 1271 | When implementing a feature, please follow the Emacs coding standards; | ||
| 1272 | @xref{Coding Standards}. In addition, non-trivial contributions | ||
| 1273 | require a copyright assignment to the FSF; @xref{Copyright Assignment}. | ||
| 1274 | |||
| 1189 | The development version of Emacs can be downloaded from the | 1275 | The development version of Emacs can be downloaded from the |
| 1190 | repository where it is actively maintained by a group of developers. | 1276 | repository where it is actively maintained by a group of developers. |
| 1191 | See the Emacs project page | 1277 | See the Emacs project page |
| 1192 | @url{http://savannah.gnu.org/projects/emacs/} for details. | 1278 | @url{http://savannah.gnu.org/projects/emacs/} for access details. |
| 1279 | |||
| 1280 | It is important to write your patch based on the current working | ||
| 1281 | version. If you start from an older version, your patch may be | ||
| 1282 | outdated (so that maintainers will have a hard time applying it), or | ||
| 1283 | changes in Emacs may have made your patch unnecessary. After you have | ||
| 1284 | downloaded the repository source, you should read the file | ||
| 1285 | @file{INSTALL.REPO} for build instructions (they differ to some extent | ||
| 1286 | from a normal build). | ||
| 1287 | |||
| 1288 | If you would like to make more extensive contributions, see the | ||
| 1289 | @file{./CONTRIBUTE} file in the Emacs distribution for information on | ||
| 1290 | how to be an Emacs developer. | ||
| 1291 | |||
| 1292 | For documentation on Emacs (to understand how to implement your | ||
| 1293 | desired change), refer to: | ||
| 1294 | |||
| 1295 | @itemize | ||
| 1296 | @item | ||
| 1297 | @ifset WWW_GNU_ORG | ||
| 1298 | @ifhtml | ||
| 1299 | the Emacs Manual | ||
| 1300 | @url{http://www.gnu.org/software/emacs/manual/emacs.html}. | ||
| 1301 | @end ifhtml | ||
| 1302 | @ifnothtml | ||
| 1303 | @xref{Top, Emacs Manual,,emacs}. | ||
| 1304 | @end ifnothtml | ||
| 1305 | @end ifset | ||
| 1306 | @ifclear WWW_GNU_ORG | ||
| 1307 | @xref{Top, Emacs Manual,,emacs}. | ||
| 1308 | @end ifclear | ||
| 1309 | |||
| 1310 | @item | ||
| 1311 | @ifset WWW_GNU_ORG | ||
| 1312 | @ifhtml | ||
| 1313 | the Emacs Lisp Reference Manual | ||
| 1314 | @url{http://www.gnu.org/software/emacs/manual/elisp.html}. | ||
| 1315 | @end ifhtml | ||
| 1316 | @ifnothtml | ||
| 1317 | @xref{Top, Emacs Lisp Reference Manual,,elisp}. | ||
| 1318 | @end ifnothtml | ||
| 1319 | @end ifset | ||
| 1320 | @ifclear WWW_GNU_ORG | ||
| 1321 | @xref{Top, Emacs Lisp Reference Manual,,elisp}. | ||
| 1322 | @end ifclear | ||
| 1323 | |||
| 1324 | @item | ||
| 1325 | @url{http://www.gnu.org/software/emacs} | ||
| 1326 | |||
| 1327 | @item | ||
| 1328 | @url{http://www.emacswiki.org/} | ||
| 1329 | @end itemize | ||
| 1330 | |||
| 1331 | @menu | ||
| 1332 | * Coding Standards:: Gnu Emacs coding standards | ||
| 1333 | * Copyright Assignment:: assigning copyright to the FSF | ||
| 1334 | @end menu | ||
| 1193 | 1335 | ||
| 1194 | For more information on how to contribute, see the | 1336 | @node Coding Standards |
| 1337 | @subsection Coding Standards | ||
| 1338 | @cindex coding standards | ||
| 1339 | |||
| 1340 | Contributed code should follow the GNU Coding Standards | ||
| 1341 | @url{http://www.gnu.org/prep/standards/}. This may also be available | ||
| 1342 | in info on your system. | ||
| 1343 | |||
| 1344 | If it doesn't, we'll need to find someone to fix the code before we | ||
| 1345 | can use it. | ||
| 1346 | |||
| 1347 | Emacs has additional style and coding conventions: | ||
| 1348 | |||
| 1349 | @itemize | ||
| 1350 | @item | ||
| 1195 | @ifset WWW_GNU_ORG | 1351 | @ifset WWW_GNU_ORG |
| 1196 | @ifhtml | 1352 | @ifhtml |
| 1197 | @url{http://gnu.org/software/emacs/CONTRIBUTE, etc/CONTRIBUTE} | 1353 | the "Tips" Appendix in the Emacs Lisp Reference |
| 1354 | @url{http://www.gnu.org/software/emacs/manual/html_node/elisp/Tips.html}. | ||
| 1198 | @end ifhtml | 1355 | @end ifhtml |
| 1199 | @ifnothtml | 1356 | @ifnothtml |
| 1200 | @file{etc/CONTRIBUTE} | 1357 | @xref{Tips, "Tips" Appendix in the Emacs Lisp Reference, Tips |
| 1358 | Appendix, elisp, Emacs Lisp Reference}. | ||
| 1201 | @end ifnothtml | 1359 | @end ifnothtml |
| 1202 | @end ifset | 1360 | @end ifset |
| 1203 | @ifclear WWW_GNU_ORG | 1361 | @ifclear WWW_GNU_ORG |
| 1204 | @file{etc/CONTRIBUTE} | 1362 | @xref{Tips, "Tips" Appendix in the Emacs Lisp Reference, Tips |
| 1363 | Appendix, elisp, Emacs Lisp Reference}. | ||
| 1205 | @end ifclear | 1364 | @end ifclear |
| 1206 | file in the Emacs distribution. | 1365 | |
| 1366 | @item | ||
| 1367 | Avoid using @code{defadvice} or @code{eval-after-load} for Lisp code | ||
| 1368 | to be included in Emacs. | ||
| 1369 | |||
| 1370 | @item | ||
| 1371 | Remove all trailing whitespace in all source and text files. | ||
| 1372 | |||
| 1373 | @item | ||
| 1374 | Emacs has no convention on whether to use tabs in source code; please | ||
| 1375 | don't change whitespace in the files you edit. | ||
| 1376 | |||
| 1377 | @item | ||
| 1378 | Use @code{?\s} instead of @code{? } in Lisp code for a space character. | ||
| 1379 | |||
| 1380 | @end itemize | ||
| 1381 | |||
| 1382 | @node Copyright Assignment | ||
| 1383 | @subsection Copyright Assignment | ||
| 1384 | @cindex copyright assignment | ||
| 1385 | |||
| 1386 | The FSF (Free Software Foundation) is the copyright holder for GNU Emacs. | ||
| 1387 | The FSF is a nonprofit with a worldwide mission to promote computer | ||
| 1388 | user freedom and to defend the rights of all free software users. | ||
| 1389 | For general information, see the website @url{http://www.fsf.org/}. | ||
| 1390 | |||
| 1391 | Generally speaking, for non-trivial contributions to GNU Emacs we | ||
| 1392 | require that the copyright be assigned to the FSF. For the reasons | ||
| 1393 | behind this, see @url{http://www.gnu.org/licenses/why-assign.html}. | ||
| 1394 | |||
| 1395 | Copyright assignment is a simple process. Residents of some countries | ||
| 1396 | can do it entirely electronically. We can help you get started, and | ||
| 1397 | answer any questions you may have (or point you to the people with the | ||
| 1398 | answers), at the @email{emacs-devel@@gnu.org} mailing list. | ||
| 1399 | |||
| 1400 | (Please note: general discussion about why some GNU projects ask | ||
| 1401 | for a copyright assignment is off-topic for emacs-devel. | ||
| 1402 | See gnu-misc-discuss instead.) | ||
| 1403 | |||
| 1404 | A copyright disclaimer is also a possibility, but we prefer an assignment. | ||
| 1405 | Note that the disclaimer, like an assignment, involves you sending | ||
| 1406 | signed paperwork to the FSF (simply saying "this is in the public domain" | ||
| 1407 | is not enough). Also, a disclaimer cannot be applied to future work, it | ||
| 1408 | has to be repeated each time you want to send something new. | ||
| 1409 | |||
| 1410 | We can accept small changes (roughly, fewer than 15 lines) without | ||
| 1411 | an assignment. This is a cumulative limit (e.g. three separate 5 line | ||
| 1412 | patches) over all your contributions. | ||
| 1207 | 1413 | ||
| 1208 | @node Service | 1414 | @node Service |
| 1209 | @section How To Get Help with GNU Emacs | 1415 | @section How To Get Help with GNU Emacs |
| @@ -1211,8 +1417,8 @@ file in the Emacs distribution. | |||
| 1211 | @cindex help-gnu-emacs mailing list | 1417 | @cindex help-gnu-emacs mailing list |
| 1212 | @cindex gnu.emacs.help newsgroup | 1418 | @cindex gnu.emacs.help newsgroup |
| 1213 | 1419 | ||
| 1214 | If you need help installing, using or changing GNU Emacs, there are two | 1420 | If you need help installing, using or changing GNU Emacs, there are |
| 1215 | ways to find it: | 1421 | two ways to find it: |
| 1216 | 1422 | ||
| 1217 | @itemize @bullet | 1423 | @itemize @bullet |
| 1218 | @item | 1424 | @item |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 3621c563d79..2d964cf6505 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,22 @@ | |||
| 1 | 2014-12-25 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * windows.texi (Windows): Resync @menu order with @node order. | ||
| 4 | |||
| 5 | * minibuf.texi (Minibuffer Windows): Add descriptions of | ||
| 6 | `resize-mini-windows' and `max-mini-window-height'. | ||
| 7 | |||
| 8 | 2014-12-25 Glenn Morris <rgm@gnu.org> | ||
| 9 | |||
| 10 | * windows.texi (Windows): Sync @menu order with @node order. | ||
| 11 | |||
| 12 | * sequences.texi (Sequence Functions): Copyedits. | ||
| 13 | |||
| 14 | * control.texi (Pattern matching case statement): | ||
| 15 | * positions.texi (List Motion): | ||
| 16 | * streams.texi (Output Functions): | ||
| 17 | * strings.texi (Text Comparison): | ||
| 18 | * text.texi (Document Object Model): Markup fixes. | ||
| 19 | |||
| 1 | 2014-12-22 Paul Eggert <eggert@cs.ucla.edu> | 20 | 2014-12-22 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 21 | ||
| 3 | Remove obsolete references to pre-C99 builds | 22 | Remove obsolete references to pre-C99 builds |
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 5cf6368db52..ea212337c96 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi | |||
| @@ -370,9 +370,9 @@ More specifically, a Q-pattern can take the following forms: | |||
| 370 | @item (@var{qpattern1} . @var{qpattern2}) | 370 | @item (@var{qpattern1} . @var{qpattern2}) |
| 371 | This pattern matches any cons cell whose @code{car} matches @var{QPATTERN1} and | 371 | This pattern matches any cons cell whose @code{car} matches @var{QPATTERN1} and |
| 372 | whose @code{cdr} matches @var{PATTERN2}. | 372 | whose @code{cdr} matches @var{PATTERN2}. |
| 373 | @item [@var{qpattern1 qpattern2..qpatternm}] | 373 | @item [@var{qpattern1} @var{qpattern2} @dots{} @var{qpatternm}] |
| 374 | This pattern matches a vector of length @code{M} whose 0..(M-1)th | 374 | This pattern matches a vector of length @var{M} whose 0..(@var{M}-1)th |
| 375 | elements match @var{QPATTERN1}, @var{QPATTERN2}..@var{QPATTERNm}, | 375 | elements match @var{qpattern1}, @var{qpattern2} @dots{} @var{qpatternm}, |
| 376 | respectively. | 376 | respectively. |
| 377 | @item @var{atom} | 377 | @item @var{atom} |
| 378 | This pattern matches any atom @code{equal} to @var{atom}. | 378 | This pattern matches any atom @code{equal} to @var{atom}. |
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi index 1c6a74a89fd..57ae0e999b4 100644 --- a/doc/lispref/minibuf.texi +++ b/doc/lispref/minibuf.texi | |||
| @@ -2218,8 +2218,8 @@ contents of the minibuffer before the point. | |||
| 2218 | @section Minibuffer Windows | 2218 | @section Minibuffer Windows |
| 2219 | @cindex minibuffer windows | 2219 | @cindex minibuffer windows |
| 2220 | 2220 | ||
| 2221 | These functions access and select minibuffer windows | 2221 | These functions access and select minibuffer windows, test whether they |
| 2222 | and test whether they are active. | 2222 | are active and control how they get resized. |
| 2223 | 2223 | ||
| 2224 | @defun active-minibuffer-window | 2224 | @defun active-minibuffer-window |
| 2225 | This function returns the currently active minibuffer window, or | 2225 | This function returns the currently active minibuffer window, or |
| @@ -2260,6 +2260,29 @@ This function returns non-@code{nil} if @var{window} is the currently | |||
| 2260 | active minibuffer window. | 2260 | active minibuffer window. |
| 2261 | @end defun | 2261 | @end defun |
| 2262 | 2262 | ||
| 2263 | The following two options control whether minibuffer windows are resized | ||
| 2264 | automatically and how large they can get in the process. | ||
| 2265 | |||
| 2266 | @defopt resize-mini-windows | ||
| 2267 | This option specifies whether minibuffer windows are resized | ||
| 2268 | automatically. The default value is @code{grow-only}, which means that | ||
| 2269 | a minibuffer window by default expands automatically to accommodate the | ||
| 2270 | text it displays and shrinks back to one line as soon as the minibuffer | ||
| 2271 | gets empty. If the value is @code{t}, Emacs will always try to fit the | ||
| 2272 | height of a minibuffer window to the text it displays (with a minimum of | ||
| 2273 | one line). If the value is @code{nil}, a minibuffer window never | ||
| 2274 | changes size automatically. In that case the window resizing commands | ||
| 2275 | (@pxref{Resizing Windows}) can be used to adjust its height. | ||
| 2276 | @end defopt | ||
| 2277 | |||
| 2278 | @defopt max-mini-window-height | ||
| 2279 | This option provides a maximum height for resizing minibuffer windows | ||
| 2280 | automatically. A floating-point number specifies a fraction of the | ||
| 2281 | frame's height; an integer specifies the maximum number of lines. The | ||
| 2282 | default value is 0.25. | ||
| 2283 | @end defopt | ||
| 2284 | |||
| 2285 | |||
| 2263 | @node Minibuffer Contents | 2286 | @node Minibuffer Contents |
| 2264 | @section Minibuffer Contents | 2287 | @section Minibuffer Contents |
| 2265 | 2288 | ||
diff --git a/doc/lispref/positions.texi b/doc/lispref/positions.texi index e32f0ef0b34..032baa9d2e3 100644 --- a/doc/lispref/positions.texi +++ b/doc/lispref/positions.texi | |||
| @@ -654,9 +654,9 @@ quotes are ignored.) | |||
| 654 | @deffn Command up-list &optional arg escape-strings no-syntax-crossing | 654 | @deffn Command up-list &optional arg escape-strings no-syntax-crossing |
| 655 | This function moves forward out of @var{arg} (default 1) levels of | 655 | This function moves forward out of @var{arg} (default 1) levels of |
| 656 | parentheses. A negative argument means move backward but still to a | 656 | parentheses. A negative argument means move backward but still to a |
| 657 | less deep spot. If @var{escape-strings} is non-nil (as it is | 657 | less deep spot. If @var{escape-strings} is non-@code{nil} (as it is |
| 658 | interactively), move out of enclosing strings as well. If | 658 | interactively), move out of enclosing strings as well. If |
| 659 | @var{no-syntax-crossing} is non-nil (as it is interactively), prefer | 659 | @var{no-syntax-crossing} is non-@code{nil} (as it is interactively), prefer |
| 660 | to break out of any enclosing string instead of moving to the start of | 660 | to break out of any enclosing string instead of moving to the start of |
| 661 | a list broken across multiple strings. On error, location of point is | 661 | a list broken across multiple strings. On error, location of point is |
| 662 | unspecified. | 662 | unspecified. |
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index 8f8cfe72fa3..b1e315c7987 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi | |||
| @@ -217,14 +217,14 @@ y @result{} [foo (69 2)] | |||
| 217 | @end example | 217 | @end example |
| 218 | @end defun | 218 | @end defun |
| 219 | 219 | ||
| 220 | @defun reverse seq | 220 | @defun reverse sequence |
| 221 | @cindex string reverse | 221 | @cindex string reverse |
| 222 | @cindex list reverse | 222 | @cindex list reverse |
| 223 | @cindex vector reverse | 223 | @cindex vector reverse |
| 224 | @cindex sequence reverse | 224 | @cindex sequence reverse |
| 225 | This function creates a new sequence whose elements are the elements | 225 | This function creates a new sequence whose elements are the elements |
| 226 | of @var{seq}, but in reverse order. The original argument @var{seq} | 226 | of @var{sequence}, but in reverse order. The original argument @var{sequence} |
| 227 | is @emph{not} altered. Note that char-table cannot be reversed. | 227 | is @emph{not} altered. Note that char-tables cannot be reversed. |
| 228 | 228 | ||
| 229 | @example | 229 | @example |
| 230 | @group | 230 | @group |
| @@ -260,12 +260,12 @@ x | |||
| 260 | @end example | 260 | @end example |
| 261 | @end defun | 261 | @end defun |
| 262 | 262 | ||
| 263 | @defun nreverse seq | 263 | @defun nreverse sequence |
| 264 | @cindex reversing a string | 264 | @cindex reversing a string |
| 265 | @cindex reversing a list | 265 | @cindex reversing a list |
| 266 | @cindex reversing a vector | 266 | @cindex reversing a vector |
| 267 | This function reverses the order of the elements of @var{seq}. | 267 | This function reverses the order of the elements of @var{sequence}. |
| 268 | Unlike @code{reverse} the original @var{seq} may be modified. | 268 | Unlike @code{reverse} the original @var{sequence} may be modified. |
| 269 | 269 | ||
| 270 | For example: | 270 | For example: |
| 271 | 271 | ||
| @@ -421,22 +421,20 @@ useful example of @code{sort}. | |||
| 421 | 421 | ||
| 422 | @cindex sequence functions in seq | 422 | @cindex sequence functions in seq |
| 423 | @cindex seq library | 423 | @cindex seq library |
| 424 | The @file{seq} library provides the following additional sequence | 424 | The @file{seq.el} library provides the following additional sequence |
| 425 | manipulation macros and functions, prefixed with @code{seq-}. To use | 425 | manipulation macros and functions, prefixed with @code{seq-}. To use |
| 426 | them, you need to load the @file{seq} library first. | 426 | them, you must first load the @file{seq} library. |
| 427 | 427 | ||
| 428 | All functions defined in the @code{seq} library are free of | 428 | All functions defined in this library are free of side-effects; |
| 429 | side-effects, meaning that sequence(s) passed as argument(s) to | 429 | i.e., they do not modify any sequence (list, vector, or string) that |
| 430 | functions defined in @code{seq} are not modified. | 430 | you pass as an argument. Unless otherwise stated, the result is a |
| 431 | sequence of the same type as the input. For those functions that take | ||
| 432 | a predicate, this should be a function of one argument. | ||
| 431 | 433 | ||
| 432 | @defun seq-drop seq n | 434 | @defun seq-drop sequence n |
| 433 | This function returns a sequence of all but the first @var{n} | 435 | This function returns all but the first @var{n} (an integer) |
| 434 | elements of the sequence @var{seq}. | 436 | elements of @var{sequence}. If @var{n} is negative or zero, |
| 435 | 437 | the result is @var{sequence}. | |
| 436 | @var{seq} may be a list, vector or string and @var{n} must be an | ||
| 437 | integer. The result is the same type of sequence as @var{seq}. | ||
| 438 | |||
| 439 | If @var{n} is a negative integer or zero, @var{seq} is returned. | ||
| 440 | 438 | ||
| 441 | @example | 439 | @example |
| 442 | @group | 440 | @group |
| @@ -450,14 +448,10 @@ If @var{n} is a negative integer or zero, @var{seq} is returned. | |||
| 450 | @end example | 448 | @end example |
| 451 | @end defun | 449 | @end defun |
| 452 | 450 | ||
| 453 | @defun seq-take seq n | 451 | @defun seq-take sequence n |
| 454 | This function returns a sequence of the first @var{n} elements of | 452 | This function returns the first @var{n} (an integer) elements of |
| 455 | @var{seq}. | 453 | @var{sequence}. If @var{n} is negative or zero, the result |
| 456 | 454 | is @code{nil}. | |
| 457 | @var{seq} may be a list, vector or string and @var{n} must be an | ||
| 458 | integer. The result is the same type of sequence as @var{seq}. | ||
| 459 | |||
| 460 | If @var{n} is a negative integer or zero, an empty sequence is returned. | ||
| 461 | 455 | ||
| 462 | @example | 456 | @example |
| 463 | @group | 457 | @group |
| @@ -471,17 +465,9 @@ If @var{n} is a negative integer or zero, an empty sequence is returned. | |||
| 471 | @end example | 465 | @end example |
| 472 | @end defun | 466 | @end defun |
| 473 | 467 | ||
| 474 | @defun seq-take-while pred seq | 468 | @defun seq-take-while predicate sequence |
| 475 | This function returns a sub-sequence of the successive elements of | 469 | This function returns the members of @var{sequence} in order, |
| 476 | @var{seq} for which calling @code{pred} with that element returns | 470 | stopping before the first one for which @var{predicate} returns @code{nil}. |
| 477 | non-nil. | ||
| 478 | |||
| 479 | @var{pred} must be a one-argument function and @var{seq} may be a | ||
| 480 | list, vector or string. The result is the same type of sequence as | ||
| 481 | @var{seq}. | ||
| 482 | |||
| 483 | If evaluating @var{pred} with the first element of @var{seq} as argument | ||
| 484 | returns @code{nil}, an empty sequence is returned. | ||
| 485 | 471 | ||
| 486 | @example | 472 | @example |
| 487 | @group | 473 | @group |
| @@ -495,17 +481,9 @@ returns @code{nil}, an empty sequence is returned. | |||
| 495 | @end example | 481 | @end example |
| 496 | @end defun | 482 | @end defun |
| 497 | 483 | ||
| 498 | @defun seq-drop-while pred seq | 484 | @defun seq-drop-while predicate sequence |
| 499 | This function returns a sub-sequence of @var{seq} from the first | 485 | This function returns the members of @var{sequence} in order, |
| 500 | element for which calling @var{pred} with that element returns | 486 | starting from the first one for which @var{predicate} returns @code{nil}. |
| 501 | @code{nil}. | ||
| 502 | |||
| 503 | @var{pred} must be a one-argument function and @var{seq} may be a | ||
| 504 | list, vector or string. The result is the same type of sequence as | ||
| 505 | @var{seq}. | ||
| 506 | |||
| 507 | If evaluating @var{pred} with every element of @var{seq} returns | ||
| 508 | @code{nil}, @var{seq} is returned. | ||
| 509 | 487 | ||
| 510 | @example | 488 | @example |
| 511 | @group | 489 | @group |
| @@ -519,13 +497,10 @@ If evaluating @var{pred} with every element of @var{seq} returns | |||
| 519 | @end example | 497 | @end example |
| 520 | @end defun | 498 | @end defun |
| 521 | 499 | ||
| 522 | @defun seq-filter pred seq | 500 | @defun seq-filter predicate sequence |
| 523 | @cindex filtering sequences | 501 | @cindex filtering sequences |
| 524 | This function returns a list of all the elements in @var{seq} for | 502 | This function returns a list of all the elements in @var{sequence} |
| 525 | which calling @var{pred} with that element returns non-nil. | 503 | for which @var{predicate} returns non-@code{nil}. |
| 526 | |||
| 527 | @var{pred} must be a one-argument function and @var{seq} may be a | ||
| 528 | list, vector or string. | ||
| 529 | 504 | ||
| 530 | @example | 505 | @example |
| 531 | @group | 506 | @group |
| @@ -539,13 +514,10 @@ list, vector or string. | |||
| 539 | @end example | 514 | @end example |
| 540 | @end defun | 515 | @end defun |
| 541 | 516 | ||
| 542 | @defun seq-remove pred seq | 517 | @defun seq-remove predicate sequence |
| 543 | @cindex removing from sequences | 518 | @cindex removing from sequences |
| 544 | This function returns a list of all the elements in @var{seq} for | 519 | This function returns a list of all the elements in @var{sequence} |
| 545 | which calling @var{pred} with that element returns @code{nil}. | 520 | for which @var{predicate} returns @code{nil}. |
| 546 | |||
| 547 | @var{pred} must be a one-argument function and @var{seq} may be a | ||
| 548 | list, vector or string. | ||
| 549 | 521 | ||
| 550 | @example | 522 | @example |
| 551 | @group | 523 | @group |
| @@ -559,18 +531,15 @@ list, vector or string. | |||
| 559 | @end example | 531 | @end example |
| 560 | @end defun | 532 | @end defun |
| 561 | 533 | ||
| 562 | @defun seq-reduce function seq initial-value | 534 | @defun seq-reduce function sequence initial-value |
| 563 | @cindex reducing sequences | 535 | @cindex reducing sequences |
| 564 | This function returns the result of calling @var{function} with | 536 | This function returns the result of calling @var{function} with |
| 565 | @var{initial-value} and the first element of @var{seq}, then calling | 537 | @var{initial-value} and the first element of @var{sequence}, then calling |
| 566 | @var{function} with that result and the second element of @var{seq}, | 538 | @var{function} with that result and the second element of @var{sequence}, |
| 567 | then with that result and the third element of @var{seq}, etc. | 539 | then with that result and the third element of @var{sequence}, etc. |
| 568 | 540 | @var{function} should be a function of two arguments. If | |
| 569 | @var{function} must be a two-arguments function and @var{seq} may be a | 541 | @var{sequence} is empty, this returns @var{initial-value} without |
| 570 | list, vector or string. | 542 | calling @var{function}. |
| 571 | |||
| 572 | If @var{seq} is empty, @var{initial-value} is returned and | ||
| 573 | @var{function} is not called. | ||
| 574 | 543 | ||
| 575 | @example | 544 | @example |
| 576 | @group | 545 | @group |
| @@ -588,14 +557,9 @@ If @var{seq} is empty, @var{initial-value} is returned and | |||
| 588 | @end example | 557 | @end example |
| 589 | @end defun | 558 | @end defun |
| 590 | 559 | ||
| 591 | @defun seq-some-p pred seq | 560 | @defun seq-some-p predicate sequence |
| 592 | This function returns any element in @var{seq} for which calling | 561 | This function returns the first member of sequence for which @var{predicate} |
| 593 | @var{pred} with that element returns non-nil. If successively calling | 562 | returns non-@code{nil}. |
| 594 | @var{pred} with each element of @var{seq} always returns @code{nil}, | ||
| 595 | @code{nil} is returned. | ||
| 596 | |||
| 597 | @var{pred} must be a one-argument function and @var{seq} may be a | ||
| 598 | list, vector or string. | ||
| 599 | 563 | ||
| 600 | @example | 564 | @example |
| 601 | @group | 565 | @group |
| @@ -609,12 +573,9 @@ list, vector or string. | |||
| 609 | @end example | 573 | @end example |
| 610 | @end defun | 574 | @end defun |
| 611 | 575 | ||
| 612 | @defun seq-every-p pred seq | 576 | @defun seq-every-p predicate sequence |
| 613 | This function returns non-nil if successively calling @var{pred} with | 577 | This function returns non-@code{nil} if applying @var{predicate} |
| 614 | each element of @var{seq} always returns non-nil, @code{nil} otherwise. | 578 | to every element of @var{sequence} returns non-@code{nil}. |
| 615 | |||
| 616 | @var{pred} must be a one-argument function and @var{seq} may be a | ||
| 617 | list, vector or string. | ||
| 618 | 579 | ||
| 619 | @example | 580 | @example |
| 620 | @group | 581 | @group |
| @@ -628,11 +589,8 @@ list, vector or string. | |||
| 628 | @end example | 589 | @end example |
| 629 | @end defun | 590 | @end defun |
| 630 | 591 | ||
| 631 | @defun seq-empty-p seq | 592 | @defun seq-empty-p sequence |
| 632 | This function returns non-nil if the sequence @var{seq} is empty, | 593 | This function returns non-@code{nil} if @var{sequence} is empty. |
| 633 | @code{nil} otherwise. | ||
| 634 | |||
| 635 | @var{seq} may be a list, vector or string. | ||
| 636 | 594 | ||
| 637 | @example | 595 | @example |
| 638 | @group | 596 | @group |
| @@ -646,12 +604,9 @@ list, vector or string. | |||
| 646 | @end example | 604 | @end example |
| 647 | @end defun | 605 | @end defun |
| 648 | 606 | ||
| 649 | @defun seq-count pred seq | 607 | @defun seq-count predicate sequence |
| 650 | This function returns the number of elements in @var{seq} for which | 608 | This function returns the number of elements in @var{sequence} for which |
| 651 | calling @var{pred} with that element returns non-nil. | 609 | @var{predicate} returns non-@code{nil}. |
| 652 | |||
| 653 | @var{pred} must be a one-argument function and @var{seq} may be a | ||
| 654 | list, vector or string. | ||
| 655 | 610 | ||
| 656 | @example | 611 | @example |
| 657 | (seq-count (lambda (elt) (> elt 0)) [-1 2 0 3 -2]) | 612 | (seq-count (lambda (elt) (> elt 0)) [-1 2 0 3 -2]) |
| @@ -659,27 +614,17 @@ list, vector or string. | |||
| 659 | @end example | 614 | @end example |
| 660 | @end defun | 615 | @end defun |
| 661 | 616 | ||
| 662 | @defun seq-sort pred seq | ||
| 663 | This function returns a sorted sequence of the elements of | ||
| 664 | @var{seq}, comparing its elements with @var{pred}. Called with two | ||
| 665 | elements of @var{seq}, @var{pred} should return non-nil if the first | ||
| 666 | element should sort before the second. | ||
| 667 | |||
| 668 | @var{pred} must be a two-arguments function, @var{seq} may be a list, | ||
| 669 | vector or string. | ||
| 670 | |||
| 671 | The result is a sequence of the same type as SEQ. | ||
| 672 | @cindex sorting sequences | 617 | @cindex sorting sequences |
| 618 | @defun seq-sort function sequence | ||
| 619 | This function returns a copy of @var{sequence} that is sorted | ||
| 620 | according to @var{function}, a function of two arguments that returns | ||
| 621 | non-@code{nil} if the first argument should sort before the second. | ||
| 673 | @end defun | 622 | @end defun |
| 674 | 623 | ||
| 675 | @defun seq-contains-p seq elt testfn | 624 | @defun seq-contains-p sequence elt &optional function |
| 676 | This function returns the first element in @var{seq} that equals to | 625 | This function returns the first element in @var{sequence} that is equal to |
| 677 | @var{elt}. | 626 | @var{elt}. If the optional argument @var{function} is non-@code{nil}, |
| 678 | 627 | it is a function of two arguments to use instead of the default @code{equal}. | |
| 679 | Equality is defined by @var{testfn} if non-nil or by @code{equal} if | ||
| 680 | @code{nil}. | ||
| 681 | |||
| 682 | @var{seq} may be a list, vector or string. | ||
| 683 | 628 | ||
| 684 | @example | 629 | @example |
| 685 | @group | 630 | @group |
| @@ -694,13 +639,10 @@ Equality is defined by @var{testfn} if non-nil or by @code{equal} if | |||
| 694 | 639 | ||
| 695 | @end defun | 640 | @end defun |
| 696 | 641 | ||
| 697 | @defun seq-uniq seq testfn | 642 | @defun seq-uniq sequence &optional function |
| 698 | This function returns a list of the elements of @var{seq} with | 643 | This function returns a list of the elements of @var{sequence} with |
| 699 | duplicates removed. @var{testfn} is used to compare elements, or | 644 | duplicates removed. If the optional argument @var{function} is non-@code{nil}, |
| 700 | @code{equal} if @var{testfn} is @code{nil}. | 645 | it is a function of two arguments to use instead of the default @code{equal}. |
| 701 | |||
| 702 | @var{testfn} must be a two-argument function or @code{nil} and | ||
| 703 | @var{seq} may be a list, vector or string. | ||
| 704 | 646 | ||
| 705 | @example | 647 | @example |
| 706 | @group | 648 | @group |
| @@ -714,14 +656,11 @@ duplicates removed. @var{testfn} is used to compare elements, or | |||
| 714 | @end example | 656 | @end example |
| 715 | @end defun | 657 | @end defun |
| 716 | 658 | ||
| 717 | @defun seq-subseq seq start &optional end | 659 | @defun seq-subseq sequence start &optional end |
| 718 | This function returns a sub-sequence of @var{seq} from @var{start} | 660 | This function returns a subset of @var{sequence} from @var{start} |
| 719 | to @var{end}. If @var{end} is omitted, it default to the length of | 661 | to @var{end}, both integers (@var{end} defaults to the last element). |
| 720 | @var{seq}. If @var{start} or @var{end} is negative, it counts from | 662 | If @var{start} or @var{end} is negative, it counts from the end of |
| 721 | the end of @var{seq}. | 663 | @var{sequence}. |
| 722 | |||
| 723 | @var{seq} may be a list, vector or string. | ||
| 724 | The result is the same type of sequence as @var{seq}. | ||
| 725 | 664 | ||
| 726 | @example | 665 | @example |
| 727 | @group | 666 | @group |
| @@ -739,11 +678,10 @@ The result is the same type of sequence as @var{seq}. | |||
| 739 | @end example | 678 | @end example |
| 740 | @end defun | 679 | @end defun |
| 741 | 680 | ||
| 742 | @defun seq-concatenate type &rest seqs | 681 | @defun seq-concatenate type &rest sequences |
| 743 | This function returns a sequence made of the concatenation of | 682 | This function returns a sequence of type @var{type} made of the |
| 744 | @var{seqs}. The result is a sequence of type @var{type}. @var{type} | 683 | concatenation of @var{sequences}. @var{type} may be: @code{vector}, |
| 745 | may be one of the following symbols: @code{vector}, @code{list} or | 684 | @code{list} or @code{string}. |
| 746 | @code{string}. | ||
| 747 | 685 | ||
| 748 | @example | 686 | @example |
| 749 | @group | 687 | @group |
| @@ -757,26 +695,11 @@ may be one of the following symbols: @code{vector}, @code{list} or | |||
| 757 | @end example | 695 | @end example |
| 758 | @end defun | 696 | @end defun |
| 759 | 697 | ||
| 760 | @defmac seq-doseq (var seq [result]) body@dots{} | 698 | @defmac seq-doseq (var sequence [result]) body@dots{} |
| 761 | @cindex sequence iteration | 699 | @cindex sequence iteration |
| 762 | This macro is like @code{dolist}, except that @var{seq} can be a list, | 700 | This macro is like @code{dolist}, except that @var{sequence} can be a list, |
| 763 | vector or string (@pxref{Iteration} for more information about the | 701 | vector or string (@pxref{Iteration} for more information about the |
| 764 | @code{dolist} macro). | 702 | @code{dolist} macro). This is primarily useful for side-effects. |
| 765 | |||
| 766 | @var{seq-doseq} is primarily useful for side-effects. | ||
| 767 | |||
| 768 | @example | ||
| 769 | (seq-doseq (elt [1 2 3]) | ||
| 770 | (print (* 2 elt))) | ||
| 771 | @print{} | ||
| 772 | @print{} 2 | ||
| 773 | @print{} | ||
| 774 | @print{} 4 | ||
| 775 | @print{} | ||
| 776 | @print{} 6 | ||
| 777 | @result{} nil | ||
| 778 | |||
| 779 | @end example | ||
| 780 | @end defmac | 703 | @end defmac |
| 781 | 704 | ||
| 782 | @node Arrays | 705 | @node Arrays |
diff --git a/doc/lispref/streams.texi b/doc/lispref/streams.texi index c287b617713..b12adcf3dcf 100644 --- a/doc/lispref/streams.texi +++ b/doc/lispref/streams.texi | |||
| @@ -618,7 +618,7 @@ spacing between calls. | |||
| 618 | @defun terpri &optional stream ensure | 618 | @defun terpri &optional stream ensure |
| 619 | @cindex newline in print | 619 | @cindex newline in print |
| 620 | This function outputs a newline to @var{stream}. The name stands for | 620 | This function outputs a newline to @var{stream}. The name stands for |
| 621 | ``terminate print''. If @var{ensure} is non-nil no newline is printed | 621 | ``terminate print''. If @var{ensure} is non-@code{nil} no newline is printed |
| 622 | if @var{stream} is already at the beginning of a line. Note in this | 622 | if @var{stream} is already at the beginning of a line. Note in this |
| 623 | case @var{stream} can not be a function and an error is signalled if | 623 | case @var{stream} can not be a function and an error is signalled if |
| 624 | it is. This function returns @code{t} if a newline is printed. | 624 | it is. This function returns @code{t} if a newline is printed. |
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi index 5e0148b75a9..1ecc5671a90 100644 --- a/doc/lispref/strings.texi +++ b/doc/lispref/strings.texi | |||
| @@ -483,17 +483,17 @@ dependent; a @var{locale} "en_US.UTF-8" is applicable on POSIX | |||
| 483 | systems, while it would be, e.g., "enu_USA.1252" on MS-Windows | 483 | systems, while it would be, e.g., "enu_USA.1252" on MS-Windows |
| 484 | systems. | 484 | systems. |
| 485 | 485 | ||
| 486 | If @var{IGNORE-CASE} is non-nil, characters are converted to lower-case | 486 | If @var{ignore-case} is non-@code{nil}, characters are converted to lower-case |
| 487 | before comparing them. | 487 | before comparing them. |
| 488 | 488 | ||
| 489 | To emulate Unicode-compliant collation on MS-Windows systems, | 489 | To emulate Unicode-compliant collation on MS-Windows systems, |
| 490 | bind @code{w32-collate-ignore-punctuation} to a non-nil value, since | 490 | bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since |
| 491 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. | 491 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. |
| 492 | 492 | ||
| 493 | If your system does not support a locale environment, this function | 493 | If your system does not support a locale environment, this function |
| 494 | behaves like @code{string-equal}. | 494 | behaves like @code{string-equal}. |
| 495 | 495 | ||
| 496 | Do NOT use this function to compare file names for equality, only | 496 | Do @emph{not} use this function to compare file names for equality, only |
| 497 | for sorting them. | 497 | for sorting them. |
| 498 | @end defun | 498 | @end defun |
| 499 | 499 | ||
| @@ -602,11 +602,11 @@ behave like @code{string-lessp}: | |||
| 602 | @end group | 602 | @end group |
| 603 | @end example | 603 | @end example |
| 604 | 604 | ||
| 605 | If @var{IGNORE-CASE} is non-nil, characters are converted to lower-case | 605 | If @var{ignore-case} is non-@code{nil}, characters are converted to lower-case |
| 606 | before comparing them. | 606 | before comparing them. |
| 607 | 607 | ||
| 608 | To emulate Unicode-compliant collation on MS-Windows systems, | 608 | To emulate Unicode-compliant collation on MS-Windows systems, |
| 609 | bind @code{w32-collate-ignore-punctuation} to a non-nil value, since | 609 | bind @code{w32-collate-ignore-punctuation} to a non-@code{nil} value, since |
| 610 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. | 610 | the codeset part of the locale cannot be "UTF-8" on MS-Windows. |
| 611 | 611 | ||
| 612 | If your system does not support a locale environment, this function | 612 | If your system does not support a locale environment, this function |
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index 3ef565b8f30..06d1381278c 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi | |||
| @@ -4467,7 +4467,7 @@ Append @var{child} as the last child of @var{node}. | |||
| 4467 | 4467 | ||
| 4468 | @item dom-add-child-before @var{node} @var{child} @var{before} | 4468 | @item dom-add-child-before @var{node} @var{child} @var{before} |
| 4469 | Add @var{child} to @var{node}'s child list before the @var{before} | 4469 | Add @var{child} to @var{node}'s child list before the @var{before} |
| 4470 | node. If @var{before} is nil, make @var{child} the first child. | 4470 | node. If @var{before} is @code{nil}, make @var{child} the first child. |
| 4471 | 4471 | ||
| 4472 | @item dom-set-attributes @var{node} @var{attributes} | 4472 | @item dom-set-attributes @var{node} @var{attributes} |
| 4473 | Replace all the attributes of the node with a new key/value list. | 4473 | Replace all the attributes of the node with a new key/value list. |
diff --git a/doc/lispref/windows.texi b/doc/lispref/windows.texi index c54eb900da1..7c8d0b084b5 100644 --- a/doc/lispref/windows.texi +++ b/doc/lispref/windows.texi | |||
| @@ -907,6 +907,98 @@ window. | |||
| 907 | @end deffn | 907 | @end deffn |
| 908 | 908 | ||
| 909 | 909 | ||
| 910 | @node Preserving Window Sizes | ||
| 911 | @section Preserving Window Sizes | ||
| 912 | @cindex preserving window sizes | ||
| 913 | |||
| 914 | A window can get resized explicitly by using one of the functions from | ||
| 915 | the preceding section or implicitly, for example, when resizing an | ||
| 916 | adjacent window, when splitting or deleting a window (@pxref{Splitting | ||
| 917 | Windows}, @pxref{Deleting Windows}) or when resizing the window's frame | ||
| 918 | (@pxref{Size and Position}). | ||
| 919 | |||
| 920 | It is possible to avoid implicit resizing of a specific window when | ||
| 921 | there are one or more other resizable windows on the same frame. For | ||
| 922 | this purpose, Emacs must be advised to @dfn{preserve} the size of that | ||
| 923 | window. There are two basic ways to do that. | ||
| 924 | |||
| 925 | @defvar window-size-fixed | ||
| 926 | If this buffer-local variable is non-@code{nil}, the size of any window | ||
| 927 | displaying the buffer cannot normally be changed. Deleting a window or | ||
| 928 | changing the frame's size may still change the window's size, if there | ||
| 929 | is no choice. | ||
| 930 | |||
| 931 | If the value is @code{height}, then only the window's height is fixed; | ||
| 932 | if the value is @code{width}, then only the window's width is fixed. | ||
| 933 | Any other non-@code{nil} value fixes both the width and the height. | ||
| 934 | |||
| 935 | If this variable is @code{nil}, this does not necessarily mean that any | ||
| 936 | window showing the buffer can be resized in the desired direction. To | ||
| 937 | determine that, use the function @code{window-resizable}. | ||
| 938 | @xref{Resizing Windows}. | ||
| 939 | @end defvar | ||
| 940 | |||
| 941 | Often @code{window-size-fixed} is overly aggressive because it inhibits | ||
| 942 | any attempt to explicitly resize or split an affected window as well. | ||
| 943 | This may even happen after the window has been resized implicitly, for | ||
| 944 | example, when deleting an adjacent window or resizing the window's | ||
| 945 | frame. The following function tries hard to never disallow resizing | ||
| 946 | such a window explicitly: | ||
| 947 | |||
| 948 | @defun window-preserve-size &optional window horizontal preserve | ||
| 949 | This function (un-)marks the height of window @var{window} as preserved | ||
| 950 | for future resize operations. @var{window} must be a live window and | ||
| 951 | defaults to the selected one. If the optional argument @var{horizontal} | ||
| 952 | is non-@code{nil}, it (un-)marks the width of @var{window} as preserved. | ||
| 953 | |||
| 954 | If the optional argument @var{preserve} is @code{t}, this means to | ||
| 955 | preserve the current height/width of @var{window}'s body. The | ||
| 956 | height/width of @var{window} will change only if Emacs has no better | ||
| 957 | choice. Resizing a window whose height/width is preserved by this | ||
| 958 | function never throws an error. | ||
| 959 | |||
| 960 | If @var{preserve} is @code{nil}, this means to stop preserving the | ||
| 961 | height/width of @var{window}, lifting any respective restraint induced | ||
| 962 | by a previous call of this function for @var{window}. Calling | ||
| 963 | @code{enlarge-window}, @code{shrink-window} or | ||
| 964 | @code{fit-window-to-buffer} with @var{window} as argument may also | ||
| 965 | remove the respective restraint. | ||
| 966 | @end defun | ||
| 967 | |||
| 968 | @code{window-preserve-size} is currently invoked by the following | ||
| 969 | functions: | ||
| 970 | |||
| 971 | @table @code | ||
| 972 | @item fit-window-to-buffer | ||
| 973 | If the optional argument @var{preserve-size} of that function | ||
| 974 | (@pxref{Resizing Windows}) is non-@code{nil}, the size established by | ||
| 975 | that function is preserved. | ||
| 976 | |||
| 977 | @item display-buffer | ||
| 978 | If the @var{alist} argument of that function (@pxref{Choosing Window}) | ||
| 979 | contains a @code{preserve-size} entry, the size of the window produced | ||
| 980 | by that function is preserved. | ||
| 981 | @end table | ||
| 982 | |||
| 983 | @code{window-preserve-size} installs a window parameter (@pxref{Window | ||
| 984 | Parameters}) called @code{preserved-size} which is consulted by the | ||
| 985 | window resizing functions. This parameter will not prevent resizing the | ||
| 986 | window when the window shows another buffer than the one when | ||
| 987 | @code{window-preserve-size} was invoked or if its size has changed since | ||
| 988 | then. | ||
| 989 | |||
| 990 | The following function can be used to check whether the height of a | ||
| 991 | particular window is preserved: | ||
| 992 | |||
| 993 | @defun window-preserved-size &optional window horizontal | ||
| 994 | This function returns the preserved height of window @var{window} in | ||
| 995 | pixels. @var{window} must be a live window and defaults to the selected | ||
| 996 | one. If the optional argument @var{horizontal} is non-@code{nil}, it | ||
| 997 | returns the preserved width of @var{window}. It returns @code{nil} if | ||
| 998 | the size of @var{window} is not preserved. | ||
| 999 | @end defun | ||
| 1000 | |||
| 1001 | |||
| 910 | @node Splitting Windows | 1002 | @node Splitting Windows |
| 911 | @section Splitting Windows | 1003 | @section Splitting Windows |
| 912 | @cindex splitting windows | 1004 | @cindex splitting windows |
| @@ -1068,98 +1160,6 @@ function. | |||
| 1068 | @end defopt | 1160 | @end defopt |
| 1069 | 1161 | ||
| 1070 | 1162 | ||
| 1071 | @node Preserving Window Sizes | ||
| 1072 | @section Preserving Window Sizes | ||
| 1073 | @cindex preserving window sizes | ||
| 1074 | |||
| 1075 | A window can get resized explicitly by using one of the functions from | ||
| 1076 | the preceding section or implicitly, for example, when resizing an | ||
| 1077 | adjacent window, when splitting or deleting a window (@pxref{Splitting | ||
| 1078 | Windows}, @pxref{Deleting Windows}) or when resizing the window's frame | ||
| 1079 | (@pxref{Size and Position}). | ||
| 1080 | |||
| 1081 | It is possible to avoid implicit resizing of a specific window when | ||
| 1082 | there are one or more other resizable windows on the same frame. For | ||
| 1083 | this purpose, Emacs must be advised to @dfn{preserve} the size of that | ||
| 1084 | window. There are two basic ways to do that. | ||
| 1085 | |||
| 1086 | @defvar window-size-fixed | ||
| 1087 | If this buffer-local variable is non-@code{nil}, the size of any window | ||
| 1088 | displaying the buffer cannot normally be changed. Deleting a window or | ||
| 1089 | changing the frame's size may still change the window's size, if there | ||
| 1090 | is no choice. | ||
| 1091 | |||
| 1092 | If the value is @code{height}, then only the window's height is fixed; | ||
| 1093 | if the value is @code{width}, then only the window's width is fixed. | ||
| 1094 | Any other non-@code{nil} value fixes both the width and the height. | ||
| 1095 | |||
| 1096 | If this variable is @code{nil}, this does not necessarily mean that any | ||
| 1097 | window showing the buffer can be resized in the desired direction. To | ||
| 1098 | determine that, use the function @code{window-resizable}. | ||
| 1099 | @xref{Resizing Windows}. | ||
| 1100 | @end defvar | ||
| 1101 | |||
| 1102 | Often @code{window-size-fixed} is overly aggressive because it inhibits | ||
| 1103 | any attempt to explicitly resize or split an affected window as well. | ||
| 1104 | This may even happen after the window has been resized implicitly, for | ||
| 1105 | example, when deleting an adjacent window or resizing the window's | ||
| 1106 | frame. The following function tries hard to never disallow resizing | ||
| 1107 | such a window explicitly: | ||
| 1108 | |||
| 1109 | @defun window-preserve-size &optional window horizontal preserve | ||
| 1110 | This function (un-)marks the height of window @var{window} as preserved | ||
| 1111 | for future resize operations. @var{window} must be a live window and | ||
| 1112 | defaults to the selected one. If the optional argument @var{horizontal} | ||
| 1113 | is non-@code{nil}, it (un-)marks the width of @var{window} as preserved. | ||
| 1114 | |||
| 1115 | If the optional argument @var{preserve} is @code{t}, this means to | ||
| 1116 | preserve the current height/width of @var{window}'s body. The | ||
| 1117 | height/width of @var{window} will change only if Emacs has no better | ||
| 1118 | choice. Resizing a window whose height/width is preserved by this | ||
| 1119 | function never throws an error. | ||
| 1120 | |||
| 1121 | If @var{preserve} is @code{nil}, this means to stop preserving the | ||
| 1122 | height/width of @var{window}, lifting any respective restraint induced | ||
| 1123 | by a previous call of this function for @var{window}. Calling | ||
| 1124 | @code{enlarge-window}, @code{shrink-window} or | ||
| 1125 | @code{fit-window-to-buffer} with @var{window} as argument may also | ||
| 1126 | remove the respective restraint. | ||
| 1127 | @end defun | ||
| 1128 | |||
| 1129 | @code{window-preserve-size} is currently invoked by the following | ||
| 1130 | functions: | ||
| 1131 | |||
| 1132 | @table @code | ||
| 1133 | @item fit-window-to-buffer | ||
| 1134 | If the optional argument @var{preserve-size} of that function | ||
| 1135 | (@pxref{Resizing Windows}) is non-@code{nil}, the size established by | ||
| 1136 | that function is preserved. | ||
| 1137 | |||
| 1138 | @item display-buffer | ||
| 1139 | If the @var{alist} argument of that function (@pxref{Choosing Window}) | ||
| 1140 | contains a @code{preserve-size} entry, the size of the window produced | ||
| 1141 | by that function is preserved. | ||
| 1142 | @end table | ||
| 1143 | |||
| 1144 | @code{window-preserve-size} installs a window parameter (@pxref{Window | ||
| 1145 | Parameters}) called @code{preserved-size} which is consulted by the | ||
| 1146 | window resizing functions. This parameter will not prevent resizing the | ||
| 1147 | window when the window shows another buffer than the one when | ||
| 1148 | @code{window-preserve-size} was invoked or if its size has changed since | ||
| 1149 | then. | ||
| 1150 | |||
| 1151 | The following function can be used to check whether the height of a | ||
| 1152 | particular window is preserved: | ||
| 1153 | |||
| 1154 | @defun window-preserved-size &optional window horizontal | ||
| 1155 | This function returns the preserved height of window @var{window} in | ||
| 1156 | pixels. @var{window} must be a live window and defaults to the selected | ||
| 1157 | one. If the optional argument @var{horizontal} is non-@code{nil}, it | ||
| 1158 | returns the preserved width of @var{window}. It returns @code{nil} if | ||
| 1159 | the size of @var{window} is not preserved. | ||
| 1160 | @end defun | ||
| 1161 | |||
| 1162 | |||
| 1163 | @node Deleting Windows | 1163 | @node Deleting Windows |
| 1164 | @section Deleting Windows | 1164 | @section Deleting Windows |
| 1165 | @cindex deleting windows | 1165 | @cindex deleting windows |
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index cd8b7f34ee6..95e6a1c08b4 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -107,11 +107,11 @@ | |||
| 107 | 107 | ||
| 108 | 2014-10-26 Eric S. Raymond <esr@thyrsus.com> | 108 | 2014-10-26 Eric S. Raymond <esr@thyrsus.com> |
| 109 | 109 | ||
| 110 | * efaq-w32.texi: Neutralized language specific to a repository type. | 110 | * efaq-w32.texi: Neutralize language specific to a repository type. |
| 111 | 111 | ||
| 112 | 2014-10-25 Eric S. Raymond <esr@thyrsus.com> | 112 | 2014-10-25 Eric S. Raymond <esr@thyrsus.com> |
| 113 | 113 | ||
| 114 | * gnus-coding.txt: Neutralized language specific to a repository type. | 114 | * gnus-coding.texi: Neutralize language specific to a repository type. |
| 115 | 115 | ||
| 116 | 2014-10-20 Glenn Morris <rgm@gnu.org> | 116 | 2014-10-20 Glenn Morris <rgm@gnu.org> |
| 117 | 117 | ||
diff --git a/etc/ChangeLog b/etc/ChangeLog index 10ebff117da..814b94dde08 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2014-12-25 Karl Fogel <kfogel@red-bean.com> | ||
| 2 | |||
| 3 | * NEWS: Mention new buffer display behavior for `shell'. | ||
| 4 | This follows up to Sam Steingold's change of 2014-12-23 | ||
| 5 | in ../lisp/shell.el, in git commit e55a467ec0f758c311d3. | ||
| 6 | |||
| 1 | 2014-12-15 Artur Malabarba <bruce.connor.am@gmail.com> | 7 | 2014-12-15 Artur Malabarba <bruce.connor.am@gmail.com> |
| 2 | 8 | ||
| 3 | * NEWS: Mention `let-alist. | 9 | * NEWS: Mention `let-alist. |
| @@ -187,6 +187,14 @@ Unicode standards. | |||
| 187 | 187 | ||
| 188 | 188 | ||
| 189 | * Changes in Specialized Modes and Packages in Emacs 25.1 | 189 | * Changes in Specialized Modes and Packages in Emacs 25.1 |
| 190 | ** Shell | ||
| 191 | |||
| 192 | When you invoke `shell' interactively, the *shell* buffer will now | ||
| 193 | display in a new window. However, you can customize this behavior via | ||
| 194 | the new `shell-display-buffer-actions' variable. For example, to get | ||
| 195 | the old behavior -- *shell* buffer displays in current window -- use | ||
| 196 | (setq shell-display-buffer-actions '(display-buffer-same-window)). | ||
| 197 | |||
| 190 | ** ido | 198 | ** ido |
| 191 | *** New command `ido-bury-buffer-at-head' bound to C-S-b | 199 | *** New command `ido-bury-buffer-at-head' bound to C-S-b |
| 192 | Bury the buffer at the head of `ido-matches', analogous to how C-k | 200 | Bury the buffer at the head of `ido-matches', analogous to how C-k |
| @@ -426,6 +434,25 @@ By default, 32 spaces and four TABs are considered to be too much but | |||
| 426 | `tildify-ignored-environments-alist' variables (as well as a few | 434 | `tildify-ignored-environments-alist' variables (as well as a few |
| 427 | helper functions) obsolete. | 435 | helper functions) obsolete. |
| 428 | 436 | ||
| 437 | ** xref | ||
| 438 | The new package provides generic framework and new commands to find | ||
| 439 | and move to definitions, as well as pop back to the original location. | ||
| 440 | |||
| 441 | *** New key bindings | ||
| 442 | `xref-find-definitions' replaces `find-tag' and provides an interface | ||
| 443 | to pick one destination among several. Hence, `tags-loop-continue' is | ||
| 444 | unbound. `xref-pop-marker-stack' replaces `pop-tag-mark', but uses an | ||
| 445 | easier binding, which is now unoccupied (`M-,'). | ||
| 446 | `xref-find-definitions-other-window' replaces `find-tag-other-window'. | ||
| 447 | `xref-find-definitions-other-frame' replaces `find-tag-other-frame'. | ||
| 448 | `xref-find-apropos' replaces `find-tag-regexp'. | ||
| 449 | |||
| 450 | *** New variables | ||
| 451 | `find-tag-marker-ring-length' is now an obsolete alias for | ||
| 452 | `xref-marker-ring-length'. `find-tag-marker-ring' is now an obsolete | ||
| 453 | alias for a private variable. `xref-push-marker-stack' and | ||
| 454 | `xref-pop-marker-stack' should be used to mutate it instead. | ||
| 455 | |||
| 429 | ** Obsolete packages | 456 | ** Obsolete packages |
| 430 | 457 | ||
| 431 | --- | 458 | --- |
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 9b6c0daf210..600cc67c2ff 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * etags.c (analyze_regex): Rename from analyse_regex. | ||
| 4 | |||
| 1 | 2014-12-14 Glenn Morris <rgm@gnu.org> | 5 | 2014-12-14 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * grep-changelog: Remove file. | 7 | * grep-changelog: Remove file. |
diff --git a/lib-src/ebrowse.c b/lib-src/ebrowse.c index 29a88e85f02..b7431593c3e 100644 --- a/lib-src/ebrowse.c +++ b/lib-src/ebrowse.c | |||
| @@ -1150,19 +1150,19 @@ sym_scope_1 (struct sym *p) | |||
| 1150 | if (*scope_buffer) | 1150 | if (*scope_buffer) |
| 1151 | { | 1151 | { |
| 1152 | ensure_scope_buffer_room (3); | 1152 | ensure_scope_buffer_room (3); |
| 1153 | strcat (scope_buffer, "::"); | 1153 | strcpy (scope_buffer + scope_buffer_len, "::"); |
| 1154 | scope_buffer_len += 2; | 1154 | scope_buffer_len += 2; |
| 1155 | } | 1155 | } |
| 1156 | 1156 | ||
| 1157 | len = strlen (p->name); | 1157 | len = strlen (p->name); |
| 1158 | ensure_scope_buffer_room (len + 1); | 1158 | ensure_scope_buffer_room (len + 1); |
| 1159 | strcat (scope_buffer, p->name); | 1159 | strcpy (scope_buffer + scope_buffer_len, p->name); |
| 1160 | scope_buffer_len += len; | 1160 | scope_buffer_len += len; |
| 1161 | 1161 | ||
| 1162 | if (HAS_FLAG (p->flags, F_TEMPLATE)) | 1162 | if (HAS_FLAG (p->flags, F_TEMPLATE)) |
| 1163 | { | 1163 | { |
| 1164 | ensure_scope_buffer_room (3); | 1164 | ensure_scope_buffer_room (3); |
| 1165 | strcat (scope_buffer, "<>"); | 1165 | strcpy (scope_buffer + scope_buffer_len, "<>"); |
| 1166 | scope_buffer_len += 2; | 1166 | scope_buffer_len += 2; |
| 1167 | } | 1167 | } |
| 1168 | 1168 | ||
| @@ -2797,24 +2797,25 @@ operator_name (int *sc) | |||
| 2797 | s = token_string (LA1); | 2797 | s = token_string (LA1); |
| 2798 | MATCH (); | 2798 | MATCH (); |
| 2799 | 2799 | ||
| 2800 | len = strlen (s) + 10; | 2800 | ptrdiff_t slen = strlen (s); |
| 2801 | len = slen + 10; | ||
| 2801 | if (len > id_size) | 2802 | if (len > id_size) |
| 2802 | { | 2803 | { |
| 2803 | size_t new_size = max (len, 2 * id_size); | 2804 | size_t new_size = max (len, 2 * id_size); |
| 2804 | id = (char *) xrealloc (id, new_size); | 2805 | id = (char *) xrealloc (id, new_size); |
| 2805 | id_size = new_size; | 2806 | id_size = new_size; |
| 2806 | } | 2807 | } |
| 2807 | strcpy (id, s); | 2808 | char *z = stpcpy (id, s); |
| 2808 | 2809 | ||
| 2809 | /* Vector new or delete? */ | 2810 | /* Vector new or delete? */ |
| 2810 | if (LOOKING_AT ('[')) | 2811 | if (LOOKING_AT ('[')) |
| 2811 | { | 2812 | { |
| 2812 | strcat (id, "["); | 2813 | z = stpcpy (z, "["); |
| 2813 | MATCH (); | 2814 | MATCH (); |
| 2814 | 2815 | ||
| 2815 | if (LOOKING_AT (']')) | 2816 | if (LOOKING_AT (']')) |
| 2816 | { | 2817 | { |
| 2817 | strcat (id, "]"); | 2818 | strcpy (z, "]"); |
| 2818 | MATCH (); | 2819 | MATCH (); |
| 2819 | } | 2820 | } |
| 2820 | } | 2821 | } |
| @@ -2830,7 +2831,7 @@ operator_name (int *sc) | |||
| 2830 | id = (char *) xrealloc (id, new_size); | 2831 | id = (char *) xrealloc (id, new_size); |
| 2831 | id_size = new_size; | 2832 | id_size = new_size; |
| 2832 | } | 2833 | } |
| 2833 | strcpy (id, "operator"); | 2834 | char *z = stpcpy (id, "operator"); |
| 2834 | 2835 | ||
| 2835 | /* Beware access declarations of the form "X::f;" Beware of | 2836 | /* Beware access declarations of the form "X::f;" Beware of |
| 2836 | `operator () ()'. Yet another difficulty is found in | 2837 | `operator () ()'. Yet another difficulty is found in |
| @@ -2842,14 +2843,16 @@ operator_name (int *sc) | |||
| 2842 | len += strlen (s) + 2; | 2843 | len += strlen (s) + 2; |
| 2843 | if (len > id_size) | 2844 | if (len > id_size) |
| 2844 | { | 2845 | { |
| 2846 | ptrdiff_t idlen = z - id; | ||
| 2845 | size_t new_size = max (len, 2 * id_size); | 2847 | size_t new_size = max (len, 2 * id_size); |
| 2846 | id = (char *) xrealloc (id, new_size); | 2848 | id = (char *) xrealloc (id, new_size); |
| 2847 | id_size = new_size; | 2849 | id_size = new_size; |
| 2850 | z = id + idlen; | ||
| 2848 | } | 2851 | } |
| 2849 | 2852 | ||
| 2850 | if (*s != ')' && *s != ']') | 2853 | if (*s != ')' && *s != ']') |
| 2851 | strcat (id, " "); | 2854 | *z++ = ' '; |
| 2852 | strcat (id, s); | 2855 | z = stpcpy (z, s); |
| 2853 | MATCH (); | 2856 | MATCH (); |
| 2854 | 2857 | ||
| 2855 | /* If this is a simple operator like `+', stop now. */ | 2858 | /* If this is a simple operator like `+', stop now. */ |
| @@ -3462,9 +3465,9 @@ open_file (char *file) | |||
| 3462 | buffer = (char *) xrealloc (buffer, buffer_size); | 3465 | buffer = (char *) xrealloc (buffer, buffer_size); |
| 3463 | } | 3466 | } |
| 3464 | 3467 | ||
| 3465 | strcpy (buffer, path->path); | 3468 | char *z = stpcpy (buffer, path->path); |
| 3466 | strcat (buffer, "/"); | 3469 | *z++ = '/'; |
| 3467 | strcat (buffer, file); | 3470 | strcpy (z, file); |
| 3468 | fp = fopen (buffer, "r"); | 3471 | fp = fopen (buffer, "r"); |
| 3469 | } | 3472 | } |
| 3470 | 3473 | ||
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index ddc1b6de5e3..cfc321a1830 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -905,9 +905,9 @@ get_server_config (const char *config_file, struct sockaddr_in *server, | |||
| 905 | { | 905 | { |
| 906 | char *path = xmalloc (strlen (home) + strlen (config_file) | 906 | char *path = xmalloc (strlen (home) + strlen (config_file) |
| 907 | + EXTRA_SPACE); | 907 | + EXTRA_SPACE); |
| 908 | strcpy (path, home); | 908 | char *z = stpcpy (path, home); |
| 909 | strcat (path, "/.emacs.d/server/"); | 909 | z = stpcpy (z, "/.emacs.d/server/"); |
| 910 | strcat (path, config_file); | 910 | strcpy (z, config_file); |
| 911 | config = fopen (path, "rb"); | 911 | config = fopen (path, "rb"); |
| 912 | free (path); | 912 | free (path); |
| 913 | } | 913 | } |
| @@ -916,9 +916,9 @@ get_server_config (const char *config_file, struct sockaddr_in *server, | |||
| 916 | { | 916 | { |
| 917 | char *path = xmalloc (strlen (home) + strlen (config_file) | 917 | char *path = xmalloc (strlen (home) + strlen (config_file) |
| 918 | + EXTRA_SPACE); | 918 | + EXTRA_SPACE); |
| 919 | strcpy (path, home); | 919 | char *z = stpcpy (path, home); |
| 920 | strcat (path, "/.emacs.d/server/"); | 920 | z = stpcpy (z, "/.emacs.d/server/"); |
| 921 | strcat (path, config_file); | 921 | strcpy (z, config_file); |
| 922 | config = fopen (path, "rb"); | 922 | config = fopen (path, "rb"); |
| 923 | free (path); | 923 | free (path); |
| 924 | } | 924 | } |
| @@ -1193,7 +1193,6 @@ set_local_socket (const char *local_socket_name) | |||
| 1193 | { | 1193 | { |
| 1194 | /* socket_name is a file name component. */ | 1194 | /* socket_name is a file name component. */ |
| 1195 | long uid = geteuid (); | 1195 | long uid = geteuid (); |
| 1196 | ptrdiff_t tmpdirlen; | ||
| 1197 | use_tmpdir = 1; | 1196 | use_tmpdir = 1; |
| 1198 | tmpdir = egetenv ("TMPDIR"); | 1197 | tmpdir = egetenv ("TMPDIR"); |
| 1199 | if (!tmpdir) | 1198 | if (!tmpdir) |
| @@ -1212,12 +1211,11 @@ set_local_socket (const char *local_socket_name) | |||
| 1212 | #endif | 1211 | #endif |
| 1213 | tmpdir = "/tmp"; | 1212 | tmpdir = "/tmp"; |
| 1214 | } | 1213 | } |
| 1215 | tmpdirlen = strlen (tmpdir); | ||
| 1216 | socket_name_storage = | 1214 | socket_name_storage = |
| 1217 | xmalloc (tmpdirlen + strlen (server_name) + EXTRA_SPACE); | 1215 | xmalloc (strlen (tmpdir) + strlen (server_name) + EXTRA_SPACE); |
| 1218 | strcpy (socket_name_storage, tmpdir); | 1216 | char *z = stpcpy (socket_name_storage, tmpdir); |
| 1219 | sprintf (socket_name_storage + tmpdirlen, "/emacs%ld/", uid); | 1217 | z += sprintf (z, "/emacs%ld/", uid); |
| 1220 | strcat (socket_name_storage + tmpdirlen, server_name); | 1218 | strcpy (z, server_name); |
| 1221 | local_socket_name = socket_name_storage; | 1219 | local_socket_name = socket_name_storage; |
| 1222 | } | 1220 | } |
| 1223 | 1221 | ||
| @@ -1253,12 +1251,12 @@ set_local_socket (const char *local_socket_name) | |||
| 1253 | { | 1251 | { |
| 1254 | /* We're running under su, apparently. */ | 1252 | /* We're running under su, apparently. */ |
| 1255 | long uid = pw->pw_uid; | 1253 | long uid = pw->pw_uid; |
| 1256 | ptrdiff_t tmpdirlen = strlen (tmpdir); | ||
| 1257 | char *user_socket_name | 1254 | char *user_socket_name |
| 1258 | = xmalloc (tmpdirlen + strlen (server_name) + EXTRA_SPACE); | 1255 | = xmalloc (strlen (tmpdir) + strlen (server_name) |
| 1259 | strcpy (user_socket_name, tmpdir); | 1256 | + EXTRA_SPACE); |
| 1260 | sprintf (user_socket_name + tmpdirlen, "/emacs%ld/", uid); | 1257 | char *z = stpcpy (user_socket_name, tmpdir); |
| 1261 | strcat (user_socket_name + tmpdirlen, server_name); | 1258 | z += sprintf (z, "/emacs%ld/", uid); |
| 1259 | strcpy (z, server_name); | ||
| 1262 | 1260 | ||
| 1263 | if (strlen (user_socket_name) < sizeof (server.sun_path)) | 1261 | if (strlen (user_socket_name) < sizeof (server.sun_path)) |
| 1264 | strcpy (server.sun_path, user_socket_name); | 1262 | strcpy (server.sun_path, user_socket_name); |
| @@ -1507,8 +1505,7 @@ start_daemon_and_retry_set_socket (void) | |||
| 1507 | const char *deq = "--daemon="; | 1505 | const char *deq = "--daemon="; |
| 1508 | char *daemon_arg = xmalloc (strlen (deq) | 1506 | char *daemon_arg = xmalloc (strlen (deq) |
| 1509 | + strlen (socket_name) + 1); | 1507 | + strlen (socket_name) + 1); |
| 1510 | strcpy (daemon_arg, deq); | 1508 | strcpy (stpcpy (daemon_arg, deq), socket_name); |
| 1511 | strcat (daemon_arg, socket_name); | ||
| 1512 | d_argv[1] = daemon_arg; | 1509 | d_argv[1] = daemon_arg; |
| 1513 | } | 1510 | } |
| 1514 | execvp ("emacs", d_argv); | 1511 | execvp ("emacs", d_argv); |
diff --git a/lib-src/etags.c b/lib-src/etags.c index 6639ac4f235..78b3fed1128 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -1277,13 +1277,13 @@ main (int argc, char **argv) | |||
| 1277 | default: | 1277 | default: |
| 1278 | continue; /* the for loop */ | 1278 | continue; /* the for loop */ |
| 1279 | } | 1279 | } |
| 1280 | strcpy (cmd, "mv "); | 1280 | char *z = stpcpy (cmd, "mv "); |
| 1281 | strcat (cmd, tagfile); | 1281 | z = stpcpy (z, tagfile); |
| 1282 | strcat (cmd, " OTAGS;fgrep -v '\t"); | 1282 | z = stpcpy (z, " OTAGS;fgrep -v '\t"); |
| 1283 | strcat (cmd, argbuffer[i].what); | 1283 | z = stpcpy (z, argbuffer[i].what); |
| 1284 | strcat (cmd, "\t' OTAGS >"); | 1284 | z = stpcpy (z, "\t' OTAGS >"); |
| 1285 | strcat (cmd, tagfile); | 1285 | z = stpcpy (z, tagfile); |
| 1286 | strcat (cmd, ";rm OTAGS"); | 1286 | strcpy (z, ";rm OTAGS"); |
| 1287 | if (system (cmd) != EXIT_SUCCESS) | 1287 | if (system (cmd) != EXIT_SUCCESS) |
| 1288 | fatal ("failed to execute shell command", (char *)NULL); | 1288 | fatal ("failed to execute shell command", (char *)NULL); |
| 1289 | } | 1289 | } |
| @@ -1307,10 +1307,10 @@ main (int argc, char **argv) | |||
| 1307 | /* Maybe these should be used: | 1307 | /* Maybe these should be used: |
| 1308 | setenv ("LC_COLLATE", "C", 1); | 1308 | setenv ("LC_COLLATE", "C", 1); |
| 1309 | setenv ("LC_ALL", "C", 1); */ | 1309 | setenv ("LC_ALL", "C", 1); */ |
| 1310 | strcpy (cmd, "sort -u -o "); | 1310 | char *z = stpcpy (cmd, "sort -u -o "); |
| 1311 | strcat (cmd, tagfile); | 1311 | z = stpcpy (z, tagfile); |
| 1312 | strcat (cmd, " "); | 1312 | *z++ = ' '; |
| 1313 | strcat (cmd, tagfile); | 1313 | strcpy (z, tagfile); |
| 1314 | exit (system (cmd)); | 1314 | exit (system (cmd)); |
| 1315 | } | 1315 | } |
| 1316 | return EXIT_SUCCESS; | 1316 | return EXIT_SUCCESS; |
| @@ -3427,8 +3427,9 @@ C_entries (int c_ext, FILE *inf) | |||
| 3427 | case omethodtag: | 3427 | case omethodtag: |
| 3428 | case omethodparm: | 3428 | case omethodparm: |
| 3429 | objdef = omethodcolon; | 3429 | objdef = omethodcolon; |
| 3430 | linebuffer_setlen (&token_name, token_name.len + 1); | 3430 | int toklen = token_name.len; |
| 3431 | strcat (token_name.buffer, ":"); | 3431 | linebuffer_setlen (&token_name, toklen + 1); |
| 3432 | strcpy (token_name.buffer + toklen, ":"); | ||
| 3432 | break; | 3433 | break; |
| 3433 | } | 3434 | } |
| 3434 | if (structdef == stagseen) | 3435 | if (structdef == stagseen) |
| @@ -6362,12 +6363,12 @@ relative_filename (char *file, char *dir) | |||
| 6362 | while ((dp = strchr (dp + 1, '/')) != NULL) | 6363 | while ((dp = strchr (dp + 1, '/')) != NULL) |
| 6363 | i += 1; | 6364 | i += 1; |
| 6364 | res = xnew (3*i + strlen (fp + 1) + 1, char); | 6365 | res = xnew (3*i + strlen (fp + 1) + 1, char); |
| 6365 | res[0] = '\0'; | 6366 | char *z = res; |
| 6366 | while (i-- > 0) | 6367 | while (i-- > 0) |
| 6367 | strcat (res, "../"); | 6368 | z = stpcpy (z, "../"); |
| 6368 | 6369 | ||
| 6369 | /* Add the file name relative to the common root of file and dir. */ | 6370 | /* Add the file name relative to the common root of file and dir. */ |
| 6370 | strcat (res, fp + 1); | 6371 | strcpy (z, fp + 1); |
| 6371 | free (afn); | 6372 | free (afn); |
| 6372 | 6373 | ||
| 6373 | return res; | 6374 | return res; |
diff --git a/lib-src/pop.c b/lib-src/pop.c index ffe16c5f911..70011504a34 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c | |||
| @@ -1397,8 +1397,7 @@ sendline (popserver server, const char *line) | |||
| 1397 | over a few dozen messages, and is a big chunk of the time we | 1397 | over a few dozen messages, and is a big chunk of the time we |
| 1398 | spend fetching mail from a server close by. */ | 1398 | spend fetching mail from a server close by. */ |
| 1399 | buf = alloca (strlen (line) + 3); | 1399 | buf = alloca (strlen (line) + 3); |
| 1400 | strcpy (buf, line); | 1400 | strcpy (stpcpy (buf, line), "\r\n"); |
| 1401 | strcat (buf, "\r\n"); | ||
| 1402 | ret = fullwrite (server->file, buf, strlen (buf)); | 1401 | ret = fullwrite (server->file, buf, strlen (buf)); |
| 1403 | 1402 | ||
| 1404 | if (ret < 0) | 1403 | if (ret < 0) |
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c index 7a64cd04f47..b311001bd62 100644 --- a/lib-src/update-game-score.c +++ b/lib-src/update-game-score.c | |||
| @@ -221,9 +221,9 @@ main (int argc, char **argv) | |||
| 221 | if (!scorefile) | 221 | if (!scorefile) |
| 222 | lose_syserr ("Couldn't allocate score file"); | 222 | lose_syserr ("Couldn't allocate score file"); |
| 223 | 223 | ||
| 224 | strcpy (scorefile, prefix); | 224 | char *z = stpcpy (scorefile, prefix); |
| 225 | strcat (scorefile, "/"); | 225 | *z++ = '/'; |
| 226 | strcat (scorefile, argv[optind]); | 226 | strcpy (z, argv[optind]); |
| 227 | 227 | ||
| 228 | newscore.score = normalize_integer (argv[optind + 1]); | 228 | newscore.score = normalize_integer (argv[optind + 1]); |
| 229 | if (! newscore.score) | 229 | if (! newscore.score) |
| @@ -430,8 +430,7 @@ write_scores (const char *filename, const struct score_entry *scores, | |||
| 430 | char *tempfile = malloc (strlen (filename) + strlen (".tempXXXXXX") + 1); | 430 | char *tempfile = malloc (strlen (filename) + strlen (".tempXXXXXX") + 1); |
| 431 | if (!tempfile) | 431 | if (!tempfile) |
| 432 | return -1; | 432 | return -1; |
| 433 | strcpy (tempfile, filename); | 433 | strcpy (stpcpy (tempfile, filename), ".tempXXXXXX"); |
| 434 | strcat (tempfile, ".tempXXXXXX"); | ||
| 435 | fd = mkostemp (tempfile, 0); | 434 | fd = mkostemp (tempfile, 0); |
| 436 | if (fd < 0) | 435 | if (fd < 0) |
| 437 | return -1; | 436 | return -1; |
| @@ -462,8 +461,7 @@ lock_file (const char *filename, void **state) | |||
| 462 | char *lockpath = malloc (strlen (filename) + strlen (lockext) + 60); | 461 | char *lockpath = malloc (strlen (filename) + strlen (lockext) + 60); |
| 463 | if (!lockpath) | 462 | if (!lockpath) |
| 464 | return -1; | 463 | return -1; |
| 465 | strcpy (lockpath, filename); | 464 | strcpy (stpcpy (lockpath, filename), lockext); |
| 466 | strcat (lockpath, lockext); | ||
| 467 | *state = lockpath; | 465 | *state = lockpath; |
| 468 | 466 | ||
| 469 | while ((fd = open (lockpath, O_CREAT | O_EXCL, 0600)) < 0) | 467 | while ((fd = open (lockpath, O_CREAT | O_EXCL, 0600)) < 0) |
diff --git a/lib/gnulib.mk b/lib/gnulib.mk index 740ebb1e96c..27a5964cd7c 100644 --- a/lib/gnulib.mk +++ b/lib/gnulib.mk | |||
| @@ -21,7 +21,7 @@ | |||
| 21 | # the same distribution terms as the rest of that program. | 21 | # the same distribution terms as the rest of that program. |
| 22 | # | 22 | # |
| 23 | # Generated by gnulib-tool. | 23 | # Generated by gnulib-tool. |
| 24 | # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --avoid=close --avoid=dup --avoid=fchdir --avoid=fstat --avoid=malloc-posix --avoid=msvc-inval --avoid=msvc-nothrow --avoid=open --avoid=openat-die --avoid=opendir --avoid=raise --avoid=save-cwd --avoid=select --avoid=sigprocmask --avoid=stdarg --avoid=stdbool --avoid=threadlib --makefile-name=gnulib.mk --conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files alloca-opt binary-io byteswap c-ctype c-strcase careadlinkat close-stream count-one-bits count-trailing-zeros crypto/md5 crypto/sha1 crypto/sha256 crypto/sha512 dtoastr dtotimespec dup2 environ execinfo faccessat fcntl fcntl-h fdatasync fdopendir filemode fstatat fsync getloadavg getopt-gnu gettime gettimeofday intprops largefile lstat manywarnings memrchr mkostemp mktime pipe2 pselect pthread_sigmask putenv qacl readlink readlinkat sig2str socklen stat-time stdalign stddef stdio strftime strtoimax strtoumax symlink sys_stat sys_time time time_r timer-time timespec-add timespec-sub unsetenv update-copyright utimens vla warnings | 24 | # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --avoid=close --avoid=dup --avoid=fchdir --avoid=fstat --avoid=malloc-posix --avoid=msvc-inval --avoid=msvc-nothrow --avoid=open --avoid=openat-die --avoid=opendir --avoid=raise --avoid=save-cwd --avoid=select --avoid=sigprocmask --avoid=stdarg --avoid=stdbool --avoid=threadlib --makefile-name=gnulib.mk --conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files alloca-opt binary-io byteswap c-ctype c-strcase careadlinkat close-stream count-one-bits count-trailing-zeros crypto/md5 crypto/sha1 crypto/sha256 crypto/sha512 dtoastr dtotimespec dup2 environ execinfo faccessat fcntl fcntl-h fdatasync fdopendir filemode fstatat fsync getloadavg getopt-gnu gettime gettimeofday intprops largefile lstat manywarnings memrchr mkostemp mktime pipe2 pselect pthread_sigmask putenv qacl readlink readlinkat sig2str socklen stat-time stdalign stddef stdio stpcpy strftime strtoimax strtoumax symlink sys_stat sys_time time time_r timer-time timespec-add timespec-sub unsetenv update-copyright utimens vla warnings |
| 25 | 25 | ||
| 26 | 26 | ||
| 27 | MOSTLYCLEANFILES += core *.stackdump | 27 | MOSTLYCLEANFILES += core *.stackdump |
| @@ -1214,6 +1214,15 @@ EXTRA_DIST += stdlib.in.h | |||
| 1214 | 1214 | ||
| 1215 | ## end gnulib module stdlib | 1215 | ## end gnulib module stdlib |
| 1216 | 1216 | ||
| 1217 | ## begin gnulib module stpcpy | ||
| 1218 | |||
| 1219 | |||
| 1220 | EXTRA_DIST += stpcpy.c | ||
| 1221 | |||
| 1222 | EXTRA_libgnu_a_SOURCES += stpcpy.c | ||
| 1223 | |||
| 1224 | ## end gnulib module stpcpy | ||
| 1225 | |||
| 1217 | ## begin gnulib module strftime | 1226 | ## begin gnulib module strftime |
| 1218 | 1227 | ||
| 1219 | libgnu_a_SOURCES += strftime.c | 1228 | libgnu_a_SOURCES += strftime.c |
diff --git a/lib/stpcpy.c b/lib/stpcpy.c new file mode 100644 index 00000000000..880a7061ef1 --- /dev/null +++ b/lib/stpcpy.c | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | /* stpcpy.c -- copy a string and return pointer to end of new string | ||
| 2 | Copyright (C) 1992, 1995, 1997-1998, 2006, 2009-2014 Free Software | ||
| 3 | Foundation, Inc. | ||
| 4 | |||
| 5 | NOTE: The canonical source of this file is maintained with the GNU C Library. | ||
| 6 | Bugs can be reported to bug-glibc@prep.ai.mit.edu. | ||
| 7 | |||
| 8 | This program is free software: you can redistribute it and/or modify it | ||
| 9 | under the terms of the GNU General Public License as published by the | ||
| 10 | Free Software Foundation; either version 3 of the License, or any | ||
| 11 | later version. | ||
| 12 | |||
| 13 | This program is distributed in the hope that it will be useful, | ||
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | GNU General Public License for more details. | ||
| 17 | |||
| 18 | You should have received a copy of the GNU General Public License | ||
| 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 20 | |||
| 21 | #include <config.h> | ||
| 22 | |||
| 23 | #include <string.h> | ||
| 24 | |||
| 25 | #undef __stpcpy | ||
| 26 | #ifdef _LIBC | ||
| 27 | # undef stpcpy | ||
| 28 | #endif | ||
| 29 | |||
| 30 | #ifndef weak_alias | ||
| 31 | # define __stpcpy stpcpy | ||
| 32 | #endif | ||
| 33 | |||
| 34 | /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */ | ||
| 35 | char * | ||
| 36 | __stpcpy (char *dest, const char *src) | ||
| 37 | { | ||
| 38 | register char *d = dest; | ||
| 39 | register const char *s = src; | ||
| 40 | |||
| 41 | do | ||
| 42 | *d++ = *s; | ||
| 43 | while (*s++ != '\0'); | ||
| 44 | |||
| 45 | return d - 1; | ||
| 46 | } | ||
| 47 | #ifdef weak_alias | ||
| 48 | weak_alias (__stpcpy, stpcpy) | ||
| 49 | #endif | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d8bb1c89f1f..4c6b23dac0b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,78 @@ | |||
| 1 | 2014-12-26 Dmitry Gutov <dgutov@yandex.ru> | ||
| 2 | |||
| 3 | Add basic xref apropos implementation to elisp-mode. | ||
| 4 | |||
| 5 | * progmodes/elisp-mode.el (elisp--xref-find-definitions): | ||
| 6 | Filter out nil results. | ||
| 7 | (elisp--xref-find-apropos): New function. | ||
| 8 | (elisp-xref-find): Use it. | ||
| 9 | |||
| 10 | * progmodes/xref.el (xref--show-xrefs): Use `user-error'. | ||
| 11 | |||
| 12 | 2014-12-25 Helmut Eller <eller.helmut@gmail.com> | ||
| 13 | Dmitry Gutov <dgutov@yandex.ru> | ||
| 14 | |||
| 15 | Consolidate cross-referencing commands. | ||
| 16 | |||
| 17 | Move autoloaded bindings for `M-.', `M-,', `C-x 4 .' and | ||
| 18 | `C-x 5 .' from etags.el to xref.el. | ||
| 19 | |||
| 20 | * progmodes/xref.el: New file. | ||
| 21 | |||
| 22 | * progmodes/elisp-mode.el (elisp--identifier-types): New variable. | ||
| 23 | (elisp--identifier-location): New function, extracted from | ||
| 24 | `elisp--company-location'. | ||
| 25 | (elisp--company-location): Use it. | ||
| 26 | (elisp--identifier-completion-table): New variable. | ||
| 27 | (elisp-completion-at-point): Use it. | ||
| 28 | (emacs-lisp-mode): Set the local values of `xref-find-function' | ||
| 29 | and `xref-identifier-completion-table-function'. | ||
| 30 | (elisp-xref-find, elisp--xref-find-definitions) | ||
| 31 | (elisp--xref-identifier-completion-table): New functions. | ||
| 32 | |||
| 33 | * progmodes/etags.el (find-tag-marker-ring): Mark obsolete in | ||
| 34 | favor of `xref--marker-ring'. | ||
| 35 | (tags-lazy-completion-table): Autoload. | ||
| 36 | (tags-reset-tags-tables): Use `xref-clear-marker-stack'. | ||
| 37 | (find-tag-noselect): Use `xref-push-marker-stack'. | ||
| 38 | (pop-tag-mark): Make an alias for `xref-pop-marker-stack'. | ||
| 39 | (etags--xref-limit): New constant. | ||
| 40 | (etags-xref-find, etags--xref-find-definitions): New functions. | ||
| 41 | |||
| 42 | 2014-12-25 Martin Rudalics <rudalics@gmx.at> | ||
| 43 | |||
| 44 | * cus-start.el (resize-mini-windows): Make it customizable. | ||
| 45 | |||
| 46 | 2014-12-24 Stephen Leake <stephen_leake@stephe-leake.org> | ||
| 47 | |||
| 48 | * startup.el (fancy-about-text): Change buttons for etc/CONTRIBUTE | ||
| 49 | to (info "(emacs)Contributing"). (Bug#19299) | ||
| 50 | |||
| 51 | 2014-12-24 Martin Rudalics <rudalics@gmx.at> | ||
| 52 | |||
| 53 | * window.el (mouse-autoselect-window-position-1): New variable. | ||
| 54 | (mouse-autoselect-window-cancel) | ||
| 55 | (mouse-autoselect-window-select, handle-select-window): With | ||
| 56 | delayed autoselection select window only if mouse moves after | ||
| 57 | selecting its frame. | ||
| 58 | |||
| 59 | 2014-12-24 Michael Albinus <michael.albinus@gmx.de> | ||
| 60 | |||
| 61 | * eshell/esh-ext.el (eshell-find-interpreter): Expand relative | ||
| 62 | remote file names. (Bug#18782) | ||
| 63 | |||
| 64 | 2014-12-23 Sam Steingold <sds@gnu.org> | ||
| 65 | |||
| 66 | * shell.el (shell-display-buffer-actions): New user option. | ||
| 67 | (shell): Pass it to `pop-to-buffer' instead of hard-coding | ||
| 68 | `pop-to-buffer-same-window'. | ||
| 69 | |||
| 70 | 2014-12-23 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 71 | |||
| 72 | * progmodes/js.el (js--syntax-propertize-regexp-syntax-table): New var. | ||
| 73 | (js-syntax-propertize-regexp): Use it to recognize "slash in | ||
| 74 | a character class" (bug#19397). | ||
| 75 | |||
| 1 | 2014-12-22 Stefan Monnier <monnier@iro.umontreal.ca> | 76 | 2014-12-22 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 77 | ||
| 3 | * completion.el: Use post-self-insert-hook (bug#19400). | 78 | * completion.el: Use post-self-insert-hook (bug#19400). |
| @@ -35,24 +110,21 @@ | |||
| 35 | 110 | ||
| 36 | 2014-12-19 Alan Mackenzie <acm@muc.de> | 111 | 2014-12-19 Alan Mackenzie <acm@muc.de> |
| 37 | 112 | ||
| 38 | Make C++11 uniform init syntax work. New keywords "final" and "override" | 113 | Make C++11 uniform init syntax work. |
| 39 | 114 | New keywords "final" and "override" | |
| 40 | * progmodes/cc-engine.el (c-back-over-member-initializer-braces): | 115 | * progmodes/cc-engine.el (c-back-over-member-initializer-braces): |
| 41 | New function. | 116 | New function. |
| 42 | (c-guess-basic-syntax): Set `containing-sex' and `lim' using the | 117 | (c-guess-basic-syntax): Set `containing-sex' and `lim' using the |
| 43 | new function. | 118 | new function. |
| 44 | |||
| 45 | * progmodes/cc-fonts.el (c-font-lock-declarations): Check more | 119 | * progmodes/cc-fonts.el (c-font-lock-declarations): Check more |
| 46 | carefully for "are we at a declarator?" using | 120 | carefully for "are we at a declarator?" using |
| 47 | c-back-over-member-initializers. | 121 | c-back-over-member-initializers. |
| 48 | 122 | * progmodes/cc-langs.el (c-type-modifier-kwds): Include "final" | |
| 49 | * progmodes/cc-langs.el (c-type-modifier-kwds): include "final" | ||
| 50 | and "override" in the C++ value. | 123 | and "override" in the C++ value. |
| 51 | 124 | ||
| 52 | 2014-12-19 Martin Rudalics <rudalics@gmx.at> | 125 | 2014-12-19 Martin Rudalics <rudalics@gmx.at> |
| 53 | 126 | ||
| 54 | * textmodes/ispell.el (ispell-command-loop): Don't use | 127 | * textmodes/ispell.el (ispell-command-loop): Don't use `next-window'. |
| 55 | `next-window'. | ||
| 56 | 128 | ||
| 57 | 2014-12-21 Lars Ingebrigtsen <larsi@gnus.org> | 129 | 2014-12-21 Lars Ingebrigtsen <larsi@gnus.org> |
| 58 | 130 | ||
| @@ -132,7 +204,7 @@ | |||
| 132 | do the window handling. | 204 | do the window handling. |
| 133 | (ispell-adjusted-window-height, ispell-overlay-window): Remove. | 205 | (ispell-adjusted-window-height, ispell-overlay-window): Remove. |
| 134 | (ispell-display-buffer): New function to reuse, create and fit | 206 | (ispell-display-buffer): New function to reuse, create and fit |
| 135 | window to ispell's buffers. (Bug#3413) | 207 | window to ispell's buffers. (Bug#3413) |
| 136 | 208 | ||
| 137 | 2014-12-18 Dmitry Gutov <dgutov@yandex.ru> | 209 | 2014-12-18 Dmitry Gutov <dgutov@yandex.ru> |
| 138 | 210 | ||
| @@ -256,6 +328,13 @@ | |||
| 256 | * vc/vc-bzr.el (vc-bzr-diff): | 328 | * vc/vc-bzr.el (vc-bzr-diff): |
| 257 | * obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end. | 329 | * obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end. |
| 258 | 330 | ||
| 331 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | ||
| 332 | |||
| 333 | * emacs-lisp/cconv.el (cconv--analyze-use): | ||
| 334 | Rename from cconv--analyse-use. | ||
| 335 | (cconv--analyze-function): Rename from cconv--analyse-function. | ||
| 336 | (cconv-analyze-form): Rename from cconv-analyse-form. | ||
| 337 | |||
| 259 | 2014-12-13 Andreas Schwab <schwab@linux-m68k.org> | 338 | 2014-12-13 Andreas Schwab <schwab@linux-m68k.org> |
| 260 | 339 | ||
| 261 | * net/shr.el (shr-next-link): Don't error out at eob. | 340 | * net/shr.el (shr-next-link): Don't error out at eob. |
| @@ -322,12 +401,12 @@ | |||
| 322 | 401 | ||
| 323 | 2014-12-12 Eric S. Raymond <esr@snark.thyrsus.com> | 402 | 2014-12-12 Eric S. Raymond <esr@snark.thyrsus.com> |
| 324 | 403 | ||
| 325 | * vc/vc-dav.el, vc/vc-git.el, vc/vc-hg.el, vc/vc-src.el, | 404 | * vc/vc-dav.el, vc/vc-git.el, vc/vc-hg.el, vc/vc-src.el: |
| 326 | vc/vc.el: latest-on-branch-p is no longer a public method. | 405 | * vc/vc.el: latest-on-branch-p is no longer a public method. |
| 327 | 406 | ||
| 328 | * vc/vc.el, vc/vc-hg.el, vc/vc-git.el, vc/vc-hooks.el, | 407 | * vc/vc.el, vc/vc-hg.el, vc/vc-git.el, vc/vc-hooks.el: |
| 329 | vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el, vc/vc-src.el: Remove `rollback' | 408 | * vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el, vc/vc-src.el: |
| 330 | method, to be replaced in the future by uncommit. | 409 | Remove `rollback' method, to be replaced in the future by uncommit. |
| 331 | 410 | ||
| 332 | 2014-12-11 Michael Albinus <michael.albinus@gmx.de> | 411 | 2014-12-11 Michael Albinus <michael.albinus@gmx.de> |
| 333 | 412 | ||
| @@ -345,10 +424,9 @@ | |||
| 345 | 424 | ||
| 346 | 2014-12-10 Eric S. Raymond <esr@snark.thyrsus.com> | 425 | 2014-12-10 Eric S. Raymond <esr@snark.thyrsus.com> |
| 347 | 426 | ||
| 348 | * vc/vc-dispatcher.el, vc/vc-hooks.el, vc/vc-rcs.el, | 427 | * vc/vc-dispatcher.el, vc/vc-hooks.el, vc/vc-rcs.el: |
| 349 | vc/vc-sccs.el, vc/vc.el: Righteous featurectomy of | 428 | * vc/vc-sccs.el, vc/vc.el: Righteous featurectomy of vc-keep-workfiles, |
| 350 | vc-keep-workfiles, it's a shoot-self-in-foot archaism. | 429 | it's a shoot-self-in-foot archaism. Workfiles are always kept. |
| 351 | Workfiles are always kept. | ||
| 352 | 430 | ||
| 353 | 2014-12-10 Rasmus Pank Roulund <emacs@pank.eu> | 431 | 2014-12-10 Rasmus Pank Roulund <emacs@pank.eu> |
| 354 | 432 | ||
| @@ -379,7 +457,7 @@ | |||
| 379 | 2014-12-09 Eric S. Raymond <esr@snark.thyrsus.com> | 457 | 2014-12-09 Eric S. Raymond <esr@snark.thyrsus.com> |
| 380 | 458 | ||
| 381 | * vc/vc-src.el (vc-src-do-comand): Prepend -- to file argument | 459 | * vc/vc-src.el (vc-src-do-comand): Prepend -- to file argument |
| 382 | list, avoids problems witth names containing hyphens. | 460 | list, avoids problems witt names containing hyphens. |
| 383 | 461 | ||
| 384 | 2014-12-09 Wilson Snyder <wsnyder@wsnyder.org> | 462 | 2014-12-09 Wilson Snyder <wsnyder@wsnyder.org> |
| 385 | 463 | ||
| @@ -499,7 +577,7 @@ | |||
| 499 | 577 | ||
| 500 | 2014-12-08 Eric S. Raymond <esr@snark.thyrsus.com> | 578 | 2014-12-08 Eric S. Raymond <esr@snark.thyrsus.com> |
| 501 | 579 | ||
| 502 | * vc/vc-arch.el: Moved to obsolete directory so a test framework | 580 | * vc/vc-arch.el: Move to obsolete directory so a test framework |
| 503 | won't trip over bit-rot in it. There has been no Arch snapshot | 581 | won't trip over bit-rot in it. There has been no Arch snapshot |
| 504 | for nine years. | 582 | for nine years. |
| 505 | 583 | ||
| @@ -706,13 +784,13 @@ | |||
| 706 | 784 | ||
| 707 | 2014-12-02 Eric S. Raymond <esr@snark.thyrsus.com> | 785 | 2014-12-02 Eric S. Raymond <esr@snark.thyrsus.com> |
| 708 | 786 | ||
| 709 | * subr.el (filter): New macro. Because it's just silly for a Lisp | 787 | * subr.el (filter): New macro. Because it's just silly for a Lisp |
| 710 | not to have this in 2014. And VC needs it. | 788 | not to have this in 2014. And VC needs it. |
| 711 | 789 | ||
| 712 | * vc.el, all backends: API simplification: Abolish dir-status. | 790 | * vc.el: All backends: API simplification: Abolish dir-status. |
| 713 | It's replaced by dir-status-files. | 791 | It's replaced by dir-status-files. |
| 714 | 792 | ||
| 715 | * vc.el, all backends: API simplification: Remove 4th | 793 | * vc.el: All backends: API simplification: Remove 4th |
| 716 | 'default-state' argument from vc-dir-status files and its backend | 794 | 'default-state' argument from vc-dir-status files and its backend |
| 717 | methods - no backend method ever set it. It was used only in the | 795 | methods - no backend method ever set it. It was used only in the |
| 718 | fallback method to to set a default of 'up-to-date, though a | 796 | fallback method to to set a default of 'up-to-date, though a |
| @@ -723,17 +801,17 @@ | |||
| 723 | * vc.el (vc-expand-dirs): Now takes a second BACKEND argument, | 801 | * vc.el (vc-expand-dirs): Now takes a second BACKEND argument, |
| 724 | improving behavior on directories using multiple file-oriented VCSes. | 802 | improving behavior on directories using multiple file-oriented VCSes. |
| 725 | 803 | ||
| 726 | * vc/vc.el and all backends: API simplification; clear-headers | 804 | * vc/vc.el: All backends: API simplification; clear-headers |
| 727 | is no longer a public method. It is now local to the one place | 805 | is no longer a public method. It is now local to the one place |
| 728 | it's used, in the RCS steal-lock method. | 806 | it's used, in the RCS steal-lock method. |
| 729 | 807 | ||
| 730 | 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com> | 808 | 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com> |
| 731 | 809 | ||
| 732 | * vc/vc.el and all backends: API simplification; could-register | 810 | * vc/vc.el: In all backends: API simplification; could-register |
| 733 | is no longer a public method. (vc-cvs.el still has a private | 811 | is no longer a public method. (vc-cvs.el still has a private |
| 734 | implementation.) | 812 | implementation.) |
| 735 | 813 | ||
| 736 | * vc/vc.el and all backends: API cleanup; the backend diff method | 814 | * vc/vc.el: In all backends: API cleanup; the backend diff method |
| 737 | takes an explicit async flag. This eliminates a particularly ugly | 815 | takes an explicit async flag. This eliminates a particularly ugly |
| 738 | global. | 816 | global. |
| 739 | 817 | ||
| @@ -848,11 +926,11 @@ | |||
| 848 | the back ends; this fixes a layering violation that caused bad | 926 | the back ends; this fixes a layering violation that caused bad |
| 849 | behavior with SVN. | 927 | behavior with SVN. |
| 850 | 928 | ||
| 851 | * vc/vc.el, vc-hooks.el, and all backends: API simplification; | 929 | * vc/vc.el, vc-hooks.el: All backends: API simplification; |
| 852 | vc-stay-local-p and repository-hostname are no longer public | 930 | vc-stay-local-p and repository-hostname are no longer public |
| 853 | methods. Only the CVS and SVN backends used these, and the SVN | 931 | methods. Only the CVS and SVN backends used these, and the SVN |
| 854 | support was conditioned out because svn status -v is too slow. | 932 | support was conditioned out because svn status -v is too slow. |
| 855 | The CVS back end retains this machibery and the vc-stay-local | 933 | The CVS back end retains this machinery and the vc-stay-local |
| 856 | configuration variable now only affects it. | 934 | configuration variable now only affects it. |
| 857 | 935 | ||
| 858 | 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca> | 936 | 2014-12-01 Stefan Monnier <monnier@iro.umontreal.ca> |
| @@ -861,26 +939,26 @@ | |||
| 861 | 939 | ||
| 862 | 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com> | 940 | 2014-12-01 Eric S. Raymond <esr@snark.thyrsus.com> |
| 863 | 941 | ||
| 864 | * vc/vc.el, vc-hooks.el, and all backends: API simplification; | 942 | * vc/vc.el, vc-hooks.el: All backends: API simplification; |
| 865 | vc-state-heuristic is no longer a public method, having been | 943 | vc-state-heuristic is no longer a public method, having been |
| 866 | removed where it is redundant, unnecessary, or known buggy. | 944 | removed where it is redundant, unnecessary, or known buggy. |
| 867 | This eliminated all backends except CVS. Eliminates bug#7850. | 945 | This eliminated all backends except CVS. Eliminates bug#7850. |
| 868 | 946 | ||
| 869 | * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el: | 947 | * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el: |
| 870 | Eliminate vc-mistrust-permissions. It was only relevant to the | 948 | Eliminate vc-mistrust-permissions. It was only relevant to the |
| 871 | RCS and SCCS back ends and defaulted to t. Code now always | 949 | RCS and SCCS back ends and defaulted to t. Code now always |
| 872 | mistrusts permissions - by actual measurement the effect on | 950 | mistrusts permissions - by actual measurement the effect on |
| 873 | performance is negligible. As a side effect bug#11490 is now | 951 | performance is negligible. As a side effect bug#11490 is now |
| 874 | irrelevant. | 952 | irrelevant. |
| 875 | 953 | ||
| 876 | * vc/vc.el, vc-hooks.el, and all backends: API simplification; | 954 | * vc/vc.el, vc-hooks.el: All backends: API simplification; |
| 877 | vc-workfile-unchanged-p is no longer a public method (but the RCS | 955 | vc-workfile-unchanged-p is no longer a public method (but the RCS |
| 878 | and SCCS back ends retain it as a private method used in state | 956 | and SCCS back ends retain it as a private method used in state |
| 879 | computation). This method was redundant with vc-state and usually | 957 | computation). This method was redundant with vc-state and usually |
| 880 | implemented as a trivial call to same. Fixes the failure mode | 958 | implemented as a trivial call to same. Fixes the failure mode |
| 881 | described in bug#694. | 959 | described in bug#694. |
| 882 | 960 | ||
| 883 | * vc/vc.el and all backends: API simplification; init-revision is | 961 | * vc/vc.el: All backends: API simplification; init-revision is |
| 884 | gone, and vc-registered functions no longer take an | 962 | gone, and vc-registered functions no longer take an |
| 885 | initial-revision argument. | 963 | initial-revision argument. |
| 886 | 964 | ||
| @@ -1040,7 +1118,7 @@ | |||
| 1040 | string. | 1118 | string. |
| 1041 | (newsticker--treeview-load): Change wording of the questions the | 1119 | (newsticker--treeview-load): Change wording of the questions the |
| 1042 | user is asked when `newsticker-groups-filename' is found to be | 1120 | user is asked when `newsticker-groups-filename' is found to be |
| 1043 | used and we offer to read and remove the groups file. (bug#19165) | 1121 | used and we offer to read and remove the groups file. (Bug#19165) |
| 1044 | 1122 | ||
| 1045 | 2014-11-27 Lars Magne Ingebrigtsen <larsi@gnus.org> | 1123 | 2014-11-27 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 1046 | 1124 | ||
| @@ -1245,7 +1323,7 @@ | |||
| 1245 | 2014-11-22 Ulf Jasper <ulf.jasper@web.de> | 1323 | 2014-11-22 Ulf Jasper <ulf.jasper@web.de> |
| 1246 | 1324 | ||
| 1247 | * net/newst-backend.el (newsticker--sentinel-work): | 1325 | * net/newst-backend.el (newsticker--sentinel-work): |
| 1248 | Tell `libxml-parse-xml-region' to discard comments. Fixes bug#18787. | 1326 | Tell `libxml-parse-xml-region' to discard comments. Fixes bug#18787. |
| 1249 | 1327 | ||
| 1250 | 2014-11-22 Michael Albinus <michael.albinus@gmx.de> | 1328 | 2014-11-22 Michael Albinus <michael.albinus@gmx.de> |
| 1251 | 1329 | ||
| @@ -1262,7 +1340,7 @@ | |||
| 1262 | live in vc.el and certainly not in vc-hooks.el. | 1340 | live in vc.el and certainly not in vc-hooks.el. |
| 1263 | 1341 | ||
| 1264 | * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name -> vc-master-name. | 1342 | * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name -> vc-master-name. |
| 1265 | This is preaparatory to isolating all the 'master' functions | 1343 | This is preparatory to isolating all the 'master' functions |
| 1266 | used only by the file-oriented back ends. With this done first, | 1344 | used only by the file-oriented back ends. With this done first, |
| 1267 | the substantive diffs will be easier to read. | 1345 | the substantive diffs will be easier to read. |
| 1268 | 1346 | ||
| @@ -1611,7 +1689,7 @@ | |||
| 1611 | 2014-11-16 Oscar Fuentes <ofv@wanadoo.es> | 1689 | 2014-11-16 Oscar Fuentes <ofv@wanadoo.es> |
| 1612 | 1690 | ||
| 1613 | Add faces for the VC modeline state indicator. | 1691 | Add faces for the VC modeline state indicator. |
| 1614 | * lisp/vc/vc-hooks.el: | 1692 | * vc/vc-hooks.el: |
| 1615 | (vc-state-faces, vc-state-base-face) | 1693 | (vc-state-faces, vc-state-base-face) |
| 1616 | (vc-up-to-date-state, vc-needs-update-state) | 1694 | (vc-up-to-date-state, vc-needs-update-state) |
| 1617 | (vc-locked-state, vc-locally-added-state) | 1695 | (vc-locked-state, vc-locally-added-state) |
| @@ -2305,9 +2383,9 @@ | |||
| 2305 | * ses.el (macroexp): Add require for this package, so that function | 2383 | * ses.el (macroexp): Add require for this package, so that function |
| 2306 | `ses--cell gets macroexp-quote. | 2384 | `ses--cell gets macroexp-quote. |
| 2307 | (ses--cell): Makes formula a macroexp-quote of value when formula | 2385 | (ses--cell): Makes formula a macroexp-quote of value when formula |
| 2308 | is nil. The rationale of this changr is to allow in the future | 2386 | is nil. The rationale of this changr is to allow in the future |
| 2309 | shorter SES files, e.g. we could have only `(ses-cell A1 1.0)' | 2387 | shorter SES files, e.g. we could have only `(ses-cell A1 1.0)' |
| 2310 | instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'. In such a case | 2388 | instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'. In such a case |
| 2311 | reference list REFLIST would be re-computed after load --- thus | 2389 | reference list REFLIST would be re-computed after load --- thus |
| 2312 | trading off load time against file size. | 2390 | trading off load time against file size. |
| 2313 | 2391 | ||
| @@ -3312,7 +3390,7 @@ | |||
| 3312 | HTML code has become part of the xml parse tree. | 3390 | HTML code has become part of the xml parse tree. |
| 3313 | (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care | 3391 | (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care |
| 3314 | of possibly missing namespace prefixes. | 3392 | of possibly missing namespace prefixes. |
| 3315 | (newsticker--parse-generic-items): Code formatting. Typo. | 3393 | (newsticker--parse-generic-items): Code formatting. Typo. |
| 3316 | (newsticker--images-dir): Add trailing slash. | 3394 | (newsticker--images-dir): Add trailing slash. |
| 3317 | (newsticker--image-get): Fix error message. | 3395 | (newsticker--image-get): Fix error message. |
| 3318 | 3396 | ||
| @@ -3477,7 +3555,7 @@ | |||
| 3477 | * vc/add-log.el (change-log-next-buffer): Don't create an empty | 3555 | * vc/add-log.el (change-log-next-buffer): Don't create an empty |
| 3478 | buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9]. | 3556 | buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9]. |
| 3479 | Return the current buffer if no files match the default pattern | 3557 | Return the current buffer if no files match the default pattern |
| 3480 | ChangeLog.[0-9]. Signal "end of multi" when file is nil. (Bug#18547) | 3558 | ChangeLog.[0-9]. Signal "end of multi" when file is nil. (Bug#18547) |
| 3481 | 3559 | ||
| 3482 | 2014-09-25 Stefan Monnier <monnier@iro.umontreal.ca> | 3560 | 2014-09-25 Stefan Monnier <monnier@iro.umontreal.ca> |
| 3483 | 3561 | ||
| @@ -3615,7 +3693,7 @@ | |||
| 3615 | * textmodes/reftex-sel.el (reftex-select-label-mode) | 3693 | * textmodes/reftex-sel.el (reftex-select-label-mode) |
| 3616 | (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes | 3694 | (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes |
| 3617 | from special-mode (instead of fundamental-mode) and propertize | 3695 | from special-mode (instead of fundamental-mode) and propertize |
| 3618 | with font-lock-face instead of just face. (Bug#18496) | 3696 | with font-lock-face instead of just face. (Bug#18496) |
| 3619 | 3697 | ||
| 3620 | * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto. | 3698 | * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto. |
| 3621 | 3699 | ||
| @@ -4009,7 +4087,7 @@ | |||
| 4009 | of local overrides. | 4087 | of local overrides. |
| 4010 | (ibuffer): Don't store previous windows configuration. | 4088 | (ibuffer): Don't store previous windows configuration. |
| 4011 | Let `quit-window' handle restoring. | 4089 | Let `quit-window' handle restoring. |
| 4012 | (ibuffer-quit): Remove function. Use `quit-window' instead. | 4090 | (ibuffer-quit): Remove function. Use `quit-window' instead. |
| 4013 | (ibuffer-restore-window-config-on-quit): Remove variable. | 4091 | (ibuffer-restore-window-config-on-quit): Remove variable. |
| 4014 | (ibuffer-prev-window-config): Remove variable. | 4092 | (ibuffer-prev-window-config): Remove variable. |
| 4015 | 4093 | ||
| @@ -4263,10 +4341,10 @@ | |||
| 4263 | 4341 | ||
| 4264 | 2014-08-11 Ulf Jasper <ulf.jasper@web.de> | 4342 | 2014-08-11 Ulf Jasper <ulf.jasper@web.de> |
| 4265 | 4343 | ||
| 4266 | Newsticker: introduce `newsticker-treeview-date-format'. (Bug#17227) | 4344 | Newsticker: introduce `newsticker-treeview-date-format'. (Bug#17227) |
| 4267 | |||
| 4268 | * net/newst-treeview.el (newsticker-treeview-date-format): New. | 4345 | * net/newst-treeview.el (newsticker-treeview-date-format): New. |
| 4269 | (newsticker--treeview-list-add-item): Use `newsticker-treeview-date-format'. | 4346 | (newsticker--treeview-list-add-item): |
| 4347 | Use `newsticker-treeview-date-format'. | ||
| 4270 | 4348 | ||
| 4271 | 2014-08-11 Glenn Morris <rgm@gnu.org> | 4349 | 2014-08-11 Glenn Morris <rgm@gnu.org> |
| 4272 | 4350 | ||
| @@ -4475,7 +4553,7 @@ | |||
| 4475 | 2014-07-30 Christophe Deleuze <christophe.deleuze@free.fr> (tiny change) | 4553 | 2014-07-30 Christophe Deleuze <christophe.deleuze@free.fr> (tiny change) |
| 4476 | 4554 | ||
| 4477 | * calendar/icalendar.el (icalendar--decode-isodatetime): | 4555 | * calendar/icalendar.el (icalendar--decode-isodatetime): |
| 4478 | Use actual current-time-zone when converting to local time. (Bug#15408) | 4556 | Use actual current-time-zone when converting to local time. (Bug#15408) |
| 4479 | 4557 | ||
| 4480 | 2014-07-29 Martin Rudalics <rudalics@gmx.at> | 4558 | 2014-07-29 Martin Rudalics <rudalics@gmx.at> |
| 4481 | 4559 | ||
| @@ -4864,7 +4942,7 @@ | |||
| 4864 | 4942 | ||
| 4865 | 2014-07-12 Fabián Ezequiel Gallina <fgallina@gnu.org> | 4943 | 2014-07-12 Fabián Ezequiel Gallina <fgallina@gnu.org> |
| 4866 | 4944 | ||
| 4867 | Fix dedenters and electric colon handling. (Bug#15163) | 4945 | Fix dedenters and electric colon handling. (Bug#15163) |
| 4868 | * progmodes/python.el | 4946 | * progmodes/python.el |
| 4869 | (python-rx-constituents): Add dedenter and block-ender. | 4947 | (python-rx-constituents): Add dedenter and block-ender. |
| 4870 | (python-indent-dedenters, python-indent-block-enders): Delete. | 4948 | (python-indent-dedenters, python-indent-block-enders): Delete. |
| @@ -5112,7 +5190,7 @@ | |||
| 5112 | 5190 | ||
| 5113 | * progmodes/python.el (python-indent-post-self-insert-function): | 5191 | * progmodes/python.el (python-indent-post-self-insert-function): |
| 5114 | Enhancements to electric indentation behavior inside | 5192 | Enhancements to electric indentation behavior inside |
| 5115 | parens. (Bug#17658) | 5193 | parens. (Bug#17658) |
| 5116 | 5194 | ||
| 5117 | 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca> | 5195 | 2014-07-03 Stefan Monnier <monnier@iro.umontreal.ca> |
| 5118 | 5196 | ||
| @@ -5903,7 +5981,7 @@ | |||
| 5903 | * help.el (help--key-binding-keymap): New function. | 5981 | * help.el (help--key-binding-keymap): New function. |
| 5904 | (help--binding-locus): New function. | 5982 | (help--binding-locus): New function. |
| 5905 | (describe-key): Mention the keymap in which the binding was | 5983 | (describe-key): Mention the keymap in which the binding was |
| 5906 | found. (bug#13948) | 5984 | found. (bug#13948) |
| 5907 | 5985 | ||
| 5908 | 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca> | 5986 | 2014-06-12 Stefan Monnier <monnier@iro.umontreal.ca> |
| 5909 | 5987 | ||
| @@ -6584,7 +6662,7 @@ | |||
| 6584 | 2014-05-24 Daniel Colascione <dancol@dancol.org> | 6662 | 2014-05-24 Daniel Colascione <dancol@dancol.org> |
| 6585 | 6663 | ||
| 6586 | * progmodes/subword.el (subword-find-word-boundary): Move point to | 6664 | * progmodes/subword.el (subword-find-word-boundary): Move point to |
| 6587 | correct spot before search. (Bug#17580) | 6665 | correct spot before search. (Bug#17580) |
| 6588 | 6666 | ||
| 6589 | * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid | 6667 | * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid |
| 6590 | breaking the build. | 6668 | breaking the build. |
| @@ -6613,7 +6691,7 @@ | |||
| 6613 | mksh. Improve custom spec; allow regular expressions. | 6691 | mksh. Improve custom spec; allow regular expressions. |
| 6614 | (sh-shell): Delegate name splitting to `sh-canonicalize-shell'. | 6692 | (sh-shell): Delegate name splitting to `sh-canonicalize-shell'. |
| 6615 | (sh-after-hack-local-variables): New function. | 6693 | (sh-after-hack-local-variables): New function. |
| 6616 | (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333) | 6694 | (sh-mode): Use it; respect file-local `sh-shell' variable. (Bug#17333) |
| 6617 | (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding | 6695 | (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding |
| 6618 | the normalization. | 6696 | the normalization. |
| 6619 | (sh-canonicalize-shell): Rewrite to support regexes. | 6697 | (sh-canonicalize-shell): Rewrite to support regexes. |
| @@ -7601,7 +7679,7 @@ | |||
| 7601 | 2014-04-07 João Távora <joaotavora@gmail.com> | 7679 | 2014-04-07 João Távora <joaotavora@gmail.com> |
| 7602 | 7680 | ||
| 7603 | Fix `electric-pair-delete-adjacent-pairs' in modes binding | 7681 | Fix `electric-pair-delete-adjacent-pairs' in modes binding |
| 7604 | backspace. (bug#16981) | 7682 | backspace. (Bug#16981) |
| 7605 | * elec-pair.el (electric-pair-backward-delete-char): Delete. | 7683 | * elec-pair.el (electric-pair-backward-delete-char): Delete. |
| 7606 | (electric-pair-backward-delete-char-untabify): Delete. | 7684 | (electric-pair-backward-delete-char-untabify): Delete. |
| 7607 | (electric-pair-mode-map): Bind backspace to a menu item filtering | 7685 | (electric-pair-mode-map): Bind backspace to a menu item filtering |
diff --git a/lisp/cedet/ChangeLog b/lisp/cedet/ChangeLog index a43e94c5686..0c9158dffe2 100644 --- a/lisp/cedet/ChangeLog +++ b/lisp/cedet/ChangeLog | |||
| @@ -17,6 +17,11 @@ | |||
| 17 | (semantic-analyze-nolongprefix-completion-at-point-function): | 17 | (semantic-analyze-nolongprefix-completion-at-point-function): |
| 18 | Do nothing if the current buffer is not using Semantic (bug#19077). | 18 | Do nothing if the current buffer is not using Semantic (bug#19077). |
| 19 | 19 | ||
| 20 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | ||
| 21 | |||
| 22 | * semantic/lex-spp.el (semantic-lex-spp-analyzer-do-replace): | ||
| 23 | Rename from semantic-lex-spp-anlyzer-do-replace. | ||
| 24 | |||
| 20 | 2014-12-08 Matt Curtis <matt.r.curtis@gmail.com> (tiny change) | 25 | 2014-12-08 Matt Curtis <matt.r.curtis@gmail.com> (tiny change) |
| 21 | 26 | ||
| 22 | * pulse.el (pulse-momentary-highlight-one-line): Respect the POINT | 27 | * pulse.el (pulse-momentary-highlight-one-line): Respect the POINT |
| @@ -215,7 +220,7 @@ | |||
| 215 | (ede-project-autoload): Remove dirmatch entry - it is no longer | 220 | (ede-project-autoload): Remove dirmatch entry - it is no longer |
| 216 | needed. | 221 | needed. |
| 217 | 222 | ||
| 218 | * lisp/cedet/ede/proj.el (project-rescan): Replace direct | 223 | * ede/proj.el (project-rescan): Replace direct |
| 219 | manipulation of `ede-projects' with equivalent and better | 224 | manipulation of `ede-projects' with equivalent and better |
| 220 | functions. | 225 | functions. |
| 221 | (ede-proj-load): Replace call to test if dir has project to | 226 | (ede-proj-load): Replace call to test if dir has project to |
| @@ -267,11 +272,10 @@ | |||
| 267 | 272 | ||
| 268 | 2014-11-09 David Engster <dengste@eml.cc> | 273 | 2014-11-09 David Engster <dengste@eml.cc> |
| 269 | 274 | ||
| 270 | * lisp/cedet/ede/proj-elisp.el | 275 | * ede/proj-elisp.el (ede-proj-target-elisp::ede-proj-tweak-autoconf): |
| 271 | (ede-proj-target-elisp::ede-proj-tweak-autoconf): Kill buffer | 276 | Kill buffer after saving modified elisp-comp script, so as to avoid |
| 272 | after saving modified elisp-comp script, as to avoid "file has | 277 | "file has changed on disk; really edit the buffer" questions when |
| 273 | changed on disk; really edit the buffer" questions when script | 278 | script gets rewritten. |
| 274 | gets rewritten. | ||
| 275 | 279 | ||
| 276 | 2014-10-29 Paul Eggert <eggert@cs.ucla.edu> | 280 | 2014-10-29 Paul Eggert <eggert@cs.ucla.edu> |
| 277 | 281 | ||
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 4049974841e..5394a1c3744 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -520,7 +520,12 @@ since it could result in memory overflow and make Emacs crash." | |||
| 520 | (const :tag "Hourglass" :value hourglass))) | 520 | (const :tag "Hourglass" :value hourglass))) |
| 521 | (display-hourglass cursor boolean) | 521 | (display-hourglass cursor boolean) |
| 522 | (hourglass-delay cursor number) | 522 | (hourglass-delay cursor number) |
| 523 | 523 | (resize-mini-windows | |
| 524 | windows (choice | ||
| 525 | (const :tag "Off (nil)" :value nil) | ||
| 526 | (const :tag "Fit (t)" :value t) | ||
| 527 | (const :tag "Grow only" :value grow-only)) | ||
| 528 | "25.1") | ||
| 524 | ;; xfaces.c | 529 | ;; xfaces.c |
| 525 | (scalable-fonts-allowed display boolean "22.1") | 530 | (scalable-fonts-allowed display boolean "22.1") |
| 526 | ;; xfns.c | 531 | ;; xfns.c |
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index bb93cce6500..acc7e767d69 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el | |||
| @@ -2062,7 +2062,10 @@ See Info node `(emacs)Subdir switches' for more details." | |||
| 2062 | ;; inserted *after* opoint. | 2062 | ;; inserted *after* opoint. |
| 2063 | (setq dirname (file-name-as-directory dirname)) | 2063 | (setq dirname (file-name-as-directory dirname)) |
| 2064 | (or (and (not switches) | 2064 | (or (and (not switches) |
| 2065 | (dired-goto-subdir dirname)) | 2065 | (when (dired-goto-subdir dirname) |
| 2066 | (unless (dired-subdir-hidden-p dirname) | ||
| 2067 | (dired-initial-position dirname)) | ||
| 2068 | t)) | ||
| 2066 | (dired-insert-subdir dirname switches no-error-if-not-dir-p)) | 2069 | (dired-insert-subdir dirname switches no-error-if-not-dir-p)) |
| 2067 | ;; Push mark so that it's easy to find back. Do this after the | 2070 | ;; Push mark so that it's easy to find back. Do this after the |
| 2068 | ;; insert message so that the user sees the `Mark set' message. | 2071 | ;; insert message so that the user sees the `Mark set' message. |
diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el index 2654bf21e6a..d7fea47601c 100644 --- a/lisp/eshell/esh-ext.el +++ b/lisp/eshell/esh-ext.el | |||
| @@ -296,6 +296,11 @@ line of the form #!<interp>." | |||
| 296 | (let ((fullname (if (file-name-directory file) file | 296 | (let ((fullname (if (file-name-directory file) file |
| 297 | (eshell-search-path file))) | 297 | (eshell-search-path file))) |
| 298 | (suffixes eshell-binary-suffixes)) | 298 | (suffixes eshell-binary-suffixes)) |
| 299 | (if (and fullname | ||
| 300 | (not (file-remote-p fullname)) | ||
| 301 | (file-remote-p default-directory)) | ||
| 302 | (setq fullname (expand-file-name | ||
| 303 | (concat "./" fullname) default-directory))) | ||
| 299 | (if (and fullname (not (or eshell-force-execution | 304 | (if (and fullname (not (or eshell-force-execution |
| 300 | (file-executable-p fullname)))) | 305 | (file-executable-p fullname)))) |
| 301 | (while suffixes | 306 | (while suffixes |
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 41579222295..92933b6a2e1 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | ;;; Code: | 3 | ;;; Code: |
| 4 | 4 | ||
| 5 | 5 | ||
| 6 | ;;;### (autoloads nil "5x5" "play/5x5.el" (21607 54478 800121 42000)) | 6 | ;;;### (autoloads nil "5x5" "play/5x5.el" (21604 48550 301934 225000)) |
| 7 | ;;; Generated autoloads from play/5x5.el | 7 | ;;; Generated autoloads from play/5x5.el |
| 8 | 8 | ||
| 9 | (autoload '5x5 "5x5" "\ | 9 | (autoload '5x5 "5x5" "\ |
| @@ -65,8 +65,8 @@ should return a grid vector array that is the new solution. | |||
| 65 | 65 | ||
| 66 | ;;;*** | 66 | ;;;*** |
| 67 | 67 | ||
| 68 | ;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (21607 54478 | 68 | ;;;### (autoloads nil "ada-mode" "progmodes/ada-mode.el" (21604 48550 |
| 69 | ;;;;;; 800121 42000)) | 69 | ;;;;;; 313934 225000)) |
| 70 | ;;; Generated autoloads from progmodes/ada-mode.el | 70 | ;;; Generated autoloads from progmodes/ada-mode.el |
| 71 | 71 | ||
| 72 | (autoload 'ada-add-extensions "ada-mode" "\ | 72 | (autoload 'ada-add-extensions "ada-mode" "\ |
| @@ -85,8 +85,8 @@ Ada mode is the major mode for editing Ada code. | |||
| 85 | 85 | ||
| 86 | ;;;*** | 86 | ;;;*** |
| 87 | 87 | ||
| 88 | ;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (21607 54478 | 88 | ;;;### (autoloads nil "ada-stmt" "progmodes/ada-stmt.el" (21604 48550 |
| 89 | ;;;;;; 800121 42000)) | 89 | ;;;;;; 313934 225000)) |
| 90 | ;;; Generated autoloads from progmodes/ada-stmt.el | 90 | ;;; Generated autoloads from progmodes/ada-stmt.el |
| 91 | 91 | ||
| 92 | (autoload 'ada-header "ada-stmt" "\ | 92 | (autoload 'ada-header "ada-stmt" "\ |
| @@ -96,8 +96,8 @@ Insert a descriptive header at the top of the file. | |||
| 96 | 96 | ||
| 97 | ;;;*** | 97 | ;;;*** |
| 98 | 98 | ||
| 99 | ;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21607 54478 | 99 | ;;;### (autoloads nil "ada-xref" "progmodes/ada-xref.el" (21604 48550 |
| 100 | ;;;;;; 800121 42000)) | 100 | ;;;;;; 313934 225000)) |
| 101 | ;;; Generated autoloads from progmodes/ada-xref.el | 101 | ;;; Generated autoloads from progmodes/ada-xref.el |
| 102 | 102 | ||
| 103 | (autoload 'ada-find-file "ada-xref" "\ | 103 | (autoload 'ada-find-file "ada-xref" "\ |
| @@ -108,8 +108,8 @@ Completion is available. | |||
| 108 | 108 | ||
| 109 | ;;;*** | 109 | ;;;*** |
| 110 | 110 | ||
| 111 | ;;;### (autoloads nil "add-log" "vc/add-log.el" (21607 54478 800121 | 111 | ;;;### (autoloads nil "add-log" "vc/add-log.el" (21604 48550 421934 |
| 112 | ;;;;;; 42000)) | 112 | ;;;;;; 229000)) |
| 113 | ;;; Generated autoloads from vc/add-log.el | 113 | ;;; Generated autoloads from vc/add-log.el |
| 114 | 114 | ||
| 115 | (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) | 115 | (put 'change-log-default-name 'safe-local-variable 'string-or-null-p) |
| @@ -238,8 +238,8 @@ old-style time formats for entries are supported. | |||
| 238 | 238 | ||
| 239 | ;;;*** | 239 | ;;;*** |
| 240 | 240 | ||
| 241 | ;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (21607 54477 | 241 | ;;;### (autoloads nil "advice" "emacs-lisp/advice.el" (21604 48550 |
| 242 | ;;;;;; 800124 118000)) | 242 | ;;;;;; 1934 214000)) |
| 243 | ;;; Generated autoloads from emacs-lisp/advice.el | 243 | ;;; Generated autoloads from emacs-lisp/advice.el |
| 244 | 244 | ||
| 245 | (defvar ad-redefinition-action 'warn "\ | 245 | (defvar ad-redefinition-action 'warn "\ |
| @@ -374,7 +374,7 @@ usage: (defadvice FUNCTION (CLASS NAME [POSITION] [ARGLIST] FLAG...) | |||
| 374 | 374 | ||
| 375 | ;;;*** | 375 | ;;;*** |
| 376 | 376 | ||
| 377 | ;;;### (autoloads nil "align" "align.el" (21607 54477 800124 118000)) | 377 | ;;;### (autoloads nil "align" "align.el" (21604 48549 921934 211000)) |
| 378 | ;;; Generated autoloads from align.el | 378 | ;;; Generated autoloads from align.el |
| 379 | 379 | ||
| 380 | (autoload 'align "align" "\ | 380 | (autoload 'align "align" "\ |
| @@ -477,7 +477,7 @@ A replacement function for `newline-and-indent', aligning as it goes. | |||
| 477 | 477 | ||
| 478 | ;;;*** | 478 | ;;;*** |
| 479 | 479 | ||
| 480 | ;;;### (autoloads nil "allout" "allout.el" (21607 54477 800124 118000)) | 480 | ;;;### (autoloads nil "allout" "allout.el" (21604 48549 925934 211000)) |
| 481 | ;;; Generated autoloads from allout.el | 481 | ;;; Generated autoloads from allout.el |
| 482 | (push (purecopy '(allout 2 3)) package--builtin-versions) | 482 | (push (purecopy '(allout 2 3)) package--builtin-versions) |
| 483 | 483 | ||
| @@ -837,8 +837,8 @@ for details on preparing Emacs for automatic allout activation. | |||
| 837 | 837 | ||
| 838 | ;;;*** | 838 | ;;;*** |
| 839 | 839 | ||
| 840 | ;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21609 | 840 | ;;;### (autoloads nil "allout-widgets" "allout-widgets.el" (21631 |
| 841 | ;;;;;; 55608 852266 580000)) | 841 | ;;;;;; 35966 795121 865000)) |
| 842 | ;;; Generated autoloads from allout-widgets.el | 842 | ;;; Generated autoloads from allout-widgets.el |
| 843 | (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) | 843 | (push (purecopy '(allout-widgets 1 0)) package--builtin-versions) |
| 844 | 844 | ||
| @@ -896,8 +896,8 @@ outline hot-spot navigation (see `allout-mode'). | |||
| 896 | 896 | ||
| 897 | ;;;*** | 897 | ;;;*** |
| 898 | 898 | ||
| 899 | ;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21607 54478 300138 | 899 | ;;;### (autoloads nil "ange-ftp" "net/ange-ftp.el" (21640 32530 974334 |
| 900 | ;;;;;; 641000)) | 900 | ;;;;;; 457000)) |
| 901 | ;;; Generated autoloads from net/ange-ftp.el | 901 | ;;; Generated autoloads from net/ange-ftp.el |
| 902 | 902 | ||
| 903 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) | 903 | (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
| @@ -918,8 +918,8 @@ directory, so that Emacs will know its current contents. | |||
| 918 | 918 | ||
| 919 | ;;;*** | 919 | ;;;*** |
| 920 | 920 | ||
| 921 | ;;;### (autoloads nil "animate" "play/animate.el" (21607 54478 800121 | 921 | ;;;### (autoloads nil "animate" "play/animate.el" (21604 48550 301934 |
| 922 | ;;;;;; 42000)) | 922 | ;;;;;; 225000)) |
| 923 | ;;; Generated autoloads from play/animate.el | 923 | ;;; Generated autoloads from play/animate.el |
| 924 | 924 | ||
| 925 | (autoload 'animate-string "animate" "\ | 925 | (autoload 'animate-string "animate" "\ |
| @@ -951,8 +951,8 @@ the buffer *Birthday-Present-for-Name*. | |||
| 951 | 951 | ||
| 952 | ;;;*** | 952 | ;;;*** |
| 953 | 953 | ||
| 954 | ;;;### (autoloads nil "ansi-color" "ansi-color.el" (21607 54477 800124 | 954 | ;;;### (autoloads nil "ansi-color" "ansi-color.el" (21604 48549 925934 |
| 955 | ;;;;;; 118000)) | 955 | ;;;;;; 211000)) |
| 956 | ;;; Generated autoloads from ansi-color.el | 956 | ;;; Generated autoloads from ansi-color.el |
| 957 | (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) | 957 | (push (purecopy '(ansi-color 3 4 2)) package--builtin-versions) |
| 958 | 958 | ||
| @@ -978,8 +978,8 @@ This is a good function to put in `comint-output-filter-functions'. | |||
| 978 | 978 | ||
| 979 | ;;;*** | 979 | ;;;*** |
| 980 | 980 | ||
| 981 | ;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (21607 | 981 | ;;;### (autoloads nil "antlr-mode" "progmodes/antlr-mode.el" (21604 |
| 982 | ;;;;;; 54478 800121 42000)) | 982 | ;;;;;; 48550 313934 225000)) |
| 983 | ;;; Generated autoloads from progmodes/antlr-mode.el | 983 | ;;; Generated autoloads from progmodes/antlr-mode.el |
| 984 | (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) | 984 | (push (purecopy '(antlr-mode 2 2 3)) package--builtin-versions) |
| 985 | 985 | ||
| @@ -1015,8 +1015,8 @@ Used in `antlr-mode'. Also a useful function in `java-mode-hook'. | |||
| 1015 | 1015 | ||
| 1016 | ;;;*** | 1016 | ;;;*** |
| 1017 | 1017 | ||
| 1018 | ;;;### (autoloads nil "appt" "calendar/appt.el" (21607 54477 800124 | 1018 | ;;;### (autoloads nil "appt" "calendar/appt.el" (21604 48549 945934 |
| 1019 | ;;;;;; 118000)) | 1019 | ;;;;;; 212000)) |
| 1020 | ;;; Generated autoloads from calendar/appt.el | 1020 | ;;; Generated autoloads from calendar/appt.el |
| 1021 | 1021 | ||
| 1022 | (autoload 'appt-add "appt" "\ | 1022 | (autoload 'appt-add "appt" "\ |
| @@ -1037,8 +1037,8 @@ ARG is positive, otherwise off. | |||
| 1037 | 1037 | ||
| 1038 | ;;;*** | 1038 | ;;;*** |
| 1039 | 1039 | ||
| 1040 | ;;;### (autoloads nil "apropos" "apropos.el" (21607 54477 800124 | 1040 | ;;;### (autoloads nil "apropos" "apropos.el" (21604 48549 925934 |
| 1041 | ;;;;;; 118000)) | 1041 | ;;;;;; 211000)) |
| 1042 | ;;; Generated autoloads from apropos.el | 1042 | ;;; Generated autoloads from apropos.el |
| 1043 | 1043 | ||
| 1044 | (autoload 'apropos-read-pattern "apropos" "\ | 1044 | (autoload 'apropos-read-pattern "apropos" "\ |
| @@ -1153,8 +1153,8 @@ Returns list of symbols and documentation found. | |||
| 1153 | 1153 | ||
| 1154 | ;;;*** | 1154 | ;;;*** |
| 1155 | 1155 | ||
| 1156 | ;;;### (autoloads nil "arc-mode" "arc-mode.el" (21621 7062 810116 | 1156 | ;;;### (autoloads nil "arc-mode" "arc-mode.el" (21631 35966 799121 |
| 1157 | ;;;;;; 332000)) | 1157 | ;;;;;; 866000)) |
| 1158 | ;;; Generated autoloads from arc-mode.el | 1158 | ;;; Generated autoloads from arc-mode.el |
| 1159 | 1159 | ||
| 1160 | (autoload 'archive-mode "arc-mode" "\ | 1160 | (autoload 'archive-mode "arc-mode" "\ |
| @@ -1174,7 +1174,7 @@ archive. | |||
| 1174 | 1174 | ||
| 1175 | ;;;*** | 1175 | ;;;*** |
| 1176 | 1176 | ||
| 1177 | ;;;### (autoloads nil "array" "array.el" (21607 54477 800124 118000)) | 1177 | ;;;### (autoloads nil "array" "array.el" (21604 48549 925934 211000)) |
| 1178 | ;;; Generated autoloads from array.el | 1178 | ;;; Generated autoloads from array.el |
| 1179 | 1179 | ||
| 1180 | (autoload 'array-mode "array" "\ | 1180 | (autoload 'array-mode "array" "\ |
| @@ -1245,8 +1245,8 @@ Entering array mode calls the function `array-mode-hook'. | |||
| 1245 | 1245 | ||
| 1246 | ;;;*** | 1246 | ;;;*** |
| 1247 | 1247 | ||
| 1248 | ;;;### (autoloads nil "artist" "textmodes/artist.el" (21607 54478 | 1248 | ;;;### (autoloads nil "artist" "textmodes/artist.el" (21604 48550 |
| 1249 | ;;;;;; 800121 42000)) | 1249 | ;;;;;; 393934 228000)) |
| 1250 | ;;; Generated autoloads from textmodes/artist.el | 1250 | ;;; Generated autoloads from textmodes/artist.el |
| 1251 | (push (purecopy '(artist 1 2 6)) package--builtin-versions) | 1251 | (push (purecopy '(artist 1 2 6)) package--builtin-versions) |
| 1252 | 1252 | ||
| @@ -1452,8 +1452,8 @@ Keymap summary | |||
| 1452 | 1452 | ||
| 1453 | ;;;*** | 1453 | ;;;*** |
| 1454 | 1454 | ||
| 1455 | ;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (21607 54478 | 1455 | ;;;### (autoloads nil "asm-mode" "progmodes/asm-mode.el" (21604 48550 |
| 1456 | ;;;;;; 800121 42000)) | 1456 | ;;;;;; 313934 225000)) |
| 1457 | ;;; Generated autoloads from progmodes/asm-mode.el | 1457 | ;;; Generated autoloads from progmodes/asm-mode.el |
| 1458 | 1458 | ||
| 1459 | (autoload 'asm-mode "asm-mode" "\ | 1459 | (autoload 'asm-mode "asm-mode" "\ |
| @@ -1480,8 +1480,8 @@ Special commands: | |||
| 1480 | 1480 | ||
| 1481 | ;;;*** | 1481 | ;;;*** |
| 1482 | 1482 | ||
| 1483 | ;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (21625 | 1483 | ;;;### (autoloads nil "auth-source" "gnus/auth-source.el" (21631 |
| 1484 | ;;;;;; 43838 483701 627000)) | 1484 | ;;;;;; 35966 847121 867000)) |
| 1485 | ;;; Generated autoloads from gnus/auth-source.el | 1485 | ;;; Generated autoloads from gnus/auth-source.el |
| 1486 | 1486 | ||
| 1487 | (defvar auth-source-cache-expiry 7200 "\ | 1487 | (defvar auth-source-cache-expiry 7200 "\ |
| @@ -1493,8 +1493,8 @@ let-binding.") | |||
| 1493 | 1493 | ||
| 1494 | ;;;*** | 1494 | ;;;*** |
| 1495 | 1495 | ||
| 1496 | ;;;### (autoloads nil "autoarg" "autoarg.el" (21607 54477 800124 | 1496 | ;;;### (autoloads nil "autoarg" "autoarg.el" (21604 48549 925934 |
| 1497 | ;;;;;; 118000)) | 1497 | ;;;;;; 211000)) |
| 1498 | ;;; Generated autoloads from autoarg.el | 1498 | ;;; Generated autoloads from autoarg.el |
| 1499 | 1499 | ||
| 1500 | (defvar autoarg-mode nil "\ | 1500 | (defvar autoarg-mode nil "\ |
| @@ -1554,8 +1554,8 @@ This is similar to `autoarg-mode' but rebinds the keypad keys | |||
| 1554 | 1554 | ||
| 1555 | ;;;*** | 1555 | ;;;*** |
| 1556 | 1556 | ||
| 1557 | ;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (21607 54478 | 1557 | ;;;### (autoloads nil "autoconf" "progmodes/autoconf.el" (21604 48550 |
| 1558 | ;;;;;; 800121 42000)) | 1558 | ;;;;;; 313934 225000)) |
| 1559 | ;;; Generated autoloads from progmodes/autoconf.el | 1559 | ;;; Generated autoloads from progmodes/autoconf.el |
| 1560 | 1560 | ||
| 1561 | (autoload 'autoconf-mode "autoconf" "\ | 1561 | (autoload 'autoconf-mode "autoconf" "\ |
| @@ -1565,8 +1565,8 @@ Major mode for editing Autoconf configure.ac files. | |||
| 1565 | 1565 | ||
| 1566 | ;;;*** | 1566 | ;;;*** |
| 1567 | 1567 | ||
| 1568 | ;;;### (autoloads nil "autoinsert" "autoinsert.el" (21607 54477 800124 | 1568 | ;;;### (autoloads nil "autoinsert" "autoinsert.el" (21637 50476 651217 |
| 1569 | ;;;;;; 118000)) | 1569 | ;;;;;; 120000)) |
| 1570 | ;;; Generated autoloads from autoinsert.el | 1570 | ;;; Generated autoloads from autoinsert.el |
| 1571 | 1571 | ||
| 1572 | (autoload 'auto-insert "autoinsert" "\ | 1572 | (autoload 'auto-insert "autoinsert" "\ |
| @@ -1604,8 +1604,8 @@ insert a template for the file depending on the mode of the buffer. | |||
| 1604 | 1604 | ||
| 1605 | ;;;*** | 1605 | ;;;*** |
| 1606 | 1606 | ||
| 1607 | ;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21628 | 1607 | ;;;### (autoloads nil "autoload" "emacs-lisp/autoload.el" (21631 |
| 1608 | ;;;;;; 43483 380149 771000)) | 1608 | ;;;;;; 35966 819121 866000)) |
| 1609 | ;;; Generated autoloads from emacs-lisp/autoload.el | 1609 | ;;; Generated autoloads from emacs-lisp/autoload.el |
| 1610 | 1610 | ||
| 1611 | (put 'generated-autoload-file 'safe-local-variable 'stringp) | 1611 | (put 'generated-autoload-file 'safe-local-variable 'stringp) |
| @@ -1656,8 +1656,8 @@ should be non-nil). | |||
| 1656 | 1656 | ||
| 1657 | ;;;*** | 1657 | ;;;*** |
| 1658 | 1658 | ||
| 1659 | ;;;### (autoloads nil "autorevert" "autorevert.el" (21607 54477 800124 | 1659 | ;;;### (autoloads nil "autorevert" "autorevert.el" (21604 48549 929934 |
| 1660 | ;;;;;; 118000)) | 1660 | ;;;;;; 211000)) |
| 1661 | ;;; Generated autoloads from autorevert.el | 1661 | ;;; Generated autoloads from autorevert.el |
| 1662 | 1662 | ||
| 1663 | (autoload 'auto-revert-mode "autorevert" "\ | 1663 | (autoload 'auto-revert-mode "autorevert" "\ |
| @@ -1745,7 +1745,7 @@ specifies in the mode line. | |||
| 1745 | 1745 | ||
| 1746 | ;;;*** | 1746 | ;;;*** |
| 1747 | 1747 | ||
| 1748 | ;;;### (autoloads nil "avoid" "avoid.el" (21607 54477 800124 118000)) | 1748 | ;;;### (autoloads nil "avoid" "avoid.el" (21604 48549 929934 211000)) |
| 1749 | ;;; Generated autoloads from avoid.el | 1749 | ;;; Generated autoloads from avoid.el |
| 1750 | 1750 | ||
| 1751 | (defvar mouse-avoidance-mode nil "\ | 1751 | (defvar mouse-avoidance-mode nil "\ |
| @@ -1783,8 +1783,8 @@ definition of \"random distance\".) | |||
| 1783 | 1783 | ||
| 1784 | ;;;*** | 1784 | ;;;*** |
| 1785 | 1785 | ||
| 1786 | ;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (21607 54478 | 1786 | ;;;### (autoloads nil "bat-mode" "progmodes/bat-mode.el" (21604 48550 |
| 1787 | ;;;;;; 800121 42000)) | 1787 | ;;;;;; 313934 225000)) |
| 1788 | ;;; Generated autoloads from progmodes/bat-mode.el | 1788 | ;;; Generated autoloads from progmodes/bat-mode.el |
| 1789 | 1789 | ||
| 1790 | (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) | 1790 | (add-to-list 'auto-mode-alist '("\\.\\(bat\\|cmd\\)\\'" . bat-mode)) |
| @@ -1802,8 +1802,8 @@ Run script using `bat-run' and `bat-run-args'. | |||
| 1802 | 1802 | ||
| 1803 | ;;;*** | 1803 | ;;;*** |
| 1804 | 1804 | ||
| 1805 | ;;;### (autoloads nil "battery" "battery.el" (21607 54477 800124 | 1805 | ;;;### (autoloads nil "battery" "battery.el" (21604 48549 929934 |
| 1806 | ;;;;;; 118000)) | 1806 | ;;;;;; 211000)) |
| 1807 | ;;; Generated autoloads from battery.el | 1807 | ;;; Generated autoloads from battery.el |
| 1808 | (put 'battery-mode-line-string 'risky-local-variable t) | 1808 | (put 'battery-mode-line-string 'risky-local-variable t) |
| 1809 | 1809 | ||
| @@ -1838,8 +1838,8 @@ seconds. | |||
| 1838 | 1838 | ||
| 1839 | ;;;*** | 1839 | ;;;*** |
| 1840 | 1840 | ||
| 1841 | ;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (21607 | 1841 | ;;;### (autoloads nil "benchmark" "emacs-lisp/benchmark.el" (21604 |
| 1842 | ;;;;;; 54477 800124 118000)) | 1842 | ;;;;;; 48550 1934 214000)) |
| 1843 | ;;; Generated autoloads from emacs-lisp/benchmark.el | 1843 | ;;; Generated autoloads from emacs-lisp/benchmark.el |
| 1844 | 1844 | ||
| 1845 | (autoload 'benchmark-run "benchmark" "\ | 1845 | (autoload 'benchmark-run "benchmark" "\ |
| @@ -1875,8 +1875,8 @@ For non-interactive use see also `benchmark-run' and | |||
| 1875 | 1875 | ||
| 1876 | ;;;*** | 1876 | ;;;*** |
| 1877 | 1877 | ||
| 1878 | ;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21607 54478 | 1878 | ;;;### (autoloads nil "bibtex" "textmodes/bibtex.el" (21604 48550 |
| 1879 | ;;;;;; 800121 42000)) | 1879 | ;;;;;; 393934 228000)) |
| 1880 | ;;; Generated autoloads from textmodes/bibtex.el | 1880 | ;;; Generated autoloads from textmodes/bibtex.el |
| 1881 | 1881 | ||
| 1882 | (autoload 'bibtex-initialize "bibtex" "\ | 1882 | (autoload 'bibtex-initialize "bibtex" "\ |
| @@ -1968,7 +1968,7 @@ A prefix arg negates the value of `bibtex-search-entry-globally'. | |||
| 1968 | ;;;*** | 1968 | ;;;*** |
| 1969 | 1969 | ||
| 1970 | ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" | 1970 | ;;;### (autoloads nil "bibtex-style" "textmodes/bibtex-style.el" |
| 1971 | ;;;;;; (21607 54478 800121 42000)) | 1971 | ;;;;;; (21604 48550 393934 228000)) |
| 1972 | ;;; Generated autoloads from textmodes/bibtex-style.el | 1972 | ;;; Generated autoloads from textmodes/bibtex-style.el |
| 1973 | 1973 | ||
| 1974 | (autoload 'bibtex-style-mode "bibtex-style" "\ | 1974 | (autoload 'bibtex-style-mode "bibtex-style" "\ |
| @@ -1978,8 +1978,8 @@ Major mode for editing BibTeX style files. | |||
| 1978 | 1978 | ||
| 1979 | ;;;*** | 1979 | ;;;*** |
| 1980 | 1980 | ||
| 1981 | ;;;### (autoloads nil "binhex" "mail/binhex.el" (21607 54478 300138 | 1981 | ;;;### (autoloads nil "binhex" "mail/binhex.el" (21604 48550 181934 |
| 1982 | ;;;;;; 641000)) | 1982 | ;;;;;; 220000)) |
| 1983 | ;;; Generated autoloads from mail/binhex.el | 1983 | ;;; Generated autoloads from mail/binhex.el |
| 1984 | 1984 | ||
| 1985 | (defconst binhex-begin-line "^:...............................................................$" "\ | 1985 | (defconst binhex-begin-line "^:...............................................................$" "\ |
| @@ -2003,8 +2003,8 @@ Binhex decode region between START and END. | |||
| 2003 | 2003 | ||
| 2004 | ;;;*** | 2004 | ;;;*** |
| 2005 | 2005 | ||
| 2006 | ;;;### (autoloads nil "blackbox" "play/blackbox.el" (21607 54478 | 2006 | ;;;### (autoloads nil "blackbox" "play/blackbox.el" (21604 48550 |
| 2007 | ;;;;;; 800121 42000)) | 2007 | ;;;;;; 301934 225000)) |
| 2008 | ;;; Generated autoloads from play/blackbox.el | 2008 | ;;; Generated autoloads from play/blackbox.el |
| 2009 | 2009 | ||
| 2010 | (autoload 'blackbox "blackbox" "\ | 2010 | (autoload 'blackbox "blackbox" "\ |
| @@ -2123,8 +2123,8 @@ a reflection. | |||
| 2123 | 2123 | ||
| 2124 | ;;;*** | 2124 | ;;;*** |
| 2125 | 2125 | ||
| 2126 | ;;;### (autoloads nil "bookmark" "bookmark.el" (21607 54477 800124 | 2126 | ;;;### (autoloads nil "bookmark" "bookmark.el" (21604 48549 929934 |
| 2127 | ;;;;;; 118000)) | 2127 | ;;;;;; 211000)) |
| 2128 | ;;; Generated autoloads from bookmark.el | 2128 | ;;; Generated autoloads from bookmark.el |
| 2129 | (define-key ctl-x-r-map "b" 'bookmark-jump) | 2129 | (define-key ctl-x-r-map "b" 'bookmark-jump) |
| 2130 | (define-key ctl-x-r-map "m" 'bookmark-set) | 2130 | (define-key ctl-x-r-map "m" 'bookmark-set) |
| @@ -2317,8 +2317,8 @@ Incremental search of bookmarks, hiding the non-matches as we go. | |||
| 2317 | 2317 | ||
| 2318 | ;;;*** | 2318 | ;;;*** |
| 2319 | 2319 | ||
| 2320 | ;;;### (autoloads nil "browse-url" "net/browse-url.el" (21607 54478 | 2320 | ;;;### (autoloads nil "browse-url" "net/browse-url.el" (21604 48550 |
| 2321 | ;;;;;; 300138 641000)) | 2321 | ;;;;;; 213934 222000)) |
| 2322 | ;;; Generated autoloads from net/browse-url.el | 2322 | ;;; Generated autoloads from net/browse-url.el |
| 2323 | 2323 | ||
| 2324 | (defvar browse-url-browser-function 'browse-url-default-browser "\ | 2324 | (defvar browse-url-browser-function 'browse-url-default-browser "\ |
| @@ -2633,7 +2633,7 @@ from `browse-url-elinks-wrapper'. | |||
| 2633 | 2633 | ||
| 2634 | ;;;*** | 2634 | ;;;*** |
| 2635 | 2635 | ||
| 2636 | ;;;### (autoloads nil "bs" "bs.el" (21607 54477 800124 118000)) | 2636 | ;;;### (autoloads nil "bs" "bs.el" (21604 48549 929934 211000)) |
| 2637 | ;;; Generated autoloads from bs.el | 2637 | ;;; Generated autoloads from bs.el |
| 2638 | (push (purecopy '(bs 1 17)) package--builtin-versions) | 2638 | (push (purecopy '(bs 1 17)) package--builtin-versions) |
| 2639 | 2639 | ||
| @@ -2674,8 +2674,8 @@ name of buffer configuration. | |||
| 2674 | 2674 | ||
| 2675 | ;;;*** | 2675 | ;;;*** |
| 2676 | 2676 | ||
| 2677 | ;;;### (autoloads nil "bubbles" "play/bubbles.el" (21607 54478 800121 | 2677 | ;;;### (autoloads nil "bubbles" "play/bubbles.el" (21604 48550 301934 |
| 2678 | ;;;;;; 42000)) | 2678 | ;;;;;; 225000)) |
| 2679 | ;;; Generated autoloads from play/bubbles.el | 2679 | ;;; Generated autoloads from play/bubbles.el |
| 2680 | 2680 | ||
| 2681 | (autoload 'bubbles "bubbles" "\ | 2681 | (autoload 'bubbles "bubbles" "\ |
| @@ -2697,7 +2697,7 @@ columns on its right towards the left. | |||
| 2697 | ;;;*** | 2697 | ;;;*** |
| 2698 | 2698 | ||
| 2699 | ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" | 2699 | ;;;### (autoloads nil "bug-reference" "progmodes/bug-reference.el" |
| 2700 | ;;;;;; (21607 54478 800121 42000)) | 2700 | ;;;;;; (21604 48550 313934 225000)) |
| 2701 | ;;; Generated autoloads from progmodes/bug-reference.el | 2701 | ;;; Generated autoloads from progmodes/bug-reference.el |
| 2702 | 2702 | ||
| 2703 | (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) | 2703 | (put 'bug-reference-url-format 'safe-local-variable (lambda (s) (or (stringp s) (and (symbolp s) (get s 'bug-reference-url-format))))) |
| @@ -2717,8 +2717,8 @@ Like `bug-reference-mode', but only buttonize in comments and strings. | |||
| 2717 | 2717 | ||
| 2718 | ;;;*** | 2718 | ;;;*** |
| 2719 | 2719 | ||
| 2720 | ;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21607 | 2720 | ;;;### (autoloads nil "bytecomp" "emacs-lisp/bytecomp.el" (21645 |
| 2721 | ;;;;;; 54477 800124 118000)) | 2721 | ;;;;;; 25761 789186 828000)) |
| 2722 | ;;; Generated autoloads from emacs-lisp/bytecomp.el | 2722 | ;;; Generated autoloads from emacs-lisp/bytecomp.el |
| 2723 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) | 2723 | (put 'byte-compile-dynamic 'safe-local-variable 'booleanp) |
| 2724 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) | 2724 | (put 'byte-compile-disable-print-circle 'safe-local-variable 'booleanp) |
| @@ -2838,8 +2838,8 @@ and corresponding effects. | |||
| 2838 | 2838 | ||
| 2839 | ;;;*** | 2839 | ;;;*** |
| 2840 | 2840 | ||
| 2841 | ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21617 | 2841 | ;;;### (autoloads nil "cal-china" "calendar/cal-china.el" (21631 |
| 2842 | ;;;;;; 49721 420132 227000)) | 2842 | ;;;;;; 35966 799121 866000)) |
| 2843 | ;;; Generated autoloads from calendar/cal-china.el | 2843 | ;;; Generated autoloads from calendar/cal-china.el |
| 2844 | 2844 | ||
| 2845 | (put 'calendar-chinese-time-zone 'risky-local-variable t) | 2845 | (put 'calendar-chinese-time-zone 'risky-local-variable t) |
| @@ -2848,8 +2848,8 @@ and corresponding effects. | |||
| 2848 | 2848 | ||
| 2849 | ;;;*** | 2849 | ;;;*** |
| 2850 | 2850 | ||
| 2851 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (21609 55608 | 2851 | ;;;### (autoloads nil "cal-dst" "calendar/cal-dst.el" (21631 35966 |
| 2852 | ;;;;;; 852266 580000)) | 2852 | ;;;;;; 799121 866000)) |
| 2853 | ;;; Generated autoloads from calendar/cal-dst.el | 2853 | ;;; Generated autoloads from calendar/cal-dst.el |
| 2854 | 2854 | ||
| 2855 | (put 'calendar-daylight-savings-starts 'risky-local-variable t) | 2855 | (put 'calendar-daylight-savings-starts 'risky-local-variable t) |
| @@ -2860,8 +2860,8 @@ and corresponding effects. | |||
| 2860 | 2860 | ||
| 2861 | ;;;*** | 2861 | ;;;*** |
| 2862 | 2862 | ||
| 2863 | ;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (21607 | 2863 | ;;;### (autoloads nil "cal-hebrew" "calendar/cal-hebrew.el" (21604 |
| 2864 | ;;;;;; 54477 800124 118000)) | 2864 | ;;;;;; 48549 949934 212000)) |
| 2865 | ;;; Generated autoloads from calendar/cal-hebrew.el | 2865 | ;;; Generated autoloads from calendar/cal-hebrew.el |
| 2866 | 2866 | ||
| 2867 | (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ | 2867 | (autoload 'calendar-hebrew-list-yahrzeits "cal-hebrew" "\ |
| @@ -2873,7 +2873,7 @@ from the cursor position. | |||
| 2873 | 2873 | ||
| 2874 | ;;;*** | 2874 | ;;;*** |
| 2875 | 2875 | ||
| 2876 | ;;;### (autoloads nil "calc" "calc/calc.el" (21607 54477 800124 118000)) | 2876 | ;;;### (autoloads nil "calc" "calc/calc.el" (21604 48549 945934 212000)) |
| 2877 | ;;; Generated autoloads from calc/calc.el | 2877 | ;;; Generated autoloads from calc/calc.el |
| 2878 | (define-key ctl-x-map "*" 'calc-dispatch) | 2878 | (define-key ctl-x-map "*" 'calc-dispatch) |
| 2879 | 2879 | ||
| @@ -2959,8 +2959,8 @@ See Info node `(calc)Defining Functions'. | |||
| 2959 | 2959 | ||
| 2960 | ;;;*** | 2960 | ;;;*** |
| 2961 | 2961 | ||
| 2962 | ;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (21607 54477 | 2962 | ;;;### (autoloads nil "calc-undo" "calc/calc-undo.el" (21604 48549 |
| 2963 | ;;;;;; 800124 118000)) | 2963 | ;;;;;; 941934 211000)) |
| 2964 | ;;; Generated autoloads from calc/calc-undo.el | 2964 | ;;; Generated autoloads from calc/calc-undo.el |
| 2965 | 2965 | ||
| 2966 | (autoload 'calc-undo "calc-undo" "\ | 2966 | (autoload 'calc-undo "calc-undo" "\ |
| @@ -2970,8 +2970,8 @@ See Info node `(calc)Defining Functions'. | |||
| 2970 | 2970 | ||
| 2971 | ;;;*** | 2971 | ;;;*** |
| 2972 | 2972 | ||
| 2973 | ;;;### (autoloads nil "calculator" "calculator.el" (21607 54477 800124 | 2973 | ;;;### (autoloads nil "calculator" "calculator.el" (21604 48549 945934 |
| 2974 | ;;;;;; 118000)) | 2974 | ;;;;;; 212000)) |
| 2975 | ;;; Generated autoloads from calculator.el | 2975 | ;;; Generated autoloads from calculator.el |
| 2976 | 2976 | ||
| 2977 | (autoload 'calculator "calculator" "\ | 2977 | (autoload 'calculator "calculator" "\ |
| @@ -2982,8 +2982,8 @@ See the documentation for `calculator-mode' for more information. | |||
| 2982 | 2982 | ||
| 2983 | ;;;*** | 2983 | ;;;*** |
| 2984 | 2984 | ||
| 2985 | ;;;### (autoloads nil "calendar" "calendar/calendar.el" (21607 54477 | 2985 | ;;;### (autoloads nil "calendar" "calendar/calendar.el" (21604 48549 |
| 2986 | ;;;;;; 800124 118000)) | 2986 | ;;;;;; 953934 212000)) |
| 2987 | ;;; Generated autoloads from calendar/calendar.el | 2987 | ;;; Generated autoloads from calendar/calendar.el |
| 2988 | 2988 | ||
| 2989 | (autoload 'calendar "calendar" "\ | 2989 | (autoload 'calendar "calendar" "\ |
| @@ -3026,8 +3026,8 @@ This function is suitable for execution in an init file. | |||
| 3026 | 3026 | ||
| 3027 | ;;;*** | 3027 | ;;;*** |
| 3028 | 3028 | ||
| 3029 | ;;;### (autoloads nil "canlock" "gnus/canlock.el" (21607 54478 300138 | 3029 | ;;;### (autoloads nil "canlock" "gnus/canlock.el" (21604 48550 81934 |
| 3030 | ;;;;;; 641000)) | 3030 | ;;;;;; 217000)) |
| 3031 | ;;; Generated autoloads from gnus/canlock.el | 3031 | ;;; Generated autoloads from gnus/canlock.el |
| 3032 | 3032 | ||
| 3033 | (autoload 'canlock-insert-header "canlock" "\ | 3033 | (autoload 'canlock-insert-header "canlock" "\ |
| @@ -3044,8 +3044,8 @@ it fails. | |||
| 3044 | 3044 | ||
| 3045 | ;;;*** | 3045 | ;;;*** |
| 3046 | 3046 | ||
| 3047 | ;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21623 | 3047 | ;;;### (autoloads nil "cc-engine" "progmodes/cc-engine.el" (21659 |
| 3048 | ;;;;;; 2108 292281 129000)) | 3048 | ;;;;;; 61733 214949 164000)) |
| 3049 | ;;; Generated autoloads from progmodes/cc-engine.el | 3049 | ;;; Generated autoloads from progmodes/cc-engine.el |
| 3050 | 3050 | ||
| 3051 | (autoload 'c-guess-basic-syntax "cc-engine" "\ | 3051 | (autoload 'c-guess-basic-syntax "cc-engine" "\ |
| @@ -3055,8 +3055,8 @@ Return the syntactic context of the current line. | |||
| 3055 | 3055 | ||
| 3056 | ;;;*** | 3056 | ;;;*** |
| 3057 | 3057 | ||
| 3058 | ;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21607 54478 | 3058 | ;;;### (autoloads nil "cc-guess" "progmodes/cc-guess.el" (21631 35966 |
| 3059 | ;;;;;; 800121 42000)) | 3059 | ;;;;;; 903121 869000)) |
| 3060 | ;;; Generated autoloads from progmodes/cc-guess.el | 3060 | ;;; Generated autoloads from progmodes/cc-guess.el |
| 3061 | 3061 | ||
| 3062 | (defvar c-guess-guessed-offsets-alist nil "\ | 3062 | (defvar c-guess-guessed-offsets-alist nil "\ |
| @@ -3154,8 +3154,8 @@ the absolute file name of the file if STYLE-NAME is nil. | |||
| 3154 | 3154 | ||
| 3155 | ;;;*** | 3155 | ;;;*** |
| 3156 | 3156 | ||
| 3157 | ;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21607 54478 | 3157 | ;;;### (autoloads nil "cc-mode" "progmodes/cc-mode.el" (21651 20707 |
| 3158 | ;;;;;; 800121 42000)) | 3158 | ;;;;;; 184225 752000)) |
| 3159 | ;;; Generated autoloads from progmodes/cc-mode.el | 3159 | ;;; Generated autoloads from progmodes/cc-mode.el |
| 3160 | 3160 | ||
| 3161 | (autoload 'c-initialize-cc-mode "cc-mode" "\ | 3161 | (autoload 'c-initialize-cc-mode "cc-mode" "\ |
| @@ -3312,8 +3312,8 @@ Key bindings: | |||
| 3312 | 3312 | ||
| 3313 | ;;;*** | 3313 | ;;;*** |
| 3314 | 3314 | ||
| 3315 | ;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (21607 | 3315 | ;;;### (autoloads nil "cc-styles" "progmodes/cc-styles.el" (21631 |
| 3316 | ;;;;;; 54478 800121 42000)) | 3316 | ;;;;;; 35966 907121 870000)) |
| 3317 | ;;; Generated autoloads from progmodes/cc-styles.el | 3317 | ;;; Generated autoloads from progmodes/cc-styles.el |
| 3318 | 3318 | ||
| 3319 | (autoload 'c-set-style "cc-styles" "\ | 3319 | (autoload 'c-set-style "cc-styles" "\ |
| @@ -3364,8 +3364,8 @@ and exists only for compatibility reasons. | |||
| 3364 | 3364 | ||
| 3365 | ;;;*** | 3365 | ;;;*** |
| 3366 | 3366 | ||
| 3367 | ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (21607 54478 | 3367 | ;;;### (autoloads nil "cc-vars" "progmodes/cc-vars.el" (21631 35966 |
| 3368 | ;;;;;; 800121 42000)) | 3368 | ;;;;;; 907121 870000)) |
| 3369 | ;;; Generated autoloads from progmodes/cc-vars.el | 3369 | ;;; Generated autoloads from progmodes/cc-vars.el |
| 3370 | (put 'c-basic-offset 'safe-local-variable 'integerp) | 3370 | (put 'c-basic-offset 'safe-local-variable 'integerp) |
| 3371 | (put 'c-backslash-column 'safe-local-variable 'integerp) | 3371 | (put 'c-backslash-column 'safe-local-variable 'integerp) |
| @@ -3373,8 +3373,8 @@ and exists only for compatibility reasons. | |||
| 3373 | 3373 | ||
| 3374 | ;;;*** | 3374 | ;;;*** |
| 3375 | 3375 | ||
| 3376 | ;;;### (autoloads nil "ccl" "international/ccl.el" (21607 54478 300138 | 3376 | ;;;### (autoloads nil "ccl" "international/ccl.el" (21604 48550 133934 |
| 3377 | ;;;;;; 641000)) | 3377 | ;;;;;; 219000)) |
| 3378 | ;;; Generated autoloads from international/ccl.el | 3378 | ;;; Generated autoloads from international/ccl.el |
| 3379 | 3379 | ||
| 3380 | (autoload 'ccl-compile "ccl" "\ | 3380 | (autoload 'ccl-compile "ccl" "\ |
| @@ -3634,8 +3634,8 @@ See the documentation of `define-ccl-program' for the detail of CCL program. | |||
| 3634 | 3634 | ||
| 3635 | ;;;*** | 3635 | ;;;*** |
| 3636 | 3636 | ||
| 3637 | ;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (21607 54477 | 3637 | ;;;### (autoloads nil "cconv" "emacs-lisp/cconv.el" (21645 25761 |
| 3638 | ;;;;;; 800124 118000)) | 3638 | ;;;;;; 789186 828000)) |
| 3639 | ;;; Generated autoloads from emacs-lisp/cconv.el | 3639 | ;;; Generated autoloads from emacs-lisp/cconv.el |
| 3640 | 3640 | ||
| 3641 | (autoload 'cconv-closure-convert "cconv" "\ | 3641 | (autoload 'cconv-closure-convert "cconv" "\ |
| @@ -3654,15 +3654,15 @@ Add the warnings that closure conversion would encounter. | |||
| 3654 | 3654 | ||
| 3655 | ;;;*** | 3655 | ;;;*** |
| 3656 | 3656 | ||
| 3657 | ;;;### (autoloads nil "cedet" "cedet/cedet.el" (21607 54477 800124 | 3657 | ;;;### (autoloads nil "cedet" "cedet/cedet.el" (21604 48549 957934 |
| 3658 | ;;;;;; 118000)) | 3658 | ;;;;;; 212000)) |
| 3659 | ;;; Generated autoloads from cedet/cedet.el | 3659 | ;;; Generated autoloads from cedet/cedet.el |
| 3660 | (push (purecopy '(cedet 2 0)) package--builtin-versions) | 3660 | (push (purecopy '(cedet 2 0)) package--builtin-versions) |
| 3661 | 3661 | ||
| 3662 | ;;;*** | 3662 | ;;;*** |
| 3663 | 3663 | ||
| 3664 | ;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (21607 54478 | 3664 | ;;;### (autoloads nil "cfengine" "progmodes/cfengine.el" (21604 48550 |
| 3665 | ;;;;;; 800121 42000)) | 3665 | ;;;;;; 321934 226000)) |
| 3666 | ;;; Generated autoloads from progmodes/cfengine.el | 3666 | ;;; Generated autoloads from progmodes/cfengine.el |
| 3667 | (push (purecopy '(cfengine 1 3)) package--builtin-versions) | 3667 | (push (purecopy '(cfengine 1 3)) package--builtin-versions) |
| 3668 | 3668 | ||
| @@ -3691,15 +3691,15 @@ Choose `cfengine2-mode' or `cfengine3-mode' by buffer contents. | |||
| 3691 | 3691 | ||
| 3692 | ;;;*** | 3692 | ;;;*** |
| 3693 | 3693 | ||
| 3694 | ;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21607 54477 | 3694 | ;;;### (autoloads nil "chart" "emacs-lisp/chart.el" (21604 48550 |
| 3695 | ;;;;;; 800124 118000)) | 3695 | ;;;;;; 5934 214000)) |
| 3696 | ;;; Generated autoloads from emacs-lisp/chart.el | 3696 | ;;; Generated autoloads from emacs-lisp/chart.el |
| 3697 | (push (purecopy '(chart 0 2)) package--builtin-versions) | 3697 | (push (purecopy '(chart 0 2)) package--builtin-versions) |
| 3698 | 3698 | ||
| 3699 | ;;;*** | 3699 | ;;;*** |
| 3700 | 3700 | ||
| 3701 | ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" | 3701 | ;;;### (autoloads nil "check-declare" "emacs-lisp/check-declare.el" |
| 3702 | ;;;;;; (21607 54477 800124 118000)) | 3702 | ;;;;;; (21604 48550 5934 214000)) |
| 3703 | ;;; Generated autoloads from emacs-lisp/check-declare.el | 3703 | ;;; Generated autoloads from emacs-lisp/check-declare.el |
| 3704 | 3704 | ||
| 3705 | (autoload 'check-declare-file "check-declare" "\ | 3705 | (autoload 'check-declare-file "check-declare" "\ |
| @@ -3716,8 +3716,8 @@ Returns non-nil if any false statements are found. | |||
| 3716 | 3716 | ||
| 3717 | ;;;*** | 3717 | ;;;*** |
| 3718 | 3718 | ||
| 3719 | ;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21607 | 3719 | ;;;### (autoloads nil "checkdoc" "emacs-lisp/checkdoc.el" (21604 |
| 3720 | ;;;;;; 54477 800124 118000)) | 3720 | ;;;;;; 48550 9934 214000)) |
| 3721 | ;;; Generated autoloads from emacs-lisp/checkdoc.el | 3721 | ;;; Generated autoloads from emacs-lisp/checkdoc.el |
| 3722 | (push (purecopy '(checkdoc 0 6 2)) package--builtin-versions) | 3722 | (push (purecopy '(checkdoc 0 6 2)) package--builtin-versions) |
| 3723 | (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) | 3723 | (put 'checkdoc-force-docstrings-flag 'safe-local-variable #'booleanp) |
| @@ -3917,8 +3917,8 @@ checking of documentation strings. | |||
| 3917 | 3917 | ||
| 3918 | ;;;*** | 3918 | ;;;*** |
| 3919 | 3919 | ||
| 3920 | ;;;### (autoloads nil "china-util" "language/china-util.el" (21607 | 3920 | ;;;### (autoloads nil "china-util" "language/china-util.el" (21604 |
| 3921 | ;;;;;; 54478 300138 641000)) | 3921 | ;;;;;; 48550 145934 219000)) |
| 3922 | ;;; Generated autoloads from language/china-util.el | 3922 | ;;; Generated autoloads from language/china-util.el |
| 3923 | 3923 | ||
| 3924 | (autoload 'decode-hz-region "china-util" "\ | 3924 | (autoload 'decode-hz-region "china-util" "\ |
| @@ -3955,8 +3955,8 @@ Encode the text in the current buffer to HZ. | |||
| 3955 | 3955 | ||
| 3956 | ;;;*** | 3956 | ;;;*** |
| 3957 | 3957 | ||
| 3958 | ;;;### (autoloads nil "chistory" "chistory.el" (21607 54477 800124 | 3958 | ;;;### (autoloads nil "chistory" "chistory.el" (21604 48549 985934 |
| 3959 | ;;;;;; 118000)) | 3959 | ;;;;;; 213000)) |
| 3960 | ;;; Generated autoloads from chistory.el | 3960 | ;;; Generated autoloads from chistory.el |
| 3961 | 3961 | ||
| 3962 | (autoload 'repeat-matching-complex-command "chistory" "\ | 3962 | (autoload 'repeat-matching-complex-command "chistory" "\ |
| @@ -3995,8 +3995,8 @@ and runs the normal hook `command-history-hook'. | |||
| 3995 | 3995 | ||
| 3996 | ;;;*** | 3996 | ;;;*** |
| 3997 | 3997 | ||
| 3998 | ;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21607 | 3998 | ;;;### (autoloads nil "cl-indent" "emacs-lisp/cl-indent.el" (21604 |
| 3999 | ;;;;;; 54477 800124 118000)) | 3999 | ;;;;;; 48550 9934 214000)) |
| 4000 | ;;; Generated autoloads from emacs-lisp/cl-indent.el | 4000 | ;;; Generated autoloads from emacs-lisp/cl-indent.el |
| 4001 | 4001 | ||
| 4002 | (autoload 'common-lisp-indent-function "cl-indent" "\ | 4002 | (autoload 'common-lisp-indent-function "cl-indent" "\ |
| @@ -4079,8 +4079,8 @@ instead. | |||
| 4079 | 4079 | ||
| 4080 | ;;;*** | 4080 | ;;;*** |
| 4081 | 4081 | ||
| 4082 | ;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21619 26501 | 4082 | ;;;### (autoloads nil "cl-lib" "emacs-lisp/cl-lib.el" (21631 35966 |
| 4083 | ;;;;;; 970129 581000)) | 4083 | ;;;;;; 823121 866000)) |
| 4084 | ;;; Generated autoloads from emacs-lisp/cl-lib.el | 4084 | ;;; Generated autoloads from emacs-lisp/cl-lib.el |
| 4085 | (push (purecopy '(cl-lib 1 0)) package--builtin-versions) | 4085 | (push (purecopy '(cl-lib 1 0)) package--builtin-versions) |
| 4086 | 4086 | ||
| @@ -4110,8 +4110,8 @@ a future Emacs interpreter will be able to use it.") | |||
| 4110 | 4110 | ||
| 4111 | ;;;*** | 4111 | ;;;*** |
| 4112 | 4112 | ||
| 4113 | ;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (21607 54478 | 4113 | ;;;### (autoloads nil "cmacexp" "progmodes/cmacexp.el" (21604 48550 |
| 4114 | ;;;;;; 800121 42000)) | 4114 | ;;;;;; 325934 226000)) |
| 4115 | ;;; Generated autoloads from progmodes/cmacexp.el | 4115 | ;;; Generated autoloads from progmodes/cmacexp.el |
| 4116 | 4116 | ||
| 4117 | (autoload 'c-macro-expand "cmacexp" "\ | 4117 | (autoload 'c-macro-expand "cmacexp" "\ |
| @@ -4131,8 +4131,8 @@ For use inside Lisp programs, see also `c-macro-expansion'. | |||
| 4131 | 4131 | ||
| 4132 | ;;;*** | 4132 | ;;;*** |
| 4133 | 4133 | ||
| 4134 | ;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (21607 54477 800124 | 4134 | ;;;### (autoloads nil "cmuscheme" "cmuscheme.el" (21604 48549 985934 |
| 4135 | ;;;;;; 118000)) | 4135 | ;;;;;; 213000)) |
| 4136 | ;;; Generated autoloads from cmuscheme.el | 4136 | ;;; Generated autoloads from cmuscheme.el |
| 4137 | 4137 | ||
| 4138 | (autoload 'run-scheme "cmuscheme" "\ | 4138 | (autoload 'run-scheme "cmuscheme" "\ |
| @@ -4152,7 +4152,7 @@ is run). | |||
| 4152 | 4152 | ||
| 4153 | ;;;*** | 4153 | ;;;*** |
| 4154 | 4154 | ||
| 4155 | ;;;### (autoloads nil "color" "color.el" (21607 54477 800124 118000)) | 4155 | ;;;### (autoloads nil "color" "color.el" (21604 48549 985934 213000)) |
| 4156 | ;;; Generated autoloads from color.el | 4156 | ;;; Generated autoloads from color.el |
| 4157 | 4157 | ||
| 4158 | (autoload 'color-name-to-rgb "color" "\ | 4158 | (autoload 'color-name-to-rgb "color" "\ |
| @@ -4171,7 +4171,7 @@ If FRAME cannot display COLOR, return nil. | |||
| 4171 | 4171 | ||
| 4172 | ;;;*** | 4172 | ;;;*** |
| 4173 | 4173 | ||
| 4174 | ;;;### (autoloads nil "comint" "comint.el" (21607 54477 800124 118000)) | 4174 | ;;;### (autoloads nil "comint" "comint.el" (21637 50476 651217 120000)) |
| 4175 | ;;; Generated autoloads from comint.el | 4175 | ;;; Generated autoloads from comint.el |
| 4176 | 4176 | ||
| 4177 | (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ | 4177 | (defvar comint-output-filter-functions '(ansi-color-process-output comint-postoutput-scroll-to-bottom comint-watch-for-password-prompt) "\ |
| @@ -4272,12 +4272,15 @@ REGEXP-GROUP is the regular expression group in REGEXP to use. | |||
| 4272 | 4272 | ||
| 4273 | ;;;*** | 4273 | ;;;*** |
| 4274 | 4274 | ||
| 4275 | ;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21607 54478 | 4275 | ;;;### (autoloads nil "compare-w" "vc/compare-w.el" (21637 50476 |
| 4276 | ;;;;;; 800121 42000)) | 4276 | ;;;;;; 683217 122000)) |
| 4277 | ;;; Generated autoloads from vc/compare-w.el | 4277 | ;;; Generated autoloads from vc/compare-w.el |
| 4278 | 4278 | ||
| 4279 | (autoload 'compare-windows "compare-w" "\ | 4279 | (autoload 'compare-windows "compare-w" "\ |
| 4280 | Compare text in current window with text in next window. | 4280 | Compare text in current window with text in another window. |
| 4281 | The option `compare-windows-get-window-function' defines how | ||
| 4282 | to get another window. | ||
| 4283 | |||
| 4281 | Compares the text starting at point in each window, | 4284 | Compares the text starting at point in each window, |
| 4282 | moving over text in each one as far as they match. | 4285 | moving over text in each one as far as they match. |
| 4283 | 4286 | ||
| @@ -4306,8 +4309,8 @@ on third call it again advances points to the next difference and so on. | |||
| 4306 | 4309 | ||
| 4307 | ;;;*** | 4310 | ;;;*** |
| 4308 | 4311 | ||
| 4309 | ;;;### (autoloads nil "compile" "progmodes/compile.el" (21607 54478 | 4312 | ;;;### (autoloads nil "compile" "progmodes/compile.el" (21604 48550 |
| 4310 | ;;;;;; 800121 42000)) | 4313 | ;;;;;; 325934 226000)) |
| 4311 | ;;; Generated autoloads from progmodes/compile.el | 4314 | ;;; Generated autoloads from progmodes/compile.el |
| 4312 | 4315 | ||
| 4313 | (defvar compilation-mode-hook nil "\ | 4316 | (defvar compilation-mode-hook nil "\ |
| @@ -4488,8 +4491,8 @@ This is the value of `next-error-function' in Compilation buffers. | |||
| 4488 | 4491 | ||
| 4489 | ;;;*** | 4492 | ;;;*** |
| 4490 | 4493 | ||
| 4491 | ;;;### (autoloads nil "completion" "completion.el" (21607 54477 800124 | 4494 | ;;;### (autoloads nil "completion" "completion.el" (21659 61733 206949 |
| 4492 | ;;;;;; 118000)) | 4495 | ;;;;;; 164000)) |
| 4493 | ;;; Generated autoloads from completion.el | 4496 | ;;; Generated autoloads from completion.el |
| 4494 | 4497 | ||
| 4495 | (defvar dynamic-completion-mode nil "\ | 4498 | (defvar dynamic-completion-mode nil "\ |
| @@ -4511,8 +4514,8 @@ if ARG is omitted or nil. | |||
| 4511 | 4514 | ||
| 4512 | ;;;*** | 4515 | ;;;*** |
| 4513 | 4516 | ||
| 4514 | ;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (21607 | 4517 | ;;;### (autoloads nil "conf-mode" "textmodes/conf-mode.el" (21604 |
| 4515 | ;;;;;; 54478 800121 42000)) | 4518 | ;;;;;; 48550 393934 228000)) |
| 4516 | ;;; Generated autoloads from textmodes/conf-mode.el | 4519 | ;;; Generated autoloads from textmodes/conf-mode.el |
| 4517 | 4520 | ||
| 4518 | (autoload 'conf-mode "conf-mode" "\ | 4521 | (autoload 'conf-mode "conf-mode" "\ |
| @@ -4667,8 +4670,8 @@ For details see `conf-mode'. Example: | |||
| 4667 | 4670 | ||
| 4668 | ;;;*** | 4671 | ;;;*** |
| 4669 | 4672 | ||
| 4670 | ;;;### (autoloads nil "cookie1" "play/cookie1.el" (21607 54478 800121 | 4673 | ;;;### (autoloads nil "cookie1" "play/cookie1.el" (21604 48550 301934 |
| 4671 | ;;;;;; 42000)) | 4674 | ;;;;;; 225000)) |
| 4672 | ;;; Generated autoloads from play/cookie1.el | 4675 | ;;; Generated autoloads from play/cookie1.el |
| 4673 | 4676 | ||
| 4674 | (autoload 'cookie "cookie1" "\ | 4677 | (autoload 'cookie "cookie1" "\ |
| @@ -4696,8 +4699,8 @@ and subsequent calls on the same file won't go to disk. | |||
| 4696 | 4699 | ||
| 4697 | ;;;*** | 4700 | ;;;*** |
| 4698 | 4701 | ||
| 4699 | ;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (21607 | 4702 | ;;;### (autoloads nil "copyright" "emacs-lisp/copyright.el" (21604 |
| 4700 | ;;;;;; 54477 800124 118000)) | 4703 | ;;;;;; 48550 9934 214000)) |
| 4701 | ;;; Generated autoloads from emacs-lisp/copyright.el | 4704 | ;;; Generated autoloads from emacs-lisp/copyright.el |
| 4702 | (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) | 4705 | (put 'copyright-at-end-flag 'safe-local-variable 'booleanp) |
| 4703 | (put 'copyright-names-regexp 'safe-local-variable 'stringp) | 4706 | (put 'copyright-names-regexp 'safe-local-variable 'stringp) |
| @@ -4735,8 +4738,8 @@ If FIX is non-nil, run `copyright-fix-years' instead. | |||
| 4735 | 4738 | ||
| 4736 | ;;;*** | 4739 | ;;;*** |
| 4737 | 4740 | ||
| 4738 | ;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21607 | 4741 | ;;;### (autoloads nil "cperl-mode" "progmodes/cperl-mode.el" (21604 |
| 4739 | ;;;;;; 54478 800121 42000)) | 4742 | ;;;;;; 48550 325934 226000)) |
| 4740 | ;;; Generated autoloads from progmodes/cperl-mode.el | 4743 | ;;; Generated autoloads from progmodes/cperl-mode.el |
| 4741 | (put 'cperl-indent-level 'safe-local-variable 'integerp) | 4744 | (put 'cperl-indent-level 'safe-local-variable 'integerp) |
| 4742 | (put 'cperl-brace-offset 'safe-local-variable 'integerp) | 4745 | (put 'cperl-brace-offset 'safe-local-variable 'integerp) |
| @@ -4934,8 +4937,8 @@ Run a `perldoc' on the word around point. | |||
| 4934 | 4937 | ||
| 4935 | ;;;*** | 4938 | ;;;*** |
| 4936 | 4939 | ||
| 4937 | ;;;### (autoloads nil "cpp" "progmodes/cpp.el" (21607 54478 800121 | 4940 | ;;;### (autoloads nil "cpp" "progmodes/cpp.el" (21604 48550 329934 |
| 4938 | ;;;;;; 42000)) | 4941 | ;;;;;; 226000)) |
| 4939 | ;;; Generated autoloads from progmodes/cpp.el | 4942 | ;;; Generated autoloads from progmodes/cpp.el |
| 4940 | 4943 | ||
| 4941 | (autoload 'cpp-highlight-buffer "cpp" "\ | 4944 | (autoload 'cpp-highlight-buffer "cpp" "\ |
| @@ -4953,8 +4956,8 @@ Edit display information for cpp conditionals. | |||
| 4953 | 4956 | ||
| 4954 | ;;;*** | 4957 | ;;;*** |
| 4955 | 4958 | ||
| 4956 | ;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (21607 54477 800124 | 4959 | ;;;### (autoloads nil "crm" "emacs-lisp/crm.el" (21604 48550 9934 |
| 4957 | ;;;;;; 118000)) | 4960 | ;;;;;; 214000)) |
| 4958 | ;;; Generated autoloads from emacs-lisp/crm.el | 4961 | ;;; Generated autoloads from emacs-lisp/crm.el |
| 4959 | 4962 | ||
| 4960 | (autoload 'completing-read-multiple "crm" "\ | 4963 | (autoload 'completing-read-multiple "crm" "\ |
| @@ -4980,8 +4983,8 @@ with empty strings removed. | |||
| 4980 | 4983 | ||
| 4981 | ;;;*** | 4984 | ;;;*** |
| 4982 | 4985 | ||
| 4983 | ;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (21607 54478 | 4986 | ;;;### (autoloads nil "css-mode" "textmodes/css-mode.el" (21604 48550 |
| 4984 | ;;;;;; 800121 42000)) | 4987 | ;;;;;; 393934 228000)) |
| 4985 | ;;; Generated autoloads from textmodes/css-mode.el | 4988 | ;;; Generated autoloads from textmodes/css-mode.el |
| 4986 | 4989 | ||
| 4987 | (autoload 'css-mode "css-mode" "\ | 4990 | (autoload 'css-mode "css-mode" "\ |
| @@ -4997,8 +5000,8 @@ Major mode to edit \"Sassy CSS\" files. | |||
| 4997 | 5000 | ||
| 4998 | ;;;*** | 5001 | ;;;*** |
| 4999 | 5002 | ||
| 5000 | ;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21607 54477 | 5003 | ;;;### (autoloads nil "cua-base" "emulation/cua-base.el" (21604 48550 |
| 5001 | ;;;;;; 800124 118000)) | 5004 | ;;;;;; 25934 215000)) |
| 5002 | ;;; Generated autoloads from emulation/cua-base.el | 5005 | ;;; Generated autoloads from emulation/cua-base.el |
| 5003 | 5006 | ||
| 5004 | (defvar cua-mode nil "\ | 5007 | (defvar cua-mode nil "\ |
| @@ -5043,8 +5046,8 @@ Enable CUA selection mode without the C-z/C-x/C-c/C-v bindings. | |||
| 5043 | 5046 | ||
| 5044 | ;;;*** | 5047 | ;;;*** |
| 5045 | 5048 | ||
| 5046 | ;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (21607 54477 | 5049 | ;;;### (autoloads nil "cua-rect" "emulation/cua-rect.el" (21604 48550 |
| 5047 | ;;;;;; 800124 118000)) | 5050 | ;;;;;; 29934 215000)) |
| 5048 | ;;; Generated autoloads from emulation/cua-rect.el | 5051 | ;;; Generated autoloads from emulation/cua-rect.el |
| 5049 | 5052 | ||
| 5050 | (autoload 'cua-rectangle-mark-mode "cua-rect" "\ | 5053 | (autoload 'cua-rectangle-mark-mode "cua-rect" "\ |
| @@ -5055,8 +5058,8 @@ Activates the region if needed. Only lasts until the region is deactivated. | |||
| 5055 | 5058 | ||
| 5056 | ;;;*** | 5059 | ;;;*** |
| 5057 | 5060 | ||
| 5058 | ;;;### (autoloads nil "cus-edit" "cus-edit.el" (21607 54477 800124 | 5061 | ;;;### (autoloads nil "cus-edit" "cus-edit.el" (21645 38383 209524 |
| 5059 | ;;;;;; 118000)) | 5062 | ;;;;;; 819000)) |
| 5060 | ;;; Generated autoloads from cus-edit.el | 5063 | ;;; Generated autoloads from cus-edit.el |
| 5061 | 5064 | ||
| 5062 | (defvar custom-browse-sort-alphabetically nil "\ | 5065 | (defvar custom-browse-sort-alphabetically nil "\ |
| @@ -5282,6 +5285,13 @@ Customize all loaded groups matching REGEXP. | |||
| 5282 | 5285 | ||
| 5283 | \(fn REGEXP)" t nil) | 5286 | \(fn REGEXP)" t nil) |
| 5284 | 5287 | ||
| 5288 | (autoload 'custom-prompt-customize-unsaved-options "cus-edit" "\ | ||
| 5289 | Prompt user to customize any unsaved customization options. | ||
| 5290 | Return non-nil if user chooses to customize, for use in | ||
| 5291 | `kill-emacs-query-functions'. | ||
| 5292 | |||
| 5293 | \(fn)" nil nil) | ||
| 5294 | |||
| 5285 | (autoload 'custom-buffer-create "cus-edit" "\ | 5295 | (autoload 'custom-buffer-create "cus-edit" "\ |
| 5286 | Create a buffer containing OPTIONS. | 5296 | Create a buffer containing OPTIONS. |
| 5287 | Optional NAME is the name of the buffer. | 5297 | Optional NAME is the name of the buffer. |
| @@ -5368,8 +5378,8 @@ The format is suitable for use with `easy-menu-define'. | |||
| 5368 | 5378 | ||
| 5369 | ;;;*** | 5379 | ;;;*** |
| 5370 | 5380 | ||
| 5371 | ;;;### (autoloads nil "cus-theme" "cus-theme.el" (21607 54477 800124 | 5381 | ;;;### (autoloads nil "cus-theme" "cus-theme.el" (21604 48549 993934 |
| 5372 | ;;;;;; 118000)) | 5382 | ;;;;;; 213000)) |
| 5373 | ;;; Generated autoloads from cus-theme.el | 5383 | ;;; Generated autoloads from cus-theme.el |
| 5374 | 5384 | ||
| 5375 | (autoload 'customize-create-theme "cus-theme" "\ | 5385 | (autoload 'customize-create-theme "cus-theme" "\ |
| @@ -5402,8 +5412,8 @@ omitted, a buffer named *Custom Themes* is used. | |||
| 5402 | 5412 | ||
| 5403 | ;;;*** | 5413 | ;;;*** |
| 5404 | 5414 | ||
| 5405 | ;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (21607 54478 | 5415 | ;;;### (autoloads nil "cvs-status" "vc/cvs-status.el" (21604 48550 |
| 5406 | ;;;;;; 800121 42000)) | 5416 | ;;;;;; 421934 229000)) |
| 5407 | ;;; Generated autoloads from vc/cvs-status.el | 5417 | ;;; Generated autoloads from vc/cvs-status.el |
| 5408 | 5418 | ||
| 5409 | (autoload 'cvs-status-mode "cvs-status" "\ | 5419 | (autoload 'cvs-status-mode "cvs-status" "\ |
| @@ -5413,8 +5423,8 @@ Mode used for cvs status output. | |||
| 5413 | 5423 | ||
| 5414 | ;;;*** | 5424 | ;;;*** |
| 5415 | 5425 | ||
| 5416 | ;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (21607 54478 800121 | 5426 | ;;;### (autoloads nil "cwarn" "progmodes/cwarn.el" (21604 48550 329934 |
| 5417 | ;;;;;; 42000)) | 5427 | ;;;;;; 226000)) |
| 5418 | ;;; Generated autoloads from progmodes/cwarn.el | 5428 | ;;; Generated autoloads from progmodes/cwarn.el |
| 5419 | (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) | 5429 | (push (purecopy '(cwarn 1 3 1)) package--builtin-versions) |
| 5420 | 5430 | ||
| @@ -5458,8 +5468,8 @@ See `cwarn-mode' for more information on Cwarn mode. | |||
| 5458 | 5468 | ||
| 5459 | ;;;*** | 5469 | ;;;*** |
| 5460 | 5470 | ||
| 5461 | ;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (21607 | 5471 | ;;;### (autoloads nil "cyril-util" "language/cyril-util.el" (21604 |
| 5462 | ;;;;;; 54478 300138 641000)) | 5472 | ;;;;;; 48550 145934 219000)) |
| 5463 | ;;; Generated autoloads from language/cyril-util.el | 5473 | ;;; Generated autoloads from language/cyril-util.el |
| 5464 | 5474 | ||
| 5465 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ | 5475 | (autoload 'cyrillic-encode-koi8-r-char "cyril-util" "\ |
| @@ -5487,8 +5497,8 @@ If the argument is nil, we return the display table to its standard state. | |||
| 5487 | 5497 | ||
| 5488 | ;;;*** | 5498 | ;;;*** |
| 5489 | 5499 | ||
| 5490 | ;;;### (autoloads nil "dabbrev" "dabbrev.el" (21607 54477 800124 | 5500 | ;;;### (autoloads nil "dabbrev" "dabbrev.el" (21604 48549 993934 |
| 5491 | ;;;;;; 118000)) | 5501 | ;;;;;; 213000)) |
| 5492 | ;;; Generated autoloads from dabbrev.el | 5502 | ;;; Generated autoloads from dabbrev.el |
| 5493 | (put 'dabbrev-case-fold-search 'risky-local-variable t) | 5503 | (put 'dabbrev-case-fold-search 'risky-local-variable t) |
| 5494 | (put 'dabbrev-case-replace 'risky-local-variable t) | 5504 | (put 'dabbrev-case-replace 'risky-local-variable t) |
| @@ -5534,8 +5544,8 @@ See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]. | |||
| 5534 | 5544 | ||
| 5535 | ;;;*** | 5545 | ;;;*** |
| 5536 | 5546 | ||
| 5537 | ;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (21607 54477 | 5547 | ;;;### (autoloads nil "data-debug" "cedet/data-debug.el" (21604 48549 |
| 5538 | ;;;;;; 800124 118000)) | 5548 | ;;;;;; 961934 212000)) |
| 5539 | ;;; Generated autoloads from cedet/data-debug.el | 5549 | ;;; Generated autoloads from cedet/data-debug.el |
| 5540 | 5550 | ||
| 5541 | (autoload 'data-debug-new-buffer "data-debug" "\ | 5551 | (autoload 'data-debug-new-buffer "data-debug" "\ |
| @@ -5545,7 +5555,7 @@ Create a new data-debug buffer with NAME. | |||
| 5545 | 5555 | ||
| 5546 | ;;;*** | 5556 | ;;;*** |
| 5547 | 5557 | ||
| 5548 | ;;;### (autoloads nil "dbus" "net/dbus.el" (21607 54478 300138 641000)) | 5558 | ;;;### (autoloads nil "dbus" "net/dbus.el" (21604 48550 213934 222000)) |
| 5549 | ;;; Generated autoloads from net/dbus.el | 5559 | ;;; Generated autoloads from net/dbus.el |
| 5550 | 5560 | ||
| 5551 | (autoload 'dbus-handle-event "dbus" "\ | 5561 | (autoload 'dbus-handle-event "dbus" "\ |
| @@ -5558,8 +5568,8 @@ If the HANDLER returns a `dbus-error', it is propagated as return message. | |||
| 5558 | 5568 | ||
| 5559 | ;;;*** | 5569 | ;;;*** |
| 5560 | 5570 | ||
| 5561 | ;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (21607 54478 | 5571 | ;;;### (autoloads nil "dcl-mode" "progmodes/dcl-mode.el" (21604 48550 |
| 5562 | ;;;;;; 800121 42000)) | 5572 | ;;;;;; 329934 226000)) |
| 5563 | ;;; Generated autoloads from progmodes/dcl-mode.el | 5573 | ;;; Generated autoloads from progmodes/dcl-mode.el |
| 5564 | 5574 | ||
| 5565 | (autoload 'dcl-mode "dcl-mode" "\ | 5575 | (autoload 'dcl-mode "dcl-mode" "\ |
| @@ -5685,8 +5695,8 @@ There is some minimal font-lock support (see vars | |||
| 5685 | 5695 | ||
| 5686 | ;;;*** | 5696 | ;;;*** |
| 5687 | 5697 | ||
| 5688 | ;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21607 54477 | 5698 | ;;;### (autoloads nil "debug" "emacs-lisp/debug.el" (21604 48550 |
| 5689 | ;;;;;; 800124 118000)) | 5699 | ;;;;;; 9934 214000)) |
| 5690 | ;;; Generated autoloads from emacs-lisp/debug.el | 5700 | ;;; Generated autoloads from emacs-lisp/debug.el |
| 5691 | 5701 | ||
| 5692 | (setq debugger 'debug) | 5702 | (setq debugger 'debug) |
| @@ -5729,8 +5739,8 @@ To specify a nil argument interactively, exit with an empty minibuffer. | |||
| 5729 | 5739 | ||
| 5730 | ;;;*** | 5740 | ;;;*** |
| 5731 | 5741 | ||
| 5732 | ;;;### (autoloads nil "decipher" "play/decipher.el" (21607 54478 | 5742 | ;;;### (autoloads nil "decipher" "play/decipher.el" (21604 48550 |
| 5733 | ;;;;;; 800121 42000)) | 5743 | ;;;;;; 301934 225000)) |
| 5734 | ;;; Generated autoloads from play/decipher.el | 5744 | ;;; Generated autoloads from play/decipher.el |
| 5735 | 5745 | ||
| 5736 | (autoload 'decipher "decipher" "\ | 5746 | (autoload 'decipher "decipher" "\ |
| @@ -5758,8 +5768,8 @@ The most useful commands are: | |||
| 5758 | 5768 | ||
| 5759 | ;;;*** | 5769 | ;;;*** |
| 5760 | 5770 | ||
| 5761 | ;;;### (autoloads nil "delim-col" "delim-col.el" (21607 54477 800124 | 5771 | ;;;### (autoloads nil "delim-col" "delim-col.el" (21604 48549 993934 |
| 5762 | ;;;;;; 118000)) | 5772 | ;;;;;; 213000)) |
| 5763 | ;;; Generated autoloads from delim-col.el | 5773 | ;;; Generated autoloads from delim-col.el |
| 5764 | (push (purecopy '(delim-col 2 1)) package--builtin-versions) | 5774 | (push (purecopy '(delim-col 2 1)) package--builtin-versions) |
| 5765 | 5775 | ||
| @@ -5784,7 +5794,7 @@ START and END delimits the corners of text rectangle. | |||
| 5784 | 5794 | ||
| 5785 | ;;;*** | 5795 | ;;;*** |
| 5786 | 5796 | ||
| 5787 | ;;;### (autoloads nil "delsel" "delsel.el" (21607 54477 800124 118000)) | 5797 | ;;;### (autoloads nil "delsel" "delsel.el" (21604 48549 993934 213000)) |
| 5788 | ;;; Generated autoloads from delsel.el | 5798 | ;;; Generated autoloads from delsel.el |
| 5789 | 5799 | ||
| 5790 | (defalias 'pending-delete-mode 'delete-selection-mode) | 5800 | (defalias 'pending-delete-mode 'delete-selection-mode) |
| @@ -5812,8 +5822,8 @@ point regardless of any selection. | |||
| 5812 | 5822 | ||
| 5813 | ;;;*** | 5823 | ;;;*** |
| 5814 | 5824 | ||
| 5815 | ;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (21607 54477 | 5825 | ;;;### (autoloads nil "derived" "emacs-lisp/derived.el" (21604 48550 |
| 5816 | ;;;;;; 800124 118000)) | 5826 | ;;;;;; 9934 214000)) |
| 5817 | ;;; Generated autoloads from emacs-lisp/derived.el | 5827 | ;;; Generated autoloads from emacs-lisp/derived.el |
| 5818 | 5828 | ||
| 5819 | (autoload 'define-derived-mode "derived" "\ | 5829 | (autoload 'define-derived-mode "derived" "\ |
| @@ -5879,8 +5889,8 @@ the first time the mode is used. | |||
| 5879 | 5889 | ||
| 5880 | ;;;*** | 5890 | ;;;*** |
| 5881 | 5891 | ||
| 5882 | ;;;### (autoloads nil "descr-text" "descr-text.el" (21607 54477 800124 | 5892 | ;;;### (autoloads nil "descr-text" "descr-text.el" (21604 48549 993934 |
| 5883 | ;;;;;; 118000)) | 5893 | ;;;;;; 213000)) |
| 5884 | ;;; Generated autoloads from descr-text.el | 5894 | ;;; Generated autoloads from descr-text.el |
| 5885 | 5895 | ||
| 5886 | (autoload 'describe-text-properties "descr-text" "\ | 5896 | (autoload 'describe-text-properties "descr-text" "\ |
| @@ -5914,7 +5924,8 @@ relevant to POS. | |||
| 5914 | 5924 | ||
| 5915 | ;;;*** | 5925 | ;;;*** |
| 5916 | 5926 | ||
| 5917 | ;;;### (autoloads nil "desktop" "desktop.el" (21616 28857 81577 239000)) | 5927 | ;;;### (autoloads nil "desktop" "desktop.el" (21631 35966 815121 |
| 5928 | ;;;;;; 866000)) | ||
| 5918 | ;;; Generated autoloads from desktop.el | 5929 | ;;; Generated autoloads from desktop.el |
| 5919 | 5930 | ||
| 5920 | (defvar desktop-save-mode nil "\ | 5931 | (defvar desktop-save-mode nil "\ |
| @@ -6119,8 +6130,8 @@ Revert to the last loaded desktop. | |||
| 6119 | 6130 | ||
| 6120 | ;;;*** | 6131 | ;;;*** |
| 6121 | 6132 | ||
| 6122 | ;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (21607 54478 | 6133 | ;;;### (autoloads nil "deuglify" "gnus/deuglify.el" (21604 48550 |
| 6123 | ;;;;;; 300138 641000)) | 6134 | ;;;;;; 81934 217000)) |
| 6124 | ;;; Generated autoloads from gnus/deuglify.el | 6135 | ;;; Generated autoloads from gnus/deuglify.el |
| 6125 | 6136 | ||
| 6126 | (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ | 6137 | (autoload 'gnus-article-outlook-unwrap-lines "deuglify" "\ |
| @@ -6152,8 +6163,8 @@ Deuglify broken Outlook (Express) articles and redisplay. | |||
| 6152 | 6163 | ||
| 6153 | ;;;*** | 6164 | ;;;*** |
| 6154 | 6165 | ||
| 6155 | ;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21625 | 6166 | ;;;### (autoloads nil "diary-lib" "calendar/diary-lib.el" (21631 |
| 6156 | ;;;;;; 43838 483701 627000)) | 6167 | ;;;;;; 35966 803121 866000)) |
| 6157 | ;;; Generated autoloads from calendar/diary-lib.el | 6168 | ;;; Generated autoloads from calendar/diary-lib.el |
| 6158 | 6169 | ||
| 6159 | (autoload 'diary "diary-lib" "\ | 6170 | (autoload 'diary "diary-lib" "\ |
| @@ -6195,7 +6206,7 @@ Major mode for editing the diary file. | |||
| 6195 | 6206 | ||
| 6196 | ;;;*** | 6207 | ;;;*** |
| 6197 | 6208 | ||
| 6198 | ;;;### (autoloads nil "diff" "vc/diff.el" (21607 54478 800121 42000)) | 6209 | ;;;### (autoloads nil "diff" "vc/diff.el" (21604 48550 421934 229000)) |
| 6199 | ;;; Generated autoloads from vc/diff.el | 6210 | ;;; Generated autoloads from vc/diff.el |
| 6200 | 6211 | ||
| 6201 | (defvar diff-switches (purecopy "-c") "\ | 6212 | (defvar diff-switches (purecopy "-c") "\ |
| @@ -6243,8 +6254,8 @@ This requires the external program `diff' to be in your `exec-path'. | |||
| 6243 | 6254 | ||
| 6244 | ;;;*** | 6255 | ;;;*** |
| 6245 | 6256 | ||
| 6246 | ;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (21628 45530 | 6257 | ;;;### (autoloads nil "diff-mode" "vc/diff-mode.el" (21631 35966 |
| 6247 | ;;;;;; 160140 360000)) | 6258 | ;;;;;; 923121 870000)) |
| 6248 | ;;; Generated autoloads from vc/diff-mode.el | 6259 | ;;; Generated autoloads from vc/diff-mode.el |
| 6249 | 6260 | ||
| 6250 | (autoload 'diff-mode "diff-mode" "\ | 6261 | (autoload 'diff-mode "diff-mode" "\ |
| @@ -6276,7 +6287,7 @@ the mode if ARG is omitted or nil. | |||
| 6276 | 6287 | ||
| 6277 | ;;;*** | 6288 | ;;;*** |
| 6278 | 6289 | ||
| 6279 | ;;;### (autoloads nil "dig" "net/dig.el" (21607 54478 300138 641000)) | 6290 | ;;;### (autoloads nil "dig" "net/dig.el" (21604 48550 213934 222000)) |
| 6280 | ;;; Generated autoloads from net/dig.el | 6291 | ;;; Generated autoloads from net/dig.el |
| 6281 | 6292 | ||
| 6282 | (autoload 'dig "dig" "\ | 6293 | (autoload 'dig "dig" "\ |
| @@ -6287,7 +6298,7 @@ Optional arguments are passed to `dig-invoke'. | |||
| 6287 | 6298 | ||
| 6288 | ;;;*** | 6299 | ;;;*** |
| 6289 | 6300 | ||
| 6290 | ;;;### (autoloads nil "dired" "dired.el" (21607 54477 800124 118000)) | 6301 | ;;;### (autoloads nil "dired" "dired.el" (21651 20707 164225 751000)) |
| 6291 | ;;; Generated autoloads from dired.el | 6302 | ;;; Generated autoloads from dired.el |
| 6292 | 6303 | ||
| 6293 | (defvar dired-listing-switches (purecopy "-al") "\ | 6304 | (defvar dired-listing-switches (purecopy "-al") "\ |
| @@ -6407,8 +6418,8 @@ Keybindings: | |||
| 6407 | 6418 | ||
| 6408 | ;;;*** | 6419 | ;;;*** |
| 6409 | 6420 | ||
| 6410 | ;;;### (autoloads nil "dirtrack" "dirtrack.el" (21607 54477 800124 | 6421 | ;;;### (autoloads nil "dirtrack" "dirtrack.el" (21604 48549 997934 |
| 6411 | ;;;;;; 118000)) | 6422 | ;;;;;; 214000)) |
| 6412 | ;;; Generated autoloads from dirtrack.el | 6423 | ;;; Generated autoloads from dirtrack.el |
| 6413 | 6424 | ||
| 6414 | (autoload 'dirtrack-mode "dirtrack" "\ | 6425 | (autoload 'dirtrack-mode "dirtrack" "\ |
| @@ -6438,8 +6449,8 @@ from `default-directory'. | |||
| 6438 | 6449 | ||
| 6439 | ;;;*** | 6450 | ;;;*** |
| 6440 | 6451 | ||
| 6441 | ;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (21607 54477 | 6452 | ;;;### (autoloads nil "disass" "emacs-lisp/disass.el" (21604 48550 |
| 6442 | ;;;;;; 800124 118000)) | 6453 | ;;;;;; 13934 214000)) |
| 6443 | ;;; Generated autoloads from emacs-lisp/disass.el | 6454 | ;;; Generated autoloads from emacs-lisp/disass.el |
| 6444 | 6455 | ||
| 6445 | (autoload 'disassemble "disass" "\ | 6456 | (autoload 'disassemble "disass" "\ |
| @@ -6453,8 +6464,8 @@ redefine OBJECT if it is a symbol. | |||
| 6453 | 6464 | ||
| 6454 | ;;;*** | 6465 | ;;;*** |
| 6455 | 6466 | ||
| 6456 | ;;;### (autoloads nil "disp-table" "disp-table.el" (21607 54477 800124 | 6467 | ;;;### (autoloads nil "disp-table" "disp-table.el" (21604 48549 997934 |
| 6457 | ;;;;;; 118000)) | 6468 | ;;;;;; 214000)) |
| 6458 | ;;; Generated autoloads from disp-table.el | 6469 | ;;; Generated autoloads from disp-table.el |
| 6459 | 6470 | ||
| 6460 | (autoload 'make-display-table "disp-table" "\ | 6471 | (autoload 'make-display-table "disp-table" "\ |
| @@ -6575,8 +6586,8 @@ in `.emacs'. | |||
| 6575 | 6586 | ||
| 6576 | ;;;*** | 6587 | ;;;*** |
| 6577 | 6588 | ||
| 6578 | ;;;### (autoloads nil "dissociate" "play/dissociate.el" (21607 54478 | 6589 | ;;;### (autoloads nil "dissociate" "play/dissociate.el" (21604 48550 |
| 6579 | ;;;;;; 800121 42000)) | 6590 | ;;;;;; 301934 225000)) |
| 6580 | ;;; Generated autoloads from play/dissociate.el | 6591 | ;;; Generated autoloads from play/dissociate.el |
| 6581 | 6592 | ||
| 6582 | (autoload 'dissociated-press "dissociate" "\ | 6593 | (autoload 'dissociated-press "dissociate" "\ |
| @@ -6592,7 +6603,7 @@ Default is 2. | |||
| 6592 | 6603 | ||
| 6593 | ;;;*** | 6604 | ;;;*** |
| 6594 | 6605 | ||
| 6595 | ;;;### (autoloads nil "dnd" "dnd.el" (21607 54477 800124 118000)) | 6606 | ;;;### (autoloads nil "dnd" "dnd.el" (21604 48549 997934 214000)) |
| 6596 | ;;; Generated autoloads from dnd.el | 6607 | ;;; Generated autoloads from dnd.el |
| 6597 | 6608 | ||
| 6598 | (defvar dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://") . dnd-open-file) (,(purecopy "^file:") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)) "\ | 6609 | (defvar dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://") . dnd-open-file) (,(purecopy "^file:") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)) "\ |
| @@ -6612,8 +6623,8 @@ if some action was made, or nil if the URL is ignored.") | |||
| 6612 | 6623 | ||
| 6613 | ;;;*** | 6624 | ;;;*** |
| 6614 | 6625 | ||
| 6615 | ;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (21607 54478 | 6626 | ;;;### (autoloads nil "dns-mode" "textmodes/dns-mode.el" (21604 48550 |
| 6616 | ;;;;;; 800121 42000)) | 6627 | ;;;;;; 393934 228000)) |
| 6617 | ;;; Generated autoloads from textmodes/dns-mode.el | 6628 | ;;; Generated autoloads from textmodes/dns-mode.el |
| 6618 | 6629 | ||
| 6619 | (autoload 'dns-mode "dns-mode" "\ | 6630 | (autoload 'dns-mode "dns-mode" "\ |
| @@ -6636,8 +6647,8 @@ Locate SOA record and increment the serial field. | |||
| 6636 | 6647 | ||
| 6637 | ;;;*** | 6648 | ;;;*** |
| 6638 | 6649 | ||
| 6639 | ;;;### (autoloads nil "doc-view" "doc-view.el" (21607 54477 800124 | 6650 | ;;;### (autoloads nil "doc-view" "doc-view.el" (21604 48549 997934 |
| 6640 | ;;;;;; 118000)) | 6651 | ;;;;;; 214000)) |
| 6641 | ;;; Generated autoloads from doc-view.el | 6652 | ;;; Generated autoloads from doc-view.el |
| 6642 | 6653 | ||
| 6643 | (autoload 'doc-view-mode-p "doc-view" "\ | 6654 | (autoload 'doc-view-mode-p "doc-view" "\ |
| @@ -6683,8 +6694,8 @@ See the command `doc-view-mode' for more information on this mode. | |||
| 6683 | 6694 | ||
| 6684 | ;;;*** | 6695 | ;;;*** |
| 6685 | 6696 | ||
| 6686 | ;;;### (autoloads nil "doctor" "play/doctor.el" (21607 54478 800121 | 6697 | ;;;### (autoloads nil "doctor" "play/doctor.el" (21604 48550 301934 |
| 6687 | ;;;;;; 42000)) | 6698 | ;;;;;; 225000)) |
| 6688 | ;;; Generated autoloads from play/doctor.el | 6699 | ;;; Generated autoloads from play/doctor.el |
| 6689 | 6700 | ||
| 6690 | (autoload 'doctor "doctor" "\ | 6701 | (autoload 'doctor "doctor" "\ |
| @@ -6694,7 +6705,7 @@ Switch to *doctor* buffer and start giving psychotherapy. | |||
| 6694 | 6705 | ||
| 6695 | ;;;*** | 6706 | ;;;*** |
| 6696 | 6707 | ||
| 6697 | ;;;### (autoloads nil "double" "double.el" (21607 54477 800124 118000)) | 6708 | ;;;### (autoloads nil "double" "double.el" (21604 48549 997934 214000)) |
| 6698 | ;;; Generated autoloads from double.el | 6709 | ;;; Generated autoloads from double.el |
| 6699 | 6710 | ||
| 6700 | (autoload 'double-mode "double" "\ | 6711 | (autoload 'double-mode "double" "\ |
| @@ -6710,8 +6721,8 @@ strings when pressed twice. See `double-map' for details. | |||
| 6710 | 6721 | ||
| 6711 | ;;;*** | 6722 | ;;;*** |
| 6712 | 6723 | ||
| 6713 | ;;;### (autoloads nil "dunnet" "play/dunnet.el" (21607 54478 800121 | 6724 | ;;;### (autoloads nil "dunnet" "play/dunnet.el" (21604 48550 305934 |
| 6714 | ;;;;;; 42000)) | 6725 | ;;;;;; 225000)) |
| 6715 | ;;; Generated autoloads from play/dunnet.el | 6726 | ;;; Generated autoloads from play/dunnet.el |
| 6716 | (push (purecopy '(dunnet 2 1)) package--builtin-versions) | 6727 | (push (purecopy '(dunnet 2 1)) package--builtin-versions) |
| 6717 | 6728 | ||
| @@ -6722,8 +6733,8 @@ Switch to *dungeon* buffer and start game. | |||
| 6722 | 6733 | ||
| 6723 | ;;;*** | 6734 | ;;;*** |
| 6724 | 6735 | ||
| 6725 | ;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (21607 | 6736 | ;;;### (autoloads nil "easy-mmode" "emacs-lisp/easy-mmode.el" (21604 |
| 6726 | ;;;;;; 54477 800124 118000)) | 6737 | ;;;;;; 48550 13934 214000)) |
| 6727 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el | 6738 | ;;; Generated autoloads from emacs-lisp/easy-mmode.el |
| 6728 | 6739 | ||
| 6729 | (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) | 6740 | (defalias 'easy-mmode-define-minor-mode 'define-minor-mode) |
| @@ -6862,8 +6873,8 @@ CSS contains a list of syntax specifications of the form (CHAR . SYNTAX). | |||
| 6862 | 6873 | ||
| 6863 | ;;;*** | 6874 | ;;;*** |
| 6864 | 6875 | ||
| 6865 | ;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (21607 | 6876 | ;;;### (autoloads nil "easymenu" "emacs-lisp/easymenu.el" (21604 |
| 6866 | ;;;;;; 54477 800124 118000)) | 6877 | ;;;;;; 48550 13934 214000)) |
| 6867 | ;;; Generated autoloads from emacs-lisp/easymenu.el | 6878 | ;;; Generated autoloads from emacs-lisp/easymenu.el |
| 6868 | 6879 | ||
| 6869 | (autoload 'easy-menu-define "easymenu" "\ | 6880 | (autoload 'easy-menu-define "easymenu" "\ |
| @@ -7001,8 +7012,8 @@ To implement dynamic menus, either call this from | |||
| 7001 | 7012 | ||
| 7002 | ;;;*** | 7013 | ;;;*** |
| 7003 | 7014 | ||
| 7004 | ;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (21607 54478 | 7015 | ;;;### (autoloads nil "ebnf2ps" "progmodes/ebnf2ps.el" (21604 48550 |
| 7005 | ;;;;;; 800121 42000)) | 7016 | ;;;;;; 329934 226000)) |
| 7006 | ;;; Generated autoloads from progmodes/ebnf2ps.el | 7017 | ;;; Generated autoloads from progmodes/ebnf2ps.el |
| 7007 | (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) | 7018 | (push (purecopy '(ebnf2ps 4 4)) package--builtin-versions) |
| 7008 | 7019 | ||
| @@ -7267,8 +7278,8 @@ See `ebnf-style-database' documentation. | |||
| 7267 | 7278 | ||
| 7268 | ;;;*** | 7279 | ;;;*** |
| 7269 | 7280 | ||
| 7270 | ;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (21607 54478 | 7281 | ;;;### (autoloads nil "ebrowse" "progmodes/ebrowse.el" (21604 48550 |
| 7271 | ;;;;;; 800121 42000)) | 7282 | ;;;;;; 333934 226000)) |
| 7272 | ;;; Generated autoloads from progmodes/ebrowse.el | 7283 | ;;; Generated autoloads from progmodes/ebrowse.el |
| 7273 | 7284 | ||
| 7274 | (autoload 'ebrowse-tree-mode "ebrowse" "\ | 7285 | (autoload 'ebrowse-tree-mode "ebrowse" "\ |
| @@ -7416,8 +7427,8 @@ Display statistics for a class tree. | |||
| 7416 | 7427 | ||
| 7417 | ;;;*** | 7428 | ;;;*** |
| 7418 | 7429 | ||
| 7419 | ;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (21607 54477 800124 | 7430 | ;;;### (autoloads nil "ebuff-menu" "ebuff-menu.el" (21604 48549 997934 |
| 7420 | ;;;;;; 118000)) | 7431 | ;;;;;; 214000)) |
| 7421 | ;;; Generated autoloads from ebuff-menu.el | 7432 | ;;; Generated autoloads from ebuff-menu.el |
| 7422 | 7433 | ||
| 7423 | (autoload 'electric-buffer-list "ebuff-menu" "\ | 7434 | (autoload 'electric-buffer-list "ebuff-menu" "\ |
| @@ -7449,8 +7460,8 @@ Run hooks in `electric-buffer-menu-mode-hook' on entry. | |||
| 7449 | 7460 | ||
| 7450 | ;;;*** | 7461 | ;;;*** |
| 7451 | 7462 | ||
| 7452 | ;;;### (autoloads nil "echistory" "echistory.el" (21607 54477 800124 | 7463 | ;;;### (autoloads nil "echistory" "echistory.el" (21604 48549 997934 |
| 7453 | ;;;;;; 118000)) | 7464 | ;;;;;; 214000)) |
| 7454 | ;;; Generated autoloads from echistory.el | 7465 | ;;; Generated autoloads from echistory.el |
| 7455 | 7466 | ||
| 7456 | (autoload 'Electric-command-history-redo-expression "echistory" "\ | 7467 | (autoload 'Electric-command-history-redo-expression "echistory" "\ |
| @@ -7461,8 +7472,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 7461 | 7472 | ||
| 7462 | ;;;*** | 7473 | ;;;*** |
| 7463 | 7474 | ||
| 7464 | ;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (21607 54478 | 7475 | ;;;### (autoloads nil "ecomplete" "gnus/ecomplete.el" (21604 48550 |
| 7465 | ;;;;;; 300138 641000)) | 7476 | ;;;;;; 81934 217000)) |
| 7466 | ;;; Generated autoloads from gnus/ecomplete.el | 7477 | ;;; Generated autoloads from gnus/ecomplete.el |
| 7467 | 7478 | ||
| 7468 | (autoload 'ecomplete-setup "ecomplete" "\ | 7479 | (autoload 'ecomplete-setup "ecomplete" "\ |
| @@ -7472,7 +7483,7 @@ With prefix arg NOCONFIRM, execute current line as-is without editing. | |||
| 7472 | 7483 | ||
| 7473 | ;;;*** | 7484 | ;;;*** |
| 7474 | 7485 | ||
| 7475 | ;;;### (autoloads nil "ede" "cedet/ede.el" (21607 54477 800124 118000)) | 7486 | ;;;### (autoloads nil "ede" "cedet/ede.el" (21604 48549 961934 212000)) |
| 7476 | ;;; Generated autoloads from cedet/ede.el | 7487 | ;;; Generated autoloads from cedet/ede.el |
| 7477 | (push (purecopy '(ede 1 2)) package--builtin-versions) | 7488 | (push (purecopy '(ede 1 2)) package--builtin-versions) |
| 7478 | 7489 | ||
| @@ -7498,8 +7509,8 @@ an EDE controlled project. | |||
| 7498 | 7509 | ||
| 7499 | ;;;*** | 7510 | ;;;*** |
| 7500 | 7511 | ||
| 7501 | ;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21607 54477 | 7512 | ;;;### (autoloads nil "edebug" "emacs-lisp/edebug.el" (21604 48550 |
| 7502 | ;;;;;; 800124 118000)) | 7513 | ;;;;;; 13934 214000)) |
| 7503 | ;;; Generated autoloads from emacs-lisp/edebug.el | 7514 | ;;; Generated autoloads from emacs-lisp/edebug.el |
| 7504 | 7515 | ||
| 7505 | (defvar edebug-all-defs nil "\ | 7516 | (defvar edebug-all-defs nil "\ |
| @@ -7563,7 +7574,7 @@ Toggle edebugging of all forms. | |||
| 7563 | 7574 | ||
| 7564 | ;;;*** | 7575 | ;;;*** |
| 7565 | 7576 | ||
| 7566 | ;;;### (autoloads nil "ediff" "vc/ediff.el" (21607 54478 800121 42000)) | 7577 | ;;;### (autoloads nil "ediff" "vc/ediff.el" (21604 48550 429934 230000)) |
| 7567 | ;;; Generated autoloads from vc/ediff.el | 7578 | ;;; Generated autoloads from vc/ediff.el |
| 7568 | (push (purecopy '(ediff 2 81 4)) package--builtin-versions) | 7579 | (push (purecopy '(ediff 2 81 4)) package--builtin-versions) |
| 7569 | 7580 | ||
| @@ -7835,8 +7846,8 @@ With optional NODE, goes to that node. | |||
| 7835 | 7846 | ||
| 7836 | ;;;*** | 7847 | ;;;*** |
| 7837 | 7848 | ||
| 7838 | ;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (21607 54478 | 7849 | ;;;### (autoloads nil "ediff-help" "vc/ediff-help.el" (21604 48550 |
| 7839 | ;;;;;; 800121 42000)) | 7850 | ;;;;;; 425934 230000)) |
| 7840 | ;;; Generated autoloads from vc/ediff-help.el | 7851 | ;;; Generated autoloads from vc/ediff-help.el |
| 7841 | 7852 | ||
| 7842 | (autoload 'ediff-customize "ediff-help" "\ | 7853 | (autoload 'ediff-customize "ediff-help" "\ |
| @@ -7846,8 +7857,8 @@ With optional NODE, goes to that node. | |||
| 7846 | 7857 | ||
| 7847 | ;;;*** | 7858 | ;;;*** |
| 7848 | 7859 | ||
| 7849 | ;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (21607 54478 | 7860 | ;;;### (autoloads nil "ediff-mult" "vc/ediff-mult.el" (21604 48550 |
| 7850 | ;;;;;; 800121 42000)) | 7861 | ;;;;;; 425934 230000)) |
| 7851 | ;;; Generated autoloads from vc/ediff-mult.el | 7862 | ;;; Generated autoloads from vc/ediff-mult.el |
| 7852 | 7863 | ||
| 7853 | (autoload 'ediff-show-registry "ediff-mult" "\ | 7864 | (autoload 'ediff-show-registry "ediff-mult" "\ |
| @@ -7859,8 +7870,8 @@ Display Ediff's registry. | |||
| 7859 | 7870 | ||
| 7860 | ;;;*** | 7871 | ;;;*** |
| 7861 | 7872 | ||
| 7862 | ;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21607 54478 | 7873 | ;;;### (autoloads nil "ediff-util" "vc/ediff-util.el" (21604 48550 |
| 7863 | ;;;;;; 800121 42000)) | 7874 | ;;;;;; 425934 230000)) |
| 7864 | ;;; Generated autoloads from vc/ediff-util.el | 7875 | ;;; Generated autoloads from vc/ediff-util.el |
| 7865 | 7876 | ||
| 7866 | (autoload 'ediff-toggle-multiframe "ediff-util" "\ | 7877 | (autoload 'ediff-toggle-multiframe "ediff-util" "\ |
| @@ -7879,8 +7890,8 @@ To change the default, set the variable `ediff-use-toolbar-p', which see. | |||
| 7879 | 7890 | ||
| 7880 | ;;;*** | 7891 | ;;;*** |
| 7881 | 7892 | ||
| 7882 | ;;;### (autoloads nil "edmacro" "edmacro.el" (21607 54477 800124 | 7893 | ;;;### (autoloads nil "edmacro" "edmacro.el" (21604 48549 997934 |
| 7883 | ;;;;;; 118000)) | 7894 | ;;;;;; 214000)) |
| 7884 | ;;; Generated autoloads from edmacro.el | 7895 | ;;; Generated autoloads from edmacro.el |
| 7885 | (push (purecopy '(edmacro 2 1)) package--builtin-versions) | 7896 | (push (purecopy '(edmacro 2 1)) package--builtin-versions) |
| 7886 | 7897 | ||
| @@ -7929,8 +7940,8 @@ or nil, use a compact 80-column format. | |||
| 7929 | 7940 | ||
| 7930 | ;;;*** | 7941 | ;;;*** |
| 7931 | 7942 | ||
| 7932 | ;;;### (autoloads nil "edt" "emulation/edt.el" (21607 54477 800124 | 7943 | ;;;### (autoloads nil "edt" "emulation/edt.el" (21604 48550 29934 |
| 7933 | ;;;;;; 118000)) | 7944 | ;;;;;; 215000)) |
| 7934 | ;;; Generated autoloads from emulation/edt.el | 7945 | ;;; Generated autoloads from emulation/edt.el |
| 7935 | 7946 | ||
| 7936 | (autoload 'edt-set-scroll-margins "edt" "\ | 7947 | (autoload 'edt-set-scroll-margins "edt" "\ |
| @@ -7947,7 +7958,7 @@ Turn on EDT Emulation. | |||
| 7947 | 7958 | ||
| 7948 | ;;;*** | 7959 | ;;;*** |
| 7949 | 7960 | ||
| 7950 | ;;;### (autoloads nil "ehelp" "ehelp.el" (21607 54477 800124 118000)) | 7961 | ;;;### (autoloads nil "ehelp" "ehelp.el" (21604 48549 997934 214000)) |
| 7951 | ;;; Generated autoloads from ehelp.el | 7962 | ;;; Generated autoloads from ehelp.el |
| 7952 | 7963 | ||
| 7953 | (autoload 'with-electric-help "ehelp" "\ | 7964 | (autoload 'with-electric-help "ehelp" "\ |
| @@ -7983,15 +7994,15 @@ BUFFER is put back into its original major mode. | |||
| 7983 | 7994 | ||
| 7984 | ;;;*** | 7995 | ;;;*** |
| 7985 | 7996 | ||
| 7986 | ;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21607 54477 | 7997 | ;;;### (autoloads nil "eieio" "emacs-lisp/eieio.el" (21604 48550 |
| 7987 | ;;;;;; 800124 118000)) | 7998 | ;;;;;; 17934 214000)) |
| 7988 | ;;; Generated autoloads from emacs-lisp/eieio.el | 7999 | ;;; Generated autoloads from emacs-lisp/eieio.el |
| 7989 | (push (purecopy '(eieio 1 4)) package--builtin-versions) | 8000 | (push (purecopy '(eieio 1 4)) package--builtin-versions) |
| 7990 | 8001 | ||
| 7991 | ;;;*** | 8002 | ;;;*** |
| 7992 | 8003 | ||
| 7993 | ;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21607 | 8004 | ;;;### (autoloads nil "eieio-core" "emacs-lisp/eieio-core.el" (21637 |
| 7994 | ;;;;;; 54477 800124 118000)) | 8005 | ;;;;;; 50476 655217 121000)) |
| 7995 | ;;; Generated autoloads from emacs-lisp/eieio-core.el | 8006 | ;;; Generated autoloads from emacs-lisp/eieio-core.el |
| 7996 | (push (purecopy '(eieio-core 1 4)) package--builtin-versions) | 8007 | (push (purecopy '(eieio-core 1 4)) package--builtin-versions) |
| 7997 | 8008 | ||
| @@ -8007,8 +8018,8 @@ It creates an autoload function for CNAME's constructor. | |||
| 8007 | 8018 | ||
| 8008 | ;;;*** | 8019 | ;;;*** |
| 8009 | 8020 | ||
| 8010 | ;;;### (autoloads nil "elec-pair" "elec-pair.el" (21607 54477 800124 | 8021 | ;;;### (autoloads nil "elec-pair" "elec-pair.el" (21604 48550 1934 |
| 8011 | ;;;;;; 118000)) | 8022 | ;;;;;; 214000)) |
| 8012 | ;;; Generated autoloads from elec-pair.el | 8023 | ;;; Generated autoloads from elec-pair.el |
| 8013 | 8024 | ||
| 8014 | (defvar electric-pair-text-pairs '((34 . 34)) "\ | 8025 | (defvar electric-pair-text-pairs '((34 . 34)) "\ |
| @@ -8043,8 +8054,8 @@ closing parenthesis. (Likewise for brackets, etc.). | |||
| 8043 | 8054 | ||
| 8044 | ;;;*** | 8055 | ;;;*** |
| 8045 | 8056 | ||
| 8046 | ;;;### (autoloads nil "elide-head" "elide-head.el" (21607 54477 800124 | 8057 | ;;;### (autoloads nil "elide-head" "elide-head.el" (21604 48550 1934 |
| 8047 | ;;;;;; 118000)) | 8058 | ;;;;;; 214000)) |
| 8048 | ;;; Generated autoloads from elide-head.el | 8059 | ;;; Generated autoloads from elide-head.el |
| 8049 | 8060 | ||
| 8050 | (autoload 'elide-head "elide-head" "\ | 8061 | (autoload 'elide-head "elide-head" "\ |
| @@ -8059,8 +8070,8 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks. | |||
| 8059 | 8070 | ||
| 8060 | ;;;*** | 8071 | ;;;*** |
| 8061 | 8072 | ||
| 8062 | ;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (21607 54477 | 8073 | ;;;### (autoloads nil "elint" "emacs-lisp/elint.el" (21604 48550 |
| 8063 | ;;;;;; 800124 118000)) | 8074 | ;;;;;; 17934 214000)) |
| 8064 | ;;; Generated autoloads from emacs-lisp/elint.el | 8075 | ;;; Generated autoloads from emacs-lisp/elint.el |
| 8065 | 8076 | ||
| 8066 | (autoload 'elint-file "elint" "\ | 8077 | (autoload 'elint-file "elint" "\ |
| @@ -8095,8 +8106,8 @@ optional prefix argument REINIT is non-nil. | |||
| 8095 | 8106 | ||
| 8096 | ;;;*** | 8107 | ;;;*** |
| 8097 | 8108 | ||
| 8098 | ;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (21607 54477 800124 | 8109 | ;;;### (autoloads nil "elp" "emacs-lisp/elp.el" (21604 48550 17934 |
| 8099 | ;;;;;; 118000)) | 8110 | ;;;;;; 214000)) |
| 8100 | ;;; Generated autoloads from emacs-lisp/elp.el | 8111 | ;;; Generated autoloads from emacs-lisp/elp.el |
| 8101 | 8112 | ||
| 8102 | (autoload 'elp-instrument-function "elp" "\ | 8113 | (autoload 'elp-instrument-function "elp" "\ |
| @@ -8130,8 +8141,8 @@ displayed. | |||
| 8130 | 8141 | ||
| 8131 | ;;;*** | 8142 | ;;;*** |
| 8132 | 8143 | ||
| 8133 | ;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (21607 54477 800124 | 8144 | ;;;### (autoloads nil "emacs-lock" "emacs-lock.el" (21604 48550 25934 |
| 8134 | ;;;;;; 118000)) | 8145 | ;;;;;; 215000)) |
| 8135 | ;;; Generated autoloads from emacs-lock.el | 8146 | ;;; Generated autoloads from emacs-lock.el |
| 8136 | 8147 | ||
| 8137 | (autoload 'emacs-lock-mode "emacs-lock" "\ | 8148 | (autoload 'emacs-lock-mode "emacs-lock" "\ |
| @@ -8158,8 +8169,8 @@ Other values are interpreted as usual. | |||
| 8158 | 8169 | ||
| 8159 | ;;;*** | 8170 | ;;;*** |
| 8160 | 8171 | ||
| 8161 | ;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (21608 34742 | 8172 | ;;;### (autoloads nil "emacsbug" "mail/emacsbug.el" (21631 35966 |
| 8162 | ;;;;;; 2253 811000)) | 8173 | ;;;;;; 875121 868000)) |
| 8163 | ;;; Generated autoloads from mail/emacsbug.el | 8174 | ;;; Generated autoloads from mail/emacsbug.el |
| 8164 | 8175 | ||
| 8165 | (autoload 'report-emacs-bug "emacsbug" "\ | 8176 | (autoload 'report-emacs-bug "emacsbug" "\ |
| @@ -8172,8 +8183,8 @@ Prompts for bug subject. Leaves you in a mail buffer. | |||
| 8172 | 8183 | ||
| 8173 | ;;;*** | 8184 | ;;;*** |
| 8174 | 8185 | ||
| 8175 | ;;;### (autoloads nil "emerge" "vc/emerge.el" (21607 54478 800121 | 8186 | ;;;### (autoloads nil "emerge" "vc/emerge.el" (21604 48550 429934 |
| 8176 | ;;;;;; 42000)) | 8187 | ;;;;;; 230000)) |
| 8177 | ;;; Generated autoloads from vc/emerge.el | 8188 | ;;; Generated autoloads from vc/emerge.el |
| 8178 | 8189 | ||
| 8179 | (autoload 'emerge-files "emerge" "\ | 8190 | (autoload 'emerge-files "emerge" "\ |
| @@ -8233,8 +8244,8 @@ Emerge two RCS revisions of a file, with another revision as ancestor. | |||
| 8233 | 8244 | ||
| 8234 | ;;;*** | 8245 | ;;;*** |
| 8235 | 8246 | ||
| 8236 | ;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21607 54478 | 8247 | ;;;### (autoloads nil "enriched" "textmodes/enriched.el" (21604 48550 |
| 8237 | ;;;;;; 800121 42000)) | 8248 | ;;;;;; 393934 228000)) |
| 8238 | ;;; Generated autoloads from textmodes/enriched.el | 8249 | ;;; Generated autoloads from textmodes/enriched.el |
| 8239 | 8250 | ||
| 8240 | (autoload 'enriched-mode "enriched" "\ | 8251 | (autoload 'enriched-mode "enriched" "\ |
| @@ -8269,7 +8280,7 @@ Commands: | |||
| 8269 | 8280 | ||
| 8270 | ;;;*** | 8281 | ;;;*** |
| 8271 | 8282 | ||
| 8272 | ;;;### (autoloads nil "epa" "epa.el" (21624 22971 140149 848000)) | 8283 | ;;;### (autoloads nil "epa" "epa.el" (21631 35966 827121 867000)) |
| 8273 | ;;; Generated autoloads from epa.el | 8284 | ;;; Generated autoloads from epa.el |
| 8274 | 8285 | ||
| 8275 | (autoload 'epa-list-keys "epa" "\ | 8286 | (autoload 'epa-list-keys "epa" "\ |
| @@ -8457,8 +8468,8 @@ Insert selected KEYS after the point. | |||
| 8457 | 8468 | ||
| 8458 | ;;;*** | 8469 | ;;;*** |
| 8459 | 8470 | ||
| 8460 | ;;;### (autoloads nil "epa-dired" "epa-dired.el" (21607 54478 300138 | 8471 | ;;;### (autoloads nil "epa-dired" "epa-dired.el" (21604 48550 33934 |
| 8461 | ;;;;;; 641000)) | 8472 | ;;;;;; 215000)) |
| 8462 | ;;; Generated autoloads from epa-dired.el | 8473 | ;;; Generated autoloads from epa-dired.el |
| 8463 | 8474 | ||
| 8464 | (autoload 'epa-dired-do-decrypt "epa-dired" "\ | 8475 | (autoload 'epa-dired-do-decrypt "epa-dired" "\ |
| @@ -8483,8 +8494,8 @@ Encrypt marked files. | |||
| 8483 | 8494 | ||
| 8484 | ;;;*** | 8495 | ;;;*** |
| 8485 | 8496 | ||
| 8486 | ;;;### (autoloads nil "epa-file" "epa-file.el" (21611 10937 700236 | 8497 | ;;;### (autoloads nil "epa-file" "epa-file.el" (21631 35966 827121 |
| 8487 | ;;;;;; 3000)) | 8498 | ;;;;;; 867000)) |
| 8488 | ;;; Generated autoloads from epa-file.el | 8499 | ;;; Generated autoloads from epa-file.el |
| 8489 | 8500 | ||
| 8490 | (autoload 'epa-file-handler "epa-file" "\ | 8501 | (autoload 'epa-file-handler "epa-file" "\ |
| @@ -8504,8 +8515,8 @@ Encrypt marked files. | |||
| 8504 | 8515 | ||
| 8505 | ;;;*** | 8516 | ;;;*** |
| 8506 | 8517 | ||
| 8507 | ;;;### (autoloads nil "epa-mail" "epa-mail.el" (21607 54478 300138 | 8518 | ;;;### (autoloads nil "epa-mail" "epa-mail.el" (21604 48550 33934 |
| 8508 | ;;;;;; 641000)) | 8519 | ;;;;;; 215000)) |
| 8509 | ;;; Generated autoloads from epa-mail.el | 8520 | ;;; Generated autoloads from epa-mail.el |
| 8510 | 8521 | ||
| 8511 | (autoload 'epa-mail-mode "epa-mail" "\ | 8522 | (autoload 'epa-mail-mode "epa-mail" "\ |
| @@ -8582,7 +8593,7 @@ if ARG is omitted or nil. | |||
| 8582 | 8593 | ||
| 8583 | ;;;*** | 8594 | ;;;*** |
| 8584 | 8595 | ||
| 8585 | ;;;### (autoloads nil "epg" "epg.el" (21611 10937 700236 3000)) | 8596 | ;;;### (autoloads nil "epg" "epg.el" (21631 35966 827121 867000)) |
| 8586 | ;;; Generated autoloads from epg.el | 8597 | ;;; Generated autoloads from epg.el |
| 8587 | (push (purecopy '(epg 1 0 0)) package--builtin-versions) | 8598 | (push (purecopy '(epg 1 0 0)) package--builtin-versions) |
| 8588 | 8599 | ||
| @@ -8593,8 +8604,8 @@ Return a context object. | |||
| 8593 | 8604 | ||
| 8594 | ;;;*** | 8605 | ;;;*** |
| 8595 | 8606 | ||
| 8596 | ;;;### (autoloads nil "epg-config" "epg-config.el" (21607 54478 300138 | 8607 | ;;;### (autoloads nil "epg-config" "epg-config.el" (21604 48550 33934 |
| 8597 | ;;;;;; 641000)) | 8608 | ;;;;;; 215000)) |
| 8598 | ;;; Generated autoloads from epg-config.el | 8609 | ;;; Generated autoloads from epg-config.el |
| 8599 | 8610 | ||
| 8600 | (autoload 'epg-configuration "epg-config" "\ | 8611 | (autoload 'epg-configuration "epg-config" "\ |
| @@ -8614,7 +8625,7 @@ Look at CONFIG and try to expand GROUP. | |||
| 8614 | 8625 | ||
| 8615 | ;;;*** | 8626 | ;;;*** |
| 8616 | 8627 | ||
| 8617 | ;;;### (autoloads nil "erc" "erc/erc.el" (21607 54478 300138 641000)) | 8628 | ;;;### (autoloads nil "erc" "erc/erc.el" (21604 48550 49934 215000)) |
| 8618 | ;;; Generated autoloads from erc/erc.el | 8629 | ;;; Generated autoloads from erc/erc.el |
| 8619 | 8630 | ||
| 8620 | (autoload 'erc-select-read-args "erc" "\ | 8631 | (autoload 'erc-select-read-args "erc" "\ |
| @@ -8643,7 +8654,7 @@ then the server and full-name will be set to those values, whereas | |||
| 8643 | `erc-compute-port', `erc-compute-nick' and `erc-compute-full-name' will | 8654 | `erc-compute-port', `erc-compute-nick' and `erc-compute-full-name' will |
| 8644 | be invoked for the values of the other parameters. | 8655 | be invoked for the values of the other parameters. |
| 8645 | 8656 | ||
| 8646 | \(fn &key (server (erc-compute-server)) (port (erc-compute-port)) (nick (erc-compute-nick)) PASSWORD (full-name (erc-compute-full-name)))" t nil) | 8657 | \(fn &key (SERVER (erc-compute-server)) (PORT (erc-compute-port)) (NICK (erc-compute-nick)) PASSWORD (FULL-NAME (erc-compute-full-name)))" t nil) |
| 8647 | 8658 | ||
| 8648 | (defalias 'erc-select 'erc) | 8659 | (defalias 'erc-select 'erc) |
| 8649 | 8660 | ||
| @@ -8662,36 +8673,36 @@ Otherwise, connect to HOST:PORT as USER and /join CHANNEL. | |||
| 8662 | 8673 | ||
| 8663 | ;;;*** | 8674 | ;;;*** |
| 8664 | 8675 | ||
| 8665 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (21607 | 8676 | ;;;### (autoloads nil "erc-autoaway" "erc/erc-autoaway.el" (21604 |
| 8666 | ;;;;;; 54478 300138 641000)) | 8677 | ;;;;;; 48550 37934 215000)) |
| 8667 | ;;; Generated autoloads from erc/erc-autoaway.el | 8678 | ;;; Generated autoloads from erc/erc-autoaway.el |
| 8668 | (autoload 'erc-autoaway-mode "erc-autoaway") | 8679 | (autoload 'erc-autoaway-mode "erc-autoaway") |
| 8669 | 8680 | ||
| 8670 | ;;;*** | 8681 | ;;;*** |
| 8671 | 8682 | ||
| 8672 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (21607 54478 | 8683 | ;;;### (autoloads nil "erc-button" "erc/erc-button.el" (21604 48550 |
| 8673 | ;;;;;; 300138 641000)) | 8684 | ;;;;;; 37934 215000)) |
| 8674 | ;;; Generated autoloads from erc/erc-button.el | 8685 | ;;; Generated autoloads from erc/erc-button.el |
| 8675 | (autoload 'erc-button-mode "erc-button" nil t) | 8686 | (autoload 'erc-button-mode "erc-button" nil t) |
| 8676 | 8687 | ||
| 8677 | ;;;*** | 8688 | ;;;*** |
| 8678 | 8689 | ||
| 8679 | ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (21607 54478 | 8690 | ;;;### (autoloads nil "erc-capab" "erc/erc-capab.el" (21604 48550 |
| 8680 | ;;;;;; 300138 641000)) | 8691 | ;;;;;; 41934 215000)) |
| 8681 | ;;; Generated autoloads from erc/erc-capab.el | 8692 | ;;; Generated autoloads from erc/erc-capab.el |
| 8682 | (autoload 'erc-capab-identify-mode "erc-capab" nil t) | 8693 | (autoload 'erc-capab-identify-mode "erc-capab" nil t) |
| 8683 | 8694 | ||
| 8684 | ;;;*** | 8695 | ;;;*** |
| 8685 | 8696 | ||
| 8686 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (21607 54478 | 8697 | ;;;### (autoloads nil "erc-compat" "erc/erc-compat.el" (21604 48550 |
| 8687 | ;;;;;; 300138 641000)) | 8698 | ;;;;;; 41934 215000)) |
| 8688 | ;;; Generated autoloads from erc/erc-compat.el | 8699 | ;;; Generated autoloads from erc/erc-compat.el |
| 8689 | (autoload 'erc-define-minor-mode "erc-compat") | 8700 | (autoload 'erc-define-minor-mode "erc-compat") |
| 8690 | 8701 | ||
| 8691 | ;;;*** | 8702 | ;;;*** |
| 8692 | 8703 | ||
| 8693 | ;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (21607 54478 300138 | 8704 | ;;;### (autoloads nil "erc-dcc" "erc/erc-dcc.el" (21604 48550 41934 |
| 8694 | ;;;;;; 641000)) | 8705 | ;;;;;; 215000)) |
| 8695 | ;;; Generated autoloads from erc/erc-dcc.el | 8706 | ;;; Generated autoloads from erc/erc-dcc.el |
| 8696 | (autoload 'erc-dcc-mode "erc-dcc") | 8707 | (autoload 'erc-dcc-mode "erc-dcc") |
| 8697 | 8708 | ||
| @@ -8721,14 +8732,14 @@ that subcommand. | |||
| 8721 | ;;;*** | 8732 | ;;;*** |
| 8722 | 8733 | ||
| 8723 | ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" | 8734 | ;;;### (autoloads nil "erc-desktop-notifications" "erc/erc-desktop-notifications.el" |
| 8724 | ;;;;;; (21617 49721 420132 227000)) | 8735 | ;;;;;; (21631 35966 831121 867000)) |
| 8725 | ;;; Generated autoloads from erc/erc-desktop-notifications.el | 8736 | ;;; Generated autoloads from erc/erc-desktop-notifications.el |
| 8726 | (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) | 8737 | (autoload 'erc-notifications-mode "erc-desktop-notifications" "" t) |
| 8727 | 8738 | ||
| 8728 | ;;;*** | 8739 | ;;;*** |
| 8729 | 8740 | ||
| 8730 | ;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (21607 | 8741 | ;;;### (autoloads nil "erc-ezbounce" "erc/erc-ezbounce.el" (21604 |
| 8731 | ;;;;;; 54478 300138 641000)) | 8742 | ;;;;;; 48550 41934 215000)) |
| 8732 | ;;; Generated autoloads from erc/erc-ezbounce.el | 8743 | ;;; Generated autoloads from erc/erc-ezbounce.el |
| 8733 | 8744 | ||
| 8734 | (autoload 'erc-cmd-ezb "erc-ezbounce" "\ | 8745 | (autoload 'erc-cmd-ezb "erc-ezbounce" "\ |
| @@ -8790,8 +8801,8 @@ Add EZBouncer convenience functions to ERC. | |||
| 8790 | 8801 | ||
| 8791 | ;;;*** | 8802 | ;;;*** |
| 8792 | 8803 | ||
| 8793 | ;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (21607 54478 300138 | 8804 | ;;;### (autoloads nil "erc-fill" "erc/erc-fill.el" (21604 48550 41934 |
| 8794 | ;;;;;; 641000)) | 8805 | ;;;;;; 215000)) |
| 8795 | ;;; Generated autoloads from erc/erc-fill.el | 8806 | ;;; Generated autoloads from erc/erc-fill.el |
| 8796 | (autoload 'erc-fill-mode "erc-fill" nil t) | 8807 | (autoload 'erc-fill-mode "erc-fill" nil t) |
| 8797 | 8808 | ||
| @@ -8803,8 +8814,8 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'. | |||
| 8803 | 8814 | ||
| 8804 | ;;;*** | 8815 | ;;;*** |
| 8805 | 8816 | ||
| 8806 | ;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (21607 54478 | 8817 | ;;;### (autoloads nil "erc-identd" "erc/erc-identd.el" (21604 48550 |
| 8807 | ;;;;;; 300138 641000)) | 8818 | ;;;;;; 45934 215000)) |
| 8808 | ;;; Generated autoloads from erc/erc-identd.el | 8819 | ;;; Generated autoloads from erc/erc-identd.el |
| 8809 | (autoload 'erc-identd-mode "erc-identd") | 8820 | (autoload 'erc-identd-mode "erc-identd") |
| 8810 | 8821 | ||
| @@ -8825,8 +8836,8 @@ system. | |||
| 8825 | 8836 | ||
| 8826 | ;;;*** | 8837 | ;;;*** |
| 8827 | 8838 | ||
| 8828 | ;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (21607 54478 | 8839 | ;;;### (autoloads nil "erc-imenu" "erc/erc-imenu.el" (21604 48550 |
| 8829 | ;;;;;; 300138 641000)) | 8840 | ;;;;;; 45934 215000)) |
| 8830 | ;;; Generated autoloads from erc/erc-imenu.el | 8841 | ;;; Generated autoloads from erc/erc-imenu.el |
| 8831 | 8842 | ||
| 8832 | (autoload 'erc-create-imenu-index "erc-imenu" "\ | 8843 | (autoload 'erc-create-imenu-index "erc-imenu" "\ |
| @@ -8836,22 +8847,22 @@ system. | |||
| 8836 | 8847 | ||
| 8837 | ;;;*** | 8848 | ;;;*** |
| 8838 | 8849 | ||
| 8839 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (21607 54478 300138 | 8850 | ;;;### (autoloads nil "erc-join" "erc/erc-join.el" (21604 48550 45934 |
| 8840 | ;;;;;; 641000)) | 8851 | ;;;;;; 215000)) |
| 8841 | ;;; Generated autoloads from erc/erc-join.el | 8852 | ;;; Generated autoloads from erc/erc-join.el |
| 8842 | (autoload 'erc-autojoin-mode "erc-join" nil t) | 8853 | (autoload 'erc-autojoin-mode "erc-join" nil t) |
| 8843 | 8854 | ||
| 8844 | ;;;*** | 8855 | ;;;*** |
| 8845 | 8856 | ||
| 8846 | ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (21607 54478 300138 | 8857 | ;;;### (autoloads nil "erc-list" "erc/erc-list.el" (21604 48550 45934 |
| 8847 | ;;;;;; 641000)) | 8858 | ;;;;;; 215000)) |
| 8848 | ;;; Generated autoloads from erc/erc-list.el | 8859 | ;;; Generated autoloads from erc/erc-list.el |
| 8849 | (autoload 'erc-list-mode "erc-list") | 8860 | (autoload 'erc-list-mode "erc-list") |
| 8850 | 8861 | ||
| 8851 | ;;;*** | 8862 | ;;;*** |
| 8852 | 8863 | ||
| 8853 | ;;;### (autoloads nil "erc-log" "erc/erc-log.el" (21607 54478 300138 | 8864 | ;;;### (autoloads nil "erc-log" "erc/erc-log.el" (21604 48550 45934 |
| 8854 | ;;;;;; 641000)) | 8865 | ;;;;;; 215000)) |
| 8855 | ;;; Generated autoloads from erc/erc-log.el | 8866 | ;;; Generated autoloads from erc/erc-log.el |
| 8856 | (autoload 'erc-log-mode "erc-log" nil t) | 8867 | (autoload 'erc-log-mode "erc-log" nil t) |
| 8857 | 8868 | ||
| @@ -8880,8 +8891,8 @@ You can save every individual message by putting this function on | |||
| 8880 | 8891 | ||
| 8881 | ;;;*** | 8892 | ;;;*** |
| 8882 | 8893 | ||
| 8883 | ;;;### (autoloads nil "erc-match" "erc/erc-match.el" (21607 54478 | 8894 | ;;;### (autoloads nil "erc-match" "erc/erc-match.el" (21604 48550 |
| 8884 | ;;;;;; 300138 641000)) | 8895 | ;;;;;; 45934 215000)) |
| 8885 | ;;; Generated autoloads from erc/erc-match.el | 8896 | ;;; Generated autoloads from erc/erc-match.el |
| 8886 | (autoload 'erc-match-mode "erc-match") | 8897 | (autoload 'erc-match-mode "erc-match") |
| 8887 | 8898 | ||
| @@ -8927,15 +8938,15 @@ Delete dangerous-host interactively to `erc-dangerous-hosts'. | |||
| 8927 | 8938 | ||
| 8928 | ;;;*** | 8939 | ;;;*** |
| 8929 | 8940 | ||
| 8930 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (21607 54478 300138 | 8941 | ;;;### (autoloads nil "erc-menu" "erc/erc-menu.el" (21604 48550 45934 |
| 8931 | ;;;;;; 641000)) | 8942 | ;;;;;; 215000)) |
| 8932 | ;;; Generated autoloads from erc/erc-menu.el | 8943 | ;;; Generated autoloads from erc/erc-menu.el |
| 8933 | (autoload 'erc-menu-mode "erc-menu" nil t) | 8944 | (autoload 'erc-menu-mode "erc-menu" nil t) |
| 8934 | 8945 | ||
| 8935 | ;;;*** | 8946 | ;;;*** |
| 8936 | 8947 | ||
| 8937 | ;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (21607 | 8948 | ;;;### (autoloads nil "erc-netsplit" "erc/erc-netsplit.el" (21604 |
| 8938 | ;;;;;; 54478 300138 641000)) | 8949 | ;;;;;; 48550 45934 215000)) |
| 8939 | ;;; Generated autoloads from erc/erc-netsplit.el | 8950 | ;;; Generated autoloads from erc/erc-netsplit.el |
| 8940 | (autoload 'erc-netsplit-mode "erc-netsplit") | 8951 | (autoload 'erc-netsplit-mode "erc-netsplit") |
| 8941 | 8952 | ||
| @@ -8946,8 +8957,8 @@ Show who's gone. | |||
| 8946 | 8957 | ||
| 8947 | ;;;*** | 8958 | ;;;*** |
| 8948 | 8959 | ||
| 8949 | ;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (21607 | 8960 | ;;;### (autoloads nil "erc-networks" "erc/erc-networks.el" (21604 |
| 8950 | ;;;;;; 54478 300138 641000)) | 8961 | ;;;;;; 48550 45934 215000)) |
| 8951 | ;;; Generated autoloads from erc/erc-networks.el | 8962 | ;;; Generated autoloads from erc/erc-networks.el |
| 8952 | 8963 | ||
| 8953 | (autoload 'erc-determine-network "erc-networks" "\ | 8964 | (autoload 'erc-determine-network "erc-networks" "\ |
| @@ -8964,8 +8975,8 @@ Interactively select a server to connect to using `erc-server-alist'. | |||
| 8964 | 8975 | ||
| 8965 | ;;;*** | 8976 | ;;;*** |
| 8966 | 8977 | ||
| 8967 | ;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (21607 54478 | 8978 | ;;;### (autoloads nil "erc-notify" "erc/erc-notify.el" (21604 48550 |
| 8968 | ;;;;;; 300138 641000)) | 8979 | ;;;;;; 45934 215000)) |
| 8969 | ;;; Generated autoloads from erc/erc-notify.el | 8980 | ;;; Generated autoloads from erc/erc-notify.el |
| 8970 | (autoload 'erc-notify-mode "erc-notify" nil t) | 8981 | (autoload 'erc-notify-mode "erc-notify" nil t) |
| 8971 | 8982 | ||
| @@ -8983,36 +8994,36 @@ with args, toggle notify status of people. | |||
| 8983 | 8994 | ||
| 8984 | ;;;*** | 8995 | ;;;*** |
| 8985 | 8996 | ||
| 8986 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (21607 54478 300138 | 8997 | ;;;### (autoloads nil "erc-page" "erc/erc-page.el" (21604 48550 45934 |
| 8987 | ;;;;;; 641000)) | 8998 | ;;;;;; 215000)) |
| 8988 | ;;; Generated autoloads from erc/erc-page.el | 8999 | ;;; Generated autoloads from erc/erc-page.el |
| 8989 | (autoload 'erc-page-mode "erc-page") | 9000 | (autoload 'erc-page-mode "erc-page") |
| 8990 | 9001 | ||
| 8991 | ;;;*** | 9002 | ;;;*** |
| 8992 | 9003 | ||
| 8993 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (21607 | 9004 | ;;;### (autoloads nil "erc-pcomplete" "erc/erc-pcomplete.el" (21604 |
| 8994 | ;;;;;; 54478 300138 641000)) | 9005 | ;;;;;; 48550 45934 215000)) |
| 8995 | ;;; Generated autoloads from erc/erc-pcomplete.el | 9006 | ;;; Generated autoloads from erc/erc-pcomplete.el |
| 8996 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) | 9007 | (autoload 'erc-completion-mode "erc-pcomplete" nil t) |
| 8997 | 9008 | ||
| 8998 | ;;;*** | 9009 | ;;;*** |
| 8999 | 9010 | ||
| 9000 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (21607 54478 | 9011 | ;;;### (autoloads nil "erc-replace" "erc/erc-replace.el" (21604 48550 |
| 9001 | ;;;;;; 300138 641000)) | 9012 | ;;;;;; 45934 215000)) |
| 9002 | ;;; Generated autoloads from erc/erc-replace.el | 9013 | ;;; Generated autoloads from erc/erc-replace.el |
| 9003 | (autoload 'erc-replace-mode "erc-replace") | 9014 | (autoload 'erc-replace-mode "erc-replace") |
| 9004 | 9015 | ||
| 9005 | ;;;*** | 9016 | ;;;*** |
| 9006 | 9017 | ||
| 9007 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (21607 54478 300138 | 9018 | ;;;### (autoloads nil "erc-ring" "erc/erc-ring.el" (21604 48550 45934 |
| 9008 | ;;;;;; 641000)) | 9019 | ;;;;;; 215000)) |
| 9009 | ;;; Generated autoloads from erc/erc-ring.el | 9020 | ;;; Generated autoloads from erc/erc-ring.el |
| 9010 | (autoload 'erc-ring-mode "erc-ring" nil t) | 9021 | (autoload 'erc-ring-mode "erc-ring" nil t) |
| 9011 | 9022 | ||
| 9012 | ;;;*** | 9023 | ;;;*** |
| 9013 | 9024 | ||
| 9014 | ;;;### (autoloads nil "erc-services" "erc/erc-services.el" (21607 | 9025 | ;;;### (autoloads nil "erc-services" "erc/erc-services.el" (21604 |
| 9015 | ;;;;;; 54478 300138 641000)) | 9026 | ;;;;;; 48550 45934 215000)) |
| 9016 | ;;; Generated autoloads from erc/erc-services.el | 9027 | ;;; Generated autoloads from erc/erc-services.el |
| 9017 | (autoload 'erc-services-mode "erc-services" nil t) | 9028 | (autoload 'erc-services-mode "erc-services" nil t) |
| 9018 | 9029 | ||
| @@ -9029,15 +9040,15 @@ When called interactively, read the password using `read-passwd'. | |||
| 9029 | 9040 | ||
| 9030 | ;;;*** | 9041 | ;;;*** |
| 9031 | 9042 | ||
| 9032 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (21607 54478 | 9043 | ;;;### (autoloads nil "erc-sound" "erc/erc-sound.el" (21604 48550 |
| 9033 | ;;;;;; 300138 641000)) | 9044 | ;;;;;; 45934 215000)) |
| 9034 | ;;; Generated autoloads from erc/erc-sound.el | 9045 | ;;; Generated autoloads from erc/erc-sound.el |
| 9035 | (autoload 'erc-sound-mode "erc-sound") | 9046 | (autoload 'erc-sound-mode "erc-sound") |
| 9036 | 9047 | ||
| 9037 | ;;;*** | 9048 | ;;;*** |
| 9038 | 9049 | ||
| 9039 | ;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (21607 | 9050 | ;;;### (autoloads nil "erc-speedbar" "erc/erc-speedbar.el" (21604 |
| 9040 | ;;;;;; 54478 300138 641000)) | 9051 | ;;;;;; 48550 45934 215000)) |
| 9041 | ;;; Generated autoloads from erc/erc-speedbar.el | 9052 | ;;; Generated autoloads from erc/erc-speedbar.el |
| 9042 | 9053 | ||
| 9043 | (autoload 'erc-speedbar-browser "erc-speedbar" "\ | 9054 | (autoload 'erc-speedbar-browser "erc-speedbar" "\ |
| @@ -9048,22 +9059,22 @@ This will add a speedbar major display mode. | |||
| 9048 | 9059 | ||
| 9049 | ;;;*** | 9060 | ;;;*** |
| 9050 | 9061 | ||
| 9051 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (21607 | 9062 | ;;;### (autoloads nil "erc-spelling" "erc/erc-spelling.el" (21604 |
| 9052 | ;;;;;; 54478 300138 641000)) | 9063 | ;;;;;; 48550 45934 215000)) |
| 9053 | ;;; Generated autoloads from erc/erc-spelling.el | 9064 | ;;; Generated autoloads from erc/erc-spelling.el |
| 9054 | (autoload 'erc-spelling-mode "erc-spelling" nil t) | 9065 | (autoload 'erc-spelling-mode "erc-spelling" nil t) |
| 9055 | 9066 | ||
| 9056 | ;;;*** | 9067 | ;;;*** |
| 9057 | 9068 | ||
| 9058 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (21607 54478 | 9069 | ;;;### (autoloads nil "erc-stamp" "erc/erc-stamp.el" (21604 48550 |
| 9059 | ;;;;;; 300138 641000)) | 9070 | ;;;;;; 45934 215000)) |
| 9060 | ;;; Generated autoloads from erc/erc-stamp.el | 9071 | ;;; Generated autoloads from erc/erc-stamp.el |
| 9061 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) | 9072 | (autoload 'erc-timestamp-mode "erc-stamp" nil t) |
| 9062 | 9073 | ||
| 9063 | ;;;*** | 9074 | ;;;*** |
| 9064 | 9075 | ||
| 9065 | ;;;### (autoloads nil "erc-track" "erc/erc-track.el" (21607 54478 | 9076 | ;;;### (autoloads nil "erc-track" "erc/erc-track.el" (21604 48550 |
| 9066 | ;;;;;; 300138 641000)) | 9077 | ;;;;;; 45934 215000)) |
| 9067 | ;;; Generated autoloads from erc/erc-track.el | 9078 | ;;; Generated autoloads from erc/erc-track.el |
| 9068 | 9079 | ||
| 9069 | (defvar erc-track-minor-mode nil "\ | 9080 | (defvar erc-track-minor-mode nil "\ |
| @@ -9088,8 +9099,8 @@ keybindings will not do anything useful. | |||
| 9088 | 9099 | ||
| 9089 | ;;;*** | 9100 | ;;;*** |
| 9090 | 9101 | ||
| 9091 | ;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (21607 | 9102 | ;;;### (autoloads nil "erc-truncate" "erc/erc-truncate.el" (21604 |
| 9092 | ;;;;;; 54478 300138 641000)) | 9103 | ;;;;;; 48550 45934 215000)) |
| 9093 | ;;; Generated autoloads from erc/erc-truncate.el | 9104 | ;;; Generated autoloads from erc/erc-truncate.el |
| 9094 | (autoload 'erc-truncate-mode "erc-truncate" nil t) | 9105 | (autoload 'erc-truncate-mode "erc-truncate" nil t) |
| 9095 | 9106 | ||
| @@ -9108,8 +9119,8 @@ Meant to be used in hooks, like `erc-insert-post-hook'. | |||
| 9108 | 9119 | ||
| 9109 | ;;;*** | 9120 | ;;;*** |
| 9110 | 9121 | ||
| 9111 | ;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (21607 54478 300138 | 9122 | ;;;### (autoloads nil "erc-xdcc" "erc/erc-xdcc.el" (21604 48550 45934 |
| 9112 | ;;;;;; 641000)) | 9123 | ;;;;;; 215000)) |
| 9113 | ;;; Generated autoloads from erc/erc-xdcc.el | 9124 | ;;; Generated autoloads from erc/erc-xdcc.el |
| 9114 | (autoload 'erc-xdcc-mode "erc-xdcc") | 9125 | (autoload 'erc-xdcc-mode "erc-xdcc") |
| 9115 | 9126 | ||
| @@ -9120,8 +9131,8 @@ Add a file to `erc-xdcc-files'. | |||
| 9120 | 9131 | ||
| 9121 | ;;;*** | 9132 | ;;;*** |
| 9122 | 9133 | ||
| 9123 | ;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21607 54477 800124 | 9134 | ;;;### (autoloads nil "ert" "emacs-lisp/ert.el" (21604 48550 17934 |
| 9124 | ;;;;;; 118000)) | 9135 | ;;;;;; 214000)) |
| 9125 | ;;; Generated autoloads from emacs-lisp/ert.el | 9136 | ;;; Generated autoloads from emacs-lisp/ert.el |
| 9126 | 9137 | ||
| 9127 | (autoload 'ert-deftest "ert" "\ | 9138 | (autoload 'ert-deftest "ert" "\ |
| @@ -9139,7 +9150,11 @@ Tests that are expected to fail can be marked as such | |||
| 9139 | using :expected-result. See `ert-test-result-type-p' for a | 9150 | using :expected-result. See `ert-test-result-type-p' for a |
| 9140 | description of valid values for RESULT-TYPE. | 9151 | description of valid values for RESULT-TYPE. |
| 9141 | 9152 | ||
| 9142 | \(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags '(TAG...)] BODY...)" nil (quote macro)) | 9153 | \(fn NAME () [DOCSTRING] [:expected-result RESULT-TYPE] [:tags '(TAG...)] BODY...)" nil t) |
| 9154 | |||
| 9155 | (function-put 'ert-deftest 'doc-string-elt '3) | ||
| 9156 | |||
| 9157 | (function-put 'ert-deftest 'lisp-indent-function '2) | ||
| 9143 | 9158 | ||
| 9144 | (put 'ert-deftest 'lisp-indent-function 2) | 9159 | (put 'ert-deftest 'lisp-indent-function 2) |
| 9145 | 9160 | ||
| @@ -9186,8 +9201,8 @@ Display the documentation for TEST-OR-TEST-NAME (a symbol or ert-test). | |||
| 9186 | 9201 | ||
| 9187 | ;;;*** | 9202 | ;;;*** |
| 9188 | 9203 | ||
| 9189 | ;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (21607 54477 | 9204 | ;;;### (autoloads nil "ert-x" "emacs-lisp/ert-x.el" (21604 48550 |
| 9190 | ;;;;;; 800124 118000)) | 9205 | ;;;;;; 17934 214000)) |
| 9191 | ;;; Generated autoloads from emacs-lisp/ert-x.el | 9206 | ;;; Generated autoloads from emacs-lisp/ert-x.el |
| 9192 | 9207 | ||
| 9193 | (put 'ert-with-test-buffer 'lisp-indent-function 1) | 9208 | (put 'ert-with-test-buffer 'lisp-indent-function 1) |
| @@ -9199,8 +9214,8 @@ Kill all test buffers that are still live. | |||
| 9199 | 9214 | ||
| 9200 | ;;;*** | 9215 | ;;;*** |
| 9201 | 9216 | ||
| 9202 | ;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21607 54478 | 9217 | ;;;### (autoloads nil "esh-mode" "eshell/esh-mode.el" (21604 48550 |
| 9203 | ;;;;;; 300138 641000)) | 9218 | ;;;;;; 53934 216000)) |
| 9204 | ;;; Generated autoloads from eshell/esh-mode.el | 9219 | ;;; Generated autoloads from eshell/esh-mode.el |
| 9205 | 9220 | ||
| 9206 | (autoload 'eshell-mode "esh-mode" "\ | 9221 | (autoload 'eshell-mode "esh-mode" "\ |
| @@ -9210,8 +9225,8 @@ Emacs shell interactive mode. | |||
| 9210 | 9225 | ||
| 9211 | ;;;*** | 9226 | ;;;*** |
| 9212 | 9227 | ||
| 9213 | ;;;### (autoloads nil "eshell" "eshell/eshell.el" (21607 54478 300138 | 9228 | ;;;### (autoloads nil "eshell" "eshell/eshell.el" (21604 48550 53934 |
| 9214 | ;;;;;; 641000)) | 9229 | ;;;;;; 216000)) |
| 9215 | ;;; Generated autoloads from eshell/eshell.el | 9230 | ;;; Generated autoloads from eshell/eshell.el |
| 9216 | (push (purecopy '(eshell 2 4 2)) package--builtin-versions) | 9231 | (push (purecopy '(eshell 2 4 2)) package--builtin-versions) |
| 9217 | 9232 | ||
| @@ -9246,8 +9261,8 @@ corresponding to a successful execution. | |||
| 9246 | 9261 | ||
| 9247 | ;;;*** | 9262 | ;;;*** |
| 9248 | 9263 | ||
| 9249 | ;;;### (autoloads nil "etags" "progmodes/etags.el" (21607 54478 800121 | 9264 | ;;;### (autoloads nil "etags" "progmodes/etags.el" (21660 25453 16850 |
| 9250 | ;;;;;; 42000)) | 9265 | ;;;;;; 17000)) |
| 9251 | ;;; Generated autoloads from progmodes/etags.el | 9266 | ;;; Generated autoloads from progmodes/etags.el |
| 9252 | 9267 | ||
| 9253 | (defvar tags-file-name nil "\ | 9268 | (defvar tags-file-name nil "\ |
| @@ -9340,6 +9355,11 @@ as they appeared in the `etags' command that created the table, usually | |||
| 9340 | without directory names. | 9355 | without directory names. |
| 9341 | 9356 | ||
| 9342 | \(fn)" nil nil) | 9357 | \(fn)" nil nil) |
| 9358 | |||
| 9359 | (autoload 'tags-lazy-completion-table "etags" "\ | ||
| 9360 | |||
| 9361 | |||
| 9362 | \(fn)" nil nil) | ||
| 9343 | (defun tags-completion-at-point-function () | 9363 | (defun tags-completion-at-point-function () |
| 9344 | (if (or tags-table-list tags-file-name) | 9364 | (if (or tags-table-list tags-file-name) |
| 9345 | (progn | 9365 | (progn |
| @@ -9388,7 +9408,6 @@ Contrast this with the ring of marks gone to by the command. | |||
| 9388 | See documentation of variable `tags-file-name'. | 9408 | See documentation of variable `tags-file-name'. |
| 9389 | 9409 | ||
| 9390 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) | 9410 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) |
| 9391 | (define-key esc-map "." 'find-tag) | ||
| 9392 | 9411 | ||
| 9393 | (autoload 'find-tag-other-window "etags" "\ | 9412 | (autoload 'find-tag-other-window "etags" "\ |
| 9394 | Find tag (in current tags table) whose name contains TAGNAME. | 9413 | Find tag (in current tags table) whose name contains TAGNAME. |
| @@ -9411,7 +9430,6 @@ Contrast this with the ring of marks gone to by the command. | |||
| 9411 | See documentation of variable `tags-file-name'. | 9430 | See documentation of variable `tags-file-name'. |
| 9412 | 9431 | ||
| 9413 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) | 9432 | \(fn TAGNAME &optional NEXT-P REGEXP-P)" t nil) |
| 9414 | (define-key ctl-x-4-map "." 'find-tag-other-window) | ||
| 9415 | 9433 | ||
| 9416 | (autoload 'find-tag-other-frame "etags" "\ | 9434 | (autoload 'find-tag-other-frame "etags" "\ |
| 9417 | Find tag (in current tags table) whose name contains TAGNAME. | 9435 | Find tag (in current tags table) whose name contains TAGNAME. |
| @@ -9434,7 +9452,6 @@ Contrast this with the ring of marks gone to by the command. | |||
| 9434 | See documentation of variable `tags-file-name'. | 9452 | See documentation of variable `tags-file-name'. |
| 9435 | 9453 | ||
| 9436 | \(fn TAGNAME &optional NEXT-P)" t nil) | 9454 | \(fn TAGNAME &optional NEXT-P)" t nil) |
| 9437 | (define-key ctl-x-5-map "." 'find-tag-other-frame) | ||
| 9438 | 9455 | ||
| 9439 | (autoload 'find-tag-regexp "etags" "\ | 9456 | (autoload 'find-tag-regexp "etags" "\ |
| 9440 | Find tag (in current tags table) whose name matches REGEXP. | 9457 | Find tag (in current tags table) whose name matches REGEXP. |
| @@ -9455,17 +9472,8 @@ Contrast this with the ring of marks gone to by the command. | |||
| 9455 | See documentation of variable `tags-file-name'. | 9472 | See documentation of variable `tags-file-name'. |
| 9456 | 9473 | ||
| 9457 | \(fn REGEXP &optional NEXT-P OTHER-WINDOW)" t nil) | 9474 | \(fn REGEXP &optional NEXT-P OTHER-WINDOW)" t nil) |
| 9458 | (define-key esc-map [?\C-.] 'find-tag-regexp) | ||
| 9459 | (define-key esc-map "*" 'pop-tag-mark) | ||
| 9460 | 9475 | ||
| 9461 | (autoload 'pop-tag-mark "etags" "\ | 9476 | (defalias 'pop-tag-mark 'xref-pop-marker-stack) |
| 9462 | Pop back to where \\[find-tag] was last invoked. | ||
| 9463 | |||
| 9464 | This is distinct from invoking \\[find-tag] with a negative argument | ||
| 9465 | since that pops a stack of markers at which tags were found, not from | ||
| 9466 | where they were found. | ||
| 9467 | |||
| 9468 | \(fn)" t nil) | ||
| 9469 | 9477 | ||
| 9470 | (autoload 'next-file "etags" "\ | 9478 | (autoload 'next-file "etags" "\ |
| 9471 | Select next file among files in current tags table. | 9479 | Select next file among files in current tags table. |
| @@ -9494,7 +9502,6 @@ evaluate to operate on an interesting file. If the latter evaluates to | |||
| 9494 | nil, we exit; otherwise we scan the next file. | 9502 | nil, we exit; otherwise we scan the next file. |
| 9495 | 9503 | ||
| 9496 | \(fn &optional FIRST-TIME)" t nil) | 9504 | \(fn &optional FIRST-TIME)" t nil) |
| 9497 | (define-key esc-map "," 'tags-loop-continue) | ||
| 9498 | 9505 | ||
| 9499 | (autoload 'tags-search "etags" "\ | 9506 | (autoload 'tags-search "etags" "\ |
| 9500 | Search through all files listed in tags table for match for REGEXP. | 9507 | Search through all files listed in tags table for match for REGEXP. |
| @@ -9553,10 +9560,15 @@ for \\[find-tag] (which see). | |||
| 9553 | 9560 | ||
| 9554 | \(fn)" t nil) | 9561 | \(fn)" t nil) |
| 9555 | 9562 | ||
| 9563 | (autoload 'etags-xref-find "etags" "\ | ||
| 9564 | |||
| 9565 | |||
| 9566 | \(fn ACTION ID)" nil nil) | ||
| 9567 | |||
| 9556 | ;;;*** | 9568 | ;;;*** |
| 9557 | 9569 | ||
| 9558 | ;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (21607 | 9570 | ;;;### (autoloads nil "ethio-util" "language/ethio-util.el" (21604 |
| 9559 | ;;;;;; 54478 300138 641000)) | 9571 | ;;;;;; 48550 145934 219000)) |
| 9560 | ;;; Generated autoloads from language/ethio-util.el | 9572 | ;;; Generated autoloads from language/ethio-util.el |
| 9561 | 9573 | ||
| 9562 | (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ | 9574 | (autoload 'setup-ethiopic-environment-internal "ethio-util" "\ |
| @@ -9724,7 +9736,7 @@ With ARG, insert that many delimiters. | |||
| 9724 | 9736 | ||
| 9725 | ;;;*** | 9737 | ;;;*** |
| 9726 | 9738 | ||
| 9727 | ;;;### (autoloads nil "eudc" "net/eudc.el" (21607 54478 300138 641000)) | 9739 | ;;;### (autoloads nil "eudc" "net/eudc.el" (21604 48550 213934 222000)) |
| 9728 | ;;; Generated autoloads from net/eudc.el | 9740 | ;;; Generated autoloads from net/eudc.el |
| 9729 | 9741 | ||
| 9730 | (autoload 'eudc-set-server "eudc" "\ | 9742 | (autoload 'eudc-set-server "eudc" "\ |
| @@ -9778,8 +9790,8 @@ This does nothing except loading eudc by autoload side-effect. | |||
| 9778 | 9790 | ||
| 9779 | ;;;*** | 9791 | ;;;*** |
| 9780 | 9792 | ||
| 9781 | ;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (21607 54478 300138 | 9793 | ;;;### (autoloads nil "eudc-bob" "net/eudc-bob.el" (21604 48550 213934 |
| 9782 | ;;;;;; 641000)) | 9794 | ;;;;;; 222000)) |
| 9783 | ;;; Generated autoloads from net/eudc-bob.el | 9795 | ;;; Generated autoloads from net/eudc-bob.el |
| 9784 | 9796 | ||
| 9785 | (autoload 'eudc-display-generic-binary "eudc-bob" "\ | 9797 | (autoload 'eudc-display-generic-binary "eudc-bob" "\ |
| @@ -9814,8 +9826,8 @@ Display a button for the JPEG DATA. | |||
| 9814 | 9826 | ||
| 9815 | ;;;*** | 9827 | ;;;*** |
| 9816 | 9828 | ||
| 9817 | ;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (21607 54478 | 9829 | ;;;### (autoloads nil "eudc-export" "net/eudc-export.el" (21604 48550 |
| 9818 | ;;;;;; 300138 641000)) | 9830 | ;;;;;; 213934 222000)) |
| 9819 | ;;; Generated autoloads from net/eudc-export.el | 9831 | ;;; Generated autoloads from net/eudc-export.el |
| 9820 | 9832 | ||
| 9821 | (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ | 9833 | (autoload 'eudc-insert-record-at-point-into-bbdb "eudc-export" "\ |
| @@ -9831,8 +9843,8 @@ Call `eudc-insert-record-at-point-into-bbdb' if on a record. | |||
| 9831 | 9843 | ||
| 9832 | ;;;*** | 9844 | ;;;*** |
| 9833 | 9845 | ||
| 9834 | ;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (21607 | 9846 | ;;;### (autoloads nil "eudc-hotlist" "net/eudc-hotlist.el" (21604 |
| 9835 | ;;;;;; 54478 300138 641000)) | 9847 | ;;;;;; 48550 213934 222000)) |
| 9836 | ;;; Generated autoloads from net/eudc-hotlist.el | 9848 | ;;; Generated autoloads from net/eudc-hotlist.el |
| 9837 | 9849 | ||
| 9838 | (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ | 9850 | (autoload 'eudc-edit-hotlist "eudc-hotlist" "\ |
| @@ -9842,8 +9854,8 @@ Edit the hotlist of directory servers in a specialized buffer. | |||
| 9842 | 9854 | ||
| 9843 | ;;;*** | 9855 | ;;;*** |
| 9844 | 9856 | ||
| 9845 | ;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (21607 54477 800124 | 9857 | ;;;### (autoloads nil "ewoc" "emacs-lisp/ewoc.el" (21604 48550 17934 |
| 9846 | ;;;;;; 118000)) | 9858 | ;;;;;; 214000)) |
| 9847 | ;;; Generated autoloads from emacs-lisp/ewoc.el | 9859 | ;;; Generated autoloads from emacs-lisp/ewoc.el |
| 9848 | 9860 | ||
| 9849 | (autoload 'ewoc-create "ewoc" "\ | 9861 | (autoload 'ewoc-create "ewoc" "\ |
| @@ -9869,7 +9881,7 @@ fourth arg NOSEP non-nil inhibits this. | |||
| 9869 | 9881 | ||
| 9870 | ;;;*** | 9882 | ;;;*** |
| 9871 | 9883 | ||
| 9872 | ;;;### (autoloads nil "eww" "net/eww.el" (21628 44513 720130 219000)) | 9884 | ;;;### (autoloads nil "eww" "net/eww.el" (21640 32530 974334 457000)) |
| 9873 | ;;; Generated autoloads from net/eww.el | 9885 | ;;; Generated autoloads from net/eww.el |
| 9874 | 9886 | ||
| 9875 | (autoload 'eww "eww" "\ | 9887 | (autoload 'eww "eww" "\ |
| @@ -9903,8 +9915,8 @@ Display the bookmarks. | |||
| 9903 | 9915 | ||
| 9904 | ;;;*** | 9916 | ;;;*** |
| 9905 | 9917 | ||
| 9906 | ;;;### (autoloads nil "executable" "progmodes/executable.el" (21607 | 9918 | ;;;### (autoloads nil "executable" "progmodes/executable.el" (21604 |
| 9907 | ;;;;;; 54478 800121 42000)) | 9919 | ;;;;;; 48550 333934 226000)) |
| 9908 | ;;; Generated autoloads from progmodes/executable.el | 9920 | ;;; Generated autoloads from progmodes/executable.el |
| 9909 | 9921 | ||
| 9910 | (autoload 'executable-command-find-posix-p "executable" "\ | 9922 | (autoload 'executable-command-find-posix-p "executable" "\ |
| @@ -9945,7 +9957,7 @@ file modes. | |||
| 9945 | 9957 | ||
| 9946 | ;;;*** | 9958 | ;;;*** |
| 9947 | 9959 | ||
| 9948 | ;;;### (autoloads nil "expand" "expand.el" (21607 54478 300138 641000)) | 9960 | ;;;### (autoloads nil "expand" "expand.el" (21604 48550 53934 216000)) |
| 9949 | ;;; Generated autoloads from expand.el | 9961 | ;;; Generated autoloads from expand.el |
| 9950 | 9962 | ||
| 9951 | (autoload 'expand-add-abbrevs "expand" "\ | 9963 | (autoload 'expand-add-abbrevs "expand" "\ |
| @@ -9994,8 +10006,8 @@ This is used only in conjunction with `expand-add-abbrevs'. | |||
| 9994 | 10006 | ||
| 9995 | ;;;*** | 10007 | ;;;*** |
| 9996 | 10008 | ||
| 9997 | ;;;### (autoloads nil "f90" "progmodes/f90.el" (21607 54478 800121 | 10009 | ;;;### (autoloads nil "f90" "progmodes/f90.el" (21604 48550 333934 |
| 9998 | ;;;;;; 42000)) | 10010 | ;;;;;; 226000)) |
| 9999 | ;;; Generated autoloads from progmodes/f90.el | 10011 | ;;; Generated autoloads from progmodes/f90.el |
| 10000 | 10012 | ||
| 10001 | (autoload 'f90-mode "f90" "\ | 10013 | (autoload 'f90-mode "f90" "\ |
| @@ -10062,8 +10074,8 @@ with no args, if that value is non-nil. | |||
| 10062 | 10074 | ||
| 10063 | ;;;*** | 10075 | ;;;*** |
| 10064 | 10076 | ||
| 10065 | ;;;### (autoloads nil "face-remap" "face-remap.el" (21607 54478 300138 | 10077 | ;;;### (autoloads nil "face-remap" "face-remap.el" (21604 48550 53934 |
| 10066 | ;;;;;; 641000)) | 10078 | ;;;;;; 216000)) |
| 10067 | ;;; Generated autoloads from face-remap.el | 10079 | ;;; Generated autoloads from face-remap.el |
| 10068 | 10080 | ||
| 10069 | (autoload 'face-remap-add-relative "face-remap" "\ | 10081 | (autoload 'face-remap-add-relative "face-remap" "\ |
| @@ -10222,8 +10234,8 @@ Besides the choice of face, it is the same as `buffer-face-mode'. | |||
| 10222 | 10234 | ||
| 10223 | ;;;*** | 10235 | ;;;*** |
| 10224 | 10236 | ||
| 10225 | ;;;### (autoloads nil "feedmail" "mail/feedmail.el" (21607 54478 | 10237 | ;;;### (autoloads nil "feedmail" "mail/feedmail.el" (21604 48550 |
| 10226 | ;;;;;; 300138 641000)) | 10238 | ;;;;;; 181934 220000)) |
| 10227 | ;;; Generated autoloads from mail/feedmail.el | 10239 | ;;; Generated autoloads from mail/feedmail.el |
| 10228 | (push (purecopy '(feedmail 11)) package--builtin-versions) | 10240 | (push (purecopy '(feedmail 11)) package--builtin-versions) |
| 10229 | 10241 | ||
| @@ -10277,7 +10289,7 @@ you can set `feedmail-queue-reminder-alist' to nil. | |||
| 10277 | 10289 | ||
| 10278 | ;;;*** | 10290 | ;;;*** |
| 10279 | 10291 | ||
| 10280 | ;;;### (autoloads nil "ffap" "ffap.el" (21607 54478 300138 641000)) | 10292 | ;;;### (autoloads nil "ffap" "ffap.el" (21604 48550 57934 216000)) |
| 10281 | ;;; Generated autoloads from ffap.el | 10293 | ;;; Generated autoloads from ffap.el |
| 10282 | 10294 | ||
| 10283 | (autoload 'ffap-next "ffap" "\ | 10295 | (autoload 'ffap-next "ffap" "\ |
| @@ -10340,8 +10352,8 @@ Evaluate the forms in variable `ffap-bindings'. | |||
| 10340 | 10352 | ||
| 10341 | ;;;*** | 10353 | ;;;*** |
| 10342 | 10354 | ||
| 10343 | ;;;### (autoloads nil "filecache" "filecache.el" (21607 54478 300138 | 10355 | ;;;### (autoloads nil "filecache" "filecache.el" (21604 48550 57934 |
| 10344 | ;;;;;; 641000)) | 10356 | ;;;;;; 216000)) |
| 10345 | ;;; Generated autoloads from filecache.el | 10357 | ;;; Generated autoloads from filecache.el |
| 10346 | 10358 | ||
| 10347 | (autoload 'file-cache-add-directory "filecache" "\ | 10359 | (autoload 'file-cache-add-directory "filecache" "\ |
| @@ -10398,8 +10410,8 @@ the name is considered already unique; only the second substitution | |||
| 10398 | 10410 | ||
| 10399 | ;;;*** | 10411 | ;;;*** |
| 10400 | 10412 | ||
| 10401 | ;;;### (autoloads nil "filenotify" "filenotify.el" (21607 54478 300138 | 10413 | ;;;### (autoloads nil "filenotify" "filenotify.el" (21604 48550 57934 |
| 10402 | ;;;;;; 641000)) | 10414 | ;;;;;; 216000)) |
| 10403 | ;;; Generated autoloads from filenotify.el | 10415 | ;;; Generated autoloads from filenotify.el |
| 10404 | 10416 | ||
| 10405 | (autoload 'file-notify-handle-event "filenotify" "\ | 10417 | (autoload 'file-notify-handle-event "filenotify" "\ |
| @@ -10411,8 +10423,7 @@ Otherwise, signal a `file-notify-error'. | |||
| 10411 | 10423 | ||
| 10412 | ;;;*** | 10424 | ;;;*** |
| 10413 | 10425 | ||
| 10414 | ;;;### (autoloads nil "files-x" "files-x.el" (21607 54478 300138 | 10426 | ;;;### (autoloads nil "files-x" "files-x.el" (21604 48550 57934 216000)) |
| 10415 | ;;;;;; 641000)) | ||
| 10416 | ;;; Generated autoloads from files-x.el | 10427 | ;;; Generated autoloads from files-x.el |
| 10417 | 10428 | ||
| 10418 | (autoload 'add-file-local-variable "files-x" "\ | 10429 | (autoload 'add-file-local-variable "files-x" "\ |
| @@ -10477,8 +10488,8 @@ Copy directory-local variables to the -*- line. | |||
| 10477 | 10488 | ||
| 10478 | ;;;*** | 10489 | ;;;*** |
| 10479 | 10490 | ||
| 10480 | ;;;### (autoloads nil "filesets" "filesets.el" (21607 54478 300138 | 10491 | ;;;### (autoloads nil "filesets" "filesets.el" (21604 48550 61934 |
| 10481 | ;;;;;; 641000)) | 10492 | ;;;;;; 216000)) |
| 10482 | ;;; Generated autoloads from filesets.el | 10493 | ;;; Generated autoloads from filesets.el |
| 10483 | 10494 | ||
| 10484 | (autoload 'filesets-init "filesets" "\ | 10495 | (autoload 'filesets-init "filesets" "\ |
| @@ -10489,8 +10500,8 @@ Set up hooks, load the cache file -- if existing -- and build the menu. | |||
| 10489 | 10500 | ||
| 10490 | ;;;*** | 10501 | ;;;*** |
| 10491 | 10502 | ||
| 10492 | ;;;### (autoloads nil "find-cmd" "find-cmd.el" (21607 54478 300138 | 10503 | ;;;### (autoloads nil "find-cmd" "find-cmd.el" (21604 48550 61934 |
| 10493 | ;;;;;; 641000)) | 10504 | ;;;;;; 216000)) |
| 10494 | ;;; Generated autoloads from find-cmd.el | 10505 | ;;; Generated autoloads from find-cmd.el |
| 10495 | (push (purecopy '(find-cmd 0 6)) package--builtin-versions) | 10506 | (push (purecopy '(find-cmd 0 6)) package--builtin-versions) |
| 10496 | 10507 | ||
| @@ -10510,8 +10521,8 @@ result is a string that should be ready for the command line. | |||
| 10510 | 10521 | ||
| 10511 | ;;;*** | 10522 | ;;;*** |
| 10512 | 10523 | ||
| 10513 | ;;;### (autoloads nil "find-dired" "find-dired.el" (21607 54478 300138 | 10524 | ;;;### (autoloads nil "find-dired" "find-dired.el" (21604 48550 61934 |
| 10514 | ;;;;;; 641000)) | 10525 | ;;;;;; 216000)) |
| 10515 | ;;; Generated autoloads from find-dired.el | 10526 | ;;; Generated autoloads from find-dired.el |
| 10516 | 10527 | ||
| 10517 | (autoload 'find-dired "find-dired" "\ | 10528 | (autoload 'find-dired "find-dired" "\ |
| @@ -10551,8 +10562,8 @@ use in place of \"-ls\" as the final argument. | |||
| 10551 | 10562 | ||
| 10552 | ;;;*** | 10563 | ;;;*** |
| 10553 | 10564 | ||
| 10554 | ;;;### (autoloads nil "find-file" "find-file.el" (21607 54478 300138 | 10565 | ;;;### (autoloads nil "find-file" "find-file.el" (21604 48550 61934 |
| 10555 | ;;;;;; 641000)) | 10566 | ;;;;;; 216000)) |
| 10556 | ;;; Generated autoloads from find-file.el | 10567 | ;;; Generated autoloads from find-file.el |
| 10557 | 10568 | ||
| 10558 | (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ | 10569 | (defvar ff-special-constructs `((,(purecopy "^#\\s *\\(include\\|import\\)\\s +[<\"]\\(.*\\)[>\"]") lambda nil (buffer-substring (match-beginning 2) (match-end 2)))) "\ |
| @@ -10642,8 +10653,8 @@ Visit the file you click on in another window. | |||
| 10642 | 10653 | ||
| 10643 | ;;;*** | 10654 | ;;;*** |
| 10644 | 10655 | ||
| 10645 | ;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (21607 | 10656 | ;;;### (autoloads nil "find-func" "emacs-lisp/find-func.el" (21640 |
| 10646 | ;;;;;; 54477 800124 118000)) | 10657 | ;;;;;; 60472 610520 813000)) |
| 10647 | ;;; Generated autoloads from emacs-lisp/find-func.el | 10658 | ;;; Generated autoloads from emacs-lisp/find-func.el |
| 10648 | 10659 | ||
| 10649 | (autoload 'find-library "find-func" "\ | 10660 | (autoload 'find-library "find-func" "\ |
| @@ -10801,8 +10812,8 @@ Define some key bindings for the find-function family of functions. | |||
| 10801 | 10812 | ||
| 10802 | ;;;*** | 10813 | ;;;*** |
| 10803 | 10814 | ||
| 10804 | ;;;### (autoloads nil "find-lisp" "find-lisp.el" (21607 54478 300138 | 10815 | ;;;### (autoloads nil "find-lisp" "find-lisp.el" (21604 48550 61934 |
| 10805 | ;;;;;; 641000)) | 10816 | ;;;;;; 216000)) |
| 10806 | ;;; Generated autoloads from find-lisp.el | 10817 | ;;; Generated autoloads from find-lisp.el |
| 10807 | 10818 | ||
| 10808 | (autoload 'find-lisp-find-dired "find-lisp" "\ | 10819 | (autoload 'find-lisp-find-dired "find-lisp" "\ |
| @@ -10822,7 +10833,7 @@ Change the filter on a `find-lisp-find-dired' buffer to REGEXP. | |||
| 10822 | 10833 | ||
| 10823 | ;;;*** | 10834 | ;;;*** |
| 10824 | 10835 | ||
| 10825 | ;;;### (autoloads nil "finder" "finder.el" (21607 54478 300138 641000)) | 10836 | ;;;### (autoloads nil "finder" "finder.el" (21604 48550 61934 216000)) |
| 10826 | ;;; Generated autoloads from finder.el | 10837 | ;;; Generated autoloads from finder.el |
| 10827 | (push (purecopy '(finder 1 0)) package--builtin-versions) | 10838 | (push (purecopy '(finder 1 0)) package--builtin-versions) |
| 10828 | 10839 | ||
| @@ -10844,8 +10855,8 @@ Find packages matching a given keyword. | |||
| 10844 | 10855 | ||
| 10845 | ;;;*** | 10856 | ;;;*** |
| 10846 | 10857 | ||
| 10847 | ;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (21607 54478 300138 | 10858 | ;;;### (autoloads nil "flow-ctrl" "flow-ctrl.el" (21604 48550 61934 |
| 10848 | ;;;;;; 641000)) | 10859 | ;;;;;; 216000)) |
| 10849 | ;;; Generated autoloads from flow-ctrl.el | 10860 | ;;; Generated autoloads from flow-ctrl.el |
| 10850 | 10861 | ||
| 10851 | (autoload 'enable-flow-control "flow-ctrl" "\ | 10862 | (autoload 'enable-flow-control "flow-ctrl" "\ |
| @@ -10866,8 +10877,8 @@ to get the effect of a C-q. | |||
| 10866 | 10877 | ||
| 10867 | ;;;*** | 10878 | ;;;*** |
| 10868 | 10879 | ||
| 10869 | ;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (21607 54478 | 10880 | ;;;### (autoloads nil "flow-fill" "gnus/flow-fill.el" (21604 48550 |
| 10870 | ;;;;;; 300138 641000)) | 10881 | ;;;;;; 81934 217000)) |
| 10871 | ;;; Generated autoloads from gnus/flow-fill.el | 10882 | ;;; Generated autoloads from gnus/flow-fill.el |
| 10872 | 10883 | ||
| 10873 | (autoload 'fill-flowed-encode "flow-fill" "\ | 10884 | (autoload 'fill-flowed-encode "flow-fill" "\ |
| @@ -10882,8 +10893,8 @@ to get the effect of a C-q. | |||
| 10882 | 10893 | ||
| 10883 | ;;;*** | 10894 | ;;;*** |
| 10884 | 10895 | ||
| 10885 | ;;;### (autoloads nil "flymake" "progmodes/flymake.el" (21607 54478 | 10896 | ;;;### (autoloads nil "flymake" "progmodes/flymake.el" (21604 48550 |
| 10886 | ;;;;;; 800121 42000)) | 10897 | ;;;;;; 333934 226000)) |
| 10887 | ;;; Generated autoloads from progmodes/flymake.el | 10898 | ;;; Generated autoloads from progmodes/flymake.el |
| 10888 | (push (purecopy '(flymake 0 3)) package--builtin-versions) | 10899 | (push (purecopy '(flymake 0 3)) package--builtin-versions) |
| 10889 | 10900 | ||
| @@ -10913,8 +10924,8 @@ Turn flymake mode off. | |||
| 10913 | 10924 | ||
| 10914 | ;;;*** | 10925 | ;;;*** |
| 10915 | 10926 | ||
| 10916 | ;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (21607 54478 | 10927 | ;;;### (autoloads nil "flyspell" "textmodes/flyspell.el" (21604 48550 |
| 10917 | ;;;;;; 800121 42000)) | 10928 | ;;;;;; 397934 228000)) |
| 10918 | ;;; Generated autoloads from textmodes/flyspell.el | 10929 | ;;; Generated autoloads from textmodes/flyspell.el |
| 10919 | 10930 | ||
| 10920 | (autoload 'flyspell-prog-mode "flyspell" "\ | 10931 | (autoload 'flyspell-prog-mode "flyspell" "\ |
| @@ -10984,14 +10995,13 @@ Flyspell whole buffer. | |||
| 10984 | 10995 | ||
| 10985 | ;;;*** | 10996 | ;;;*** |
| 10986 | 10997 | ||
| 10987 | ;;;### (autoloads nil "foldout" "foldout.el" (21607 54478 300138 | 10998 | ;;;### (autoloads nil "foldout" "foldout.el" (21604 48550 61934 216000)) |
| 10988 | ;;;;;; 641000)) | ||
| 10989 | ;;; Generated autoloads from foldout.el | 10999 | ;;; Generated autoloads from foldout.el |
| 10990 | (push (purecopy '(foldout 1 10)) package--builtin-versions) | 11000 | (push (purecopy '(foldout 1 10)) package--builtin-versions) |
| 10991 | 11001 | ||
| 10992 | ;;;*** | 11002 | ;;;*** |
| 10993 | 11003 | ||
| 10994 | ;;;### (autoloads nil "follow" "follow.el" (21607 54478 300138 641000)) | 11004 | ;;;### (autoloads nil "follow" "follow.el" (21604 48550 61934 216000)) |
| 10995 | ;;; Generated autoloads from follow.el | 11005 | ;;; Generated autoloads from follow.el |
| 10996 | 11006 | ||
| 10997 | (autoload 'turn-on-follow-mode "follow" "\ | 11007 | (autoload 'turn-on-follow-mode "follow" "\ |
| @@ -11059,8 +11069,8 @@ selected if the original window is the first one in the frame. | |||
| 11059 | 11069 | ||
| 11060 | ;;;*** | 11070 | ;;;*** |
| 11061 | 11071 | ||
| 11062 | ;;;### (autoloads nil "footnote" "mail/footnote.el" (21607 54478 | 11072 | ;;;### (autoloads nil "footnote" "mail/footnote.el" (21604 48550 |
| 11063 | ;;;;;; 300138 641000)) | 11073 | ;;;;;; 181934 220000)) |
| 11064 | ;;; Generated autoloads from mail/footnote.el | 11074 | ;;; Generated autoloads from mail/footnote.el |
| 11065 | (push (purecopy '(footnote 0 19)) package--builtin-versions) | 11075 | (push (purecopy '(footnote 0 19)) package--builtin-versions) |
| 11066 | 11076 | ||
| @@ -11079,7 +11089,7 @@ play around with the following keys: | |||
| 11079 | 11089 | ||
| 11080 | ;;;*** | 11090 | ;;;*** |
| 11081 | 11091 | ||
| 11082 | ;;;### (autoloads nil "forms" "forms.el" (21607 54478 300138 641000)) | 11092 | ;;;### (autoloads nil "forms" "forms.el" (21604 48550 65934 216000)) |
| 11083 | ;;; Generated autoloads from forms.el | 11093 | ;;; Generated autoloads from forms.el |
| 11084 | 11094 | ||
| 11085 | (autoload 'forms-mode "forms" "\ | 11095 | (autoload 'forms-mode "forms" "\ |
| @@ -11115,8 +11125,8 @@ Visit a file in Forms mode in other window. | |||
| 11115 | 11125 | ||
| 11116 | ;;;*** | 11126 | ;;;*** |
| 11117 | 11127 | ||
| 11118 | ;;;### (autoloads nil "fortran" "progmodes/fortran.el" (21607 54478 | 11128 | ;;;### (autoloads nil "fortran" "progmodes/fortran.el" (21604 48550 |
| 11119 | ;;;;;; 800121 42000)) | 11129 | ;;;;;; 337934 226000)) |
| 11120 | ;;; Generated autoloads from progmodes/fortran.el | 11130 | ;;; Generated autoloads from progmodes/fortran.el |
| 11121 | 11131 | ||
| 11122 | (autoload 'fortran-mode "fortran" "\ | 11132 | (autoload 'fortran-mode "fortran" "\ |
| @@ -11193,8 +11203,8 @@ with no args, if that value is non-nil. | |||
| 11193 | 11203 | ||
| 11194 | ;;;*** | 11204 | ;;;*** |
| 11195 | 11205 | ||
| 11196 | ;;;### (autoloads nil "fortune" "play/fortune.el" (21607 54478 800121 | 11206 | ;;;### (autoloads nil "fortune" "play/fortune.el" (21604 48550 305934 |
| 11197 | ;;;;;; 42000)) | 11207 | ;;;;;; 225000)) |
| 11198 | ;;; Generated autoloads from play/fortune.el | 11208 | ;;; Generated autoloads from play/fortune.el |
| 11199 | 11209 | ||
| 11200 | (autoload 'fortune-add-fortune "fortune" "\ | 11210 | (autoload 'fortune-add-fortune "fortune" "\ |
| @@ -11242,8 +11252,8 @@ and choose the directory as the fortune-file. | |||
| 11242 | 11252 | ||
| 11243 | ;;;*** | 11253 | ;;;*** |
| 11244 | 11254 | ||
| 11245 | ;;;### (autoloads nil "frameset" "frameset.el" (21607 54478 300138 | 11255 | ;;;### (autoloads nil "frameset" "frameset.el" (21604 48550 65934 |
| 11246 | ;;;;;; 641000)) | 11256 | ;;;;;; 216000)) |
| 11247 | ;;; Generated autoloads from frameset.el | 11257 | ;;; Generated autoloads from frameset.el |
| 11248 | 11258 | ||
| 11249 | (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ | 11259 | (defvar frameset-session-filter-alist '((name . :never) (left . frameset-filter-iconified) (minibuffer . frameset-filter-minibuffer) (top . frameset-filter-iconified)) "\ |
| @@ -11429,15 +11439,15 @@ Interactively, reads the register using `register-read-with-preview'. | |||
| 11429 | 11439 | ||
| 11430 | ;;;*** | 11440 | ;;;*** |
| 11431 | 11441 | ||
| 11432 | ;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (21607 54478 | 11442 | ;;;### (autoloads nil "gamegrid" "play/gamegrid.el" (21604 48550 |
| 11433 | ;;;;;; 800121 42000)) | 11443 | ;;;;;; 305934 225000)) |
| 11434 | ;;; Generated autoloads from play/gamegrid.el | 11444 | ;;; Generated autoloads from play/gamegrid.el |
| 11435 | (push (purecopy '(gamegrid 1 2)) package--builtin-versions) | 11445 | (push (purecopy '(gamegrid 1 2)) package--builtin-versions) |
| 11436 | 11446 | ||
| 11437 | ;;;*** | 11447 | ;;;*** |
| 11438 | 11448 | ||
| 11439 | ;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21607 54478 | 11449 | ;;;### (autoloads nil "gdb-mi" "progmodes/gdb-mi.el" (21604 48550 |
| 11440 | ;;;;;; 800121 42000)) | 11450 | ;;;;;; 337934 226000)) |
| 11441 | ;;; Generated autoloads from progmodes/gdb-mi.el | 11451 | ;;; Generated autoloads from progmodes/gdb-mi.el |
| 11442 | 11452 | ||
| 11443 | (defvar gdb-enable-debug nil "\ | 11453 | (defvar gdb-enable-debug nil "\ |
| @@ -11514,8 +11524,8 @@ detailed description of this mode. | |||
| 11514 | 11524 | ||
| 11515 | ;;;*** | 11525 | ;;;*** |
| 11516 | 11526 | ||
| 11517 | ;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (21607 54477 | 11527 | ;;;### (autoloads nil "generic" "emacs-lisp/generic.el" (21604 48550 |
| 11518 | ;;;;;; 800124 118000)) | 11528 | ;;;;;; 17934 214000)) |
| 11519 | ;;; Generated autoloads from emacs-lisp/generic.el | 11529 | ;;; Generated autoloads from emacs-lisp/generic.el |
| 11520 | 11530 | ||
| 11521 | (defvar generic-mode-list nil "\ | 11531 | (defvar generic-mode-list nil "\ |
| @@ -11595,8 +11605,8 @@ regular expression that can be used as an element of | |||
| 11595 | 11605 | ||
| 11596 | ;;;*** | 11606 | ;;;*** |
| 11597 | 11607 | ||
| 11598 | ;;;### (autoloads nil "glasses" "progmodes/glasses.el" (21607 54478 | 11608 | ;;;### (autoloads nil "glasses" "progmodes/glasses.el" (21604 48550 |
| 11599 | ;;;;;; 800121 42000)) | 11609 | ;;;;;; 337934 226000)) |
| 11600 | ;;; Generated autoloads from progmodes/glasses.el | 11610 | ;;; Generated autoloads from progmodes/glasses.el |
| 11601 | 11611 | ||
| 11602 | (autoload 'glasses-mode "glasses" "\ | 11612 | (autoload 'glasses-mode "glasses" "\ |
| @@ -11610,8 +11620,8 @@ add virtual separators (like underscores) at places they belong to. | |||
| 11610 | 11620 | ||
| 11611 | ;;;*** | 11621 | ;;;*** |
| 11612 | 11622 | ||
| 11613 | ;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (21607 54478 | 11623 | ;;;### (autoloads nil "gmm-utils" "gnus/gmm-utils.el" (21604 48550 |
| 11614 | ;;;;;; 300138 641000)) | 11624 | ;;;;;; 81934 217000)) |
| 11615 | ;;; Generated autoloads from gnus/gmm-utils.el | 11625 | ;;; Generated autoloads from gnus/gmm-utils.el |
| 11616 | 11626 | ||
| 11617 | (autoload 'gmm-regexp-concat "gmm-utils" "\ | 11627 | (autoload 'gmm-regexp-concat "gmm-utils" "\ |
| @@ -11665,7 +11675,7 @@ DEFAULT-MAP specifies the default key map for ICON-LIST. | |||
| 11665 | 11675 | ||
| 11666 | ;;;*** | 11676 | ;;;*** |
| 11667 | 11677 | ||
| 11668 | ;;;### (autoloads nil "gnus" "gnus/gnus.el" (21607 54478 300138 641000)) | 11678 | ;;;### (autoloads nil "gnus" "gnus/gnus.el" (21604 48550 101934 217000)) |
| 11669 | ;;; Generated autoloads from gnus/gnus.el | 11679 | ;;; Generated autoloads from gnus/gnus.el |
| 11670 | (push (purecopy '(gnus 5 13)) package--builtin-versions) | 11680 | (push (purecopy '(gnus 5 13)) package--builtin-versions) |
| 11671 | (when (fboundp 'custom-autoload) | 11681 | (when (fboundp 'custom-autoload) |
| @@ -11715,8 +11725,8 @@ prompt the user for the name of an NNTP server to use. | |||
| 11715 | 11725 | ||
| 11716 | ;;;*** | 11726 | ;;;*** |
| 11717 | 11727 | ||
| 11718 | ;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (21607 54478 | 11728 | ;;;### (autoloads nil "gnus-agent" "gnus/gnus-agent.el" (21604 48550 |
| 11719 | ;;;;;; 300138 641000)) | 11729 | ;;;;;; 85934 217000)) |
| 11720 | ;;; Generated autoloads from gnus/gnus-agent.el | 11730 | ;;; Generated autoloads from gnus/gnus-agent.el |
| 11721 | 11731 | ||
| 11722 | (autoload 'gnus-unplugged "gnus-agent" "\ | 11732 | (autoload 'gnus-unplugged "gnus-agent" "\ |
| @@ -11806,8 +11816,8 @@ CLEAN is obsolete and ignored. | |||
| 11806 | 11816 | ||
| 11807 | ;;;*** | 11817 | ;;;*** |
| 11808 | 11818 | ||
| 11809 | ;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21623 2108 292281 | 11819 | ;;;### (autoloads nil "gnus-art" "gnus/gnus-art.el" (21651 20707 |
| 11810 | ;;;;;; 129000)) | 11820 | ;;;;;; 176225 752000)) |
| 11811 | ;;; Generated autoloads from gnus/gnus-art.el | 11821 | ;;; Generated autoloads from gnus/gnus-art.el |
| 11812 | 11822 | ||
| 11813 | (autoload 'gnus-article-prepare-display "gnus-art" "\ | 11823 | (autoload 'gnus-article-prepare-display "gnus-art" "\ |
| @@ -11817,8 +11827,8 @@ Make the current buffer look like a nice article. | |||
| 11817 | 11827 | ||
| 11818 | ;;;*** | 11828 | ;;;*** |
| 11819 | 11829 | ||
| 11820 | ;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (21607 | 11830 | ;;;### (autoloads nil "gnus-bookmark" "gnus/gnus-bookmark.el" (21645 |
| 11821 | ;;;;;; 54478 300138 641000)) | 11831 | ;;;;;; 25761 793186 828000)) |
| 11822 | ;;; Generated autoloads from gnus/gnus-bookmark.el | 11832 | ;;; Generated autoloads from gnus/gnus-bookmark.el |
| 11823 | 11833 | ||
| 11824 | (autoload 'gnus-bookmark-set "gnus-bookmark" "\ | 11834 | (autoload 'gnus-bookmark-set "gnus-bookmark" "\ |
| @@ -11841,8 +11851,8 @@ deletion, or > if it is flagged for displaying. | |||
| 11841 | 11851 | ||
| 11842 | ;;;*** | 11852 | ;;;*** |
| 11843 | 11853 | ||
| 11844 | ;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (21607 54478 | 11854 | ;;;### (autoloads nil "gnus-cache" "gnus/gnus-cache.el" (21604 48550 |
| 11845 | ;;;;;; 300138 641000)) | 11855 | ;;;;;; 85934 217000)) |
| 11846 | ;;; Generated autoloads from gnus/gnus-cache.el | 11856 | ;;; Generated autoloads from gnus/gnus-cache.el |
| 11847 | 11857 | ||
| 11848 | (autoload 'gnus-jog-cache "gnus-cache" "\ | 11858 | (autoload 'gnus-jog-cache "gnus-cache" "\ |
| @@ -11883,8 +11893,8 @@ supported. | |||
| 11883 | 11893 | ||
| 11884 | ;;;*** | 11894 | ;;;*** |
| 11885 | 11895 | ||
| 11886 | ;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (21607 54478 | 11896 | ;;;### (autoloads nil "gnus-delay" "gnus/gnus-delay.el" (21604 48550 |
| 11887 | ;;;;;; 300138 641000)) | 11897 | ;;;;;; 89934 217000)) |
| 11888 | ;;; Generated autoloads from gnus/gnus-delay.el | 11898 | ;;; Generated autoloads from gnus/gnus-delay.el |
| 11889 | 11899 | ||
| 11890 | (autoload 'gnus-delay-article "gnus-delay" "\ | 11900 | (autoload 'gnus-delay-article "gnus-delay" "\ |
| @@ -11919,8 +11929,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 11919 | 11929 | ||
| 11920 | ;;;*** | 11930 | ;;;*** |
| 11921 | 11931 | ||
| 11922 | ;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (21607 54478 | 11932 | ;;;### (autoloads nil "gnus-diary" "gnus/gnus-diary.el" (21604 48550 |
| 11923 | ;;;;;; 300138 641000)) | 11933 | ;;;;;; 89934 217000)) |
| 11924 | ;;; Generated autoloads from gnus/gnus-diary.el | 11934 | ;;; Generated autoloads from gnus/gnus-diary.el |
| 11925 | 11935 | ||
| 11926 | (autoload 'gnus-user-format-function-d "gnus-diary" "\ | 11936 | (autoload 'gnus-user-format-function-d "gnus-diary" "\ |
| @@ -11935,8 +11945,8 @@ Checking delayed messages is skipped if optional arg NO-CHECK is non-nil. | |||
| 11935 | 11945 | ||
| 11936 | ;;;*** | 11946 | ;;;*** |
| 11937 | 11947 | ||
| 11938 | ;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (21607 54478 | 11948 | ;;;### (autoloads nil "gnus-dired" "gnus/gnus-dired.el" (21604 48550 |
| 11939 | ;;;;;; 300138 641000)) | 11949 | ;;;;;; 89934 217000)) |
| 11940 | ;;; Generated autoloads from gnus/gnus-dired.el | 11950 | ;;; Generated autoloads from gnus/gnus-dired.el |
| 11941 | 11951 | ||
| 11942 | (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ | 11952 | (autoload 'turn-on-gnus-dired-mode "gnus-dired" "\ |
| @@ -11946,8 +11956,8 @@ Convenience method to turn on gnus-dired-mode. | |||
| 11946 | 11956 | ||
| 11947 | ;;;*** | 11957 | ;;;*** |
| 11948 | 11958 | ||
| 11949 | ;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (21607 54478 | 11959 | ;;;### (autoloads nil "gnus-draft" "gnus/gnus-draft.el" (21604 48550 |
| 11950 | ;;;;;; 300138 641000)) | 11960 | ;;;;;; 89934 217000)) |
| 11951 | ;;; Generated autoloads from gnus/gnus-draft.el | 11961 | ;;; Generated autoloads from gnus/gnus-draft.el |
| 11952 | 11962 | ||
| 11953 | (autoload 'gnus-draft-reminder "gnus-draft" "\ | 11963 | (autoload 'gnus-draft-reminder "gnus-draft" "\ |
| @@ -11957,8 +11967,8 @@ Reminder user if there are unsent drafts. | |||
| 11957 | 11967 | ||
| 11958 | ;;;*** | 11968 | ;;;*** |
| 11959 | 11969 | ||
| 11960 | ;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (21607 54478 | 11970 | ;;;### (autoloads nil "gnus-fun" "gnus/gnus-fun.el" (21604 48550 |
| 11961 | ;;;;;; 300138 641000)) | 11971 | ;;;;;; 89934 217000)) |
| 11962 | ;;; Generated autoloads from gnus/gnus-fun.el | 11972 | ;;; Generated autoloads from gnus/gnus-fun.el |
| 11963 | 11973 | ||
| 11964 | (autoload 'gnus--random-face-with-type "gnus-fun" "\ | 11974 | (autoload 'gnus--random-face-with-type "gnus-fun" "\ |
| @@ -12023,8 +12033,8 @@ Insert a random Face header from `gnus-face-directory'. | |||
| 12023 | 12033 | ||
| 12024 | ;;;*** | 12034 | ;;;*** |
| 12025 | 12035 | ||
| 12026 | ;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (21607 | 12036 | ;;;### (autoloads nil "gnus-gravatar" "gnus/gnus-gravatar.el" (21604 |
| 12027 | ;;;;;; 54478 300138 641000)) | 12037 | ;;;;;; 48550 89934 217000)) |
| 12028 | ;;; Generated autoloads from gnus/gnus-gravatar.el | 12038 | ;;; Generated autoloads from gnus/gnus-gravatar.el |
| 12029 | 12039 | ||
| 12030 | (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ | 12040 | (autoload 'gnus-treat-from-gravatar "gnus-gravatar" "\ |
| @@ -12041,8 +12051,8 @@ If gravatars are already displayed, remove them. | |||
| 12041 | 12051 | ||
| 12042 | ;;;*** | 12052 | ;;;*** |
| 12043 | 12053 | ||
| 12044 | ;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21607 54478 | 12054 | ;;;### (autoloads nil "gnus-group" "gnus/gnus-group.el" (21604 48550 |
| 12045 | ;;;;;; 300138 641000)) | 12055 | ;;;;;; 89934 217000)) |
| 12046 | ;;; Generated autoloads from gnus/gnus-group.el | 12056 | ;;; Generated autoloads from gnus/gnus-group.el |
| 12047 | 12057 | ||
| 12048 | (autoload 'gnus-fetch-group "gnus-group" "\ | 12058 | (autoload 'gnus-fetch-group "gnus-group" "\ |
| @@ -12059,8 +12069,8 @@ Pop up a frame and enter GROUP. | |||
| 12059 | 12069 | ||
| 12060 | ;;;*** | 12070 | ;;;*** |
| 12061 | 12071 | ||
| 12062 | ;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21607 54478 | 12072 | ;;;### (autoloads nil "gnus-html" "gnus/gnus-html.el" (21604 48550 |
| 12063 | ;;;;;; 300138 641000)) | 12073 | ;;;;;; 89934 217000)) |
| 12064 | ;;; Generated autoloads from gnus/gnus-html.el | 12074 | ;;; Generated autoloads from gnus/gnus-html.el |
| 12065 | 12075 | ||
| 12066 | (autoload 'gnus-article-html "gnus-html" "\ | 12076 | (autoload 'gnus-article-html "gnus-html" "\ |
| @@ -12075,8 +12085,8 @@ Pop up a frame and enter GROUP. | |||
| 12075 | 12085 | ||
| 12076 | ;;;*** | 12086 | ;;;*** |
| 12077 | 12087 | ||
| 12078 | ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (21607 54478 | 12088 | ;;;### (autoloads nil "gnus-kill" "gnus/gnus-kill.el" (21604 48550 |
| 12079 | ;;;;;; 300138 641000)) | 12089 | ;;;;;; 93934 217000)) |
| 12080 | ;;; Generated autoloads from gnus/gnus-kill.el | 12090 | ;;; Generated autoloads from gnus/gnus-kill.el |
| 12081 | 12091 | ||
| 12082 | (defalias 'gnus-batch-kill 'gnus-batch-score) | 12092 | (defalias 'gnus-batch-kill 'gnus-batch-score) |
| @@ -12089,8 +12099,8 @@ Usage: emacs -batch -l ~/.emacs -l gnus -f gnus-batch-score | |||
| 12089 | 12099 | ||
| 12090 | ;;;*** | 12100 | ;;;*** |
| 12091 | 12101 | ||
| 12092 | ;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (21607 54478 300138 | 12102 | ;;;### (autoloads nil "gnus-ml" "gnus/gnus-ml.el" (21604 48550 93934 |
| 12093 | ;;;;;; 641000)) | 12103 | ;;;;;; 217000)) |
| 12094 | ;;; Generated autoloads from gnus/gnus-ml.el | 12104 | ;;; Generated autoloads from gnus/gnus-ml.el |
| 12095 | 12105 | ||
| 12096 | (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ | 12106 | (autoload 'turn-on-gnus-mailing-list-mode "gnus-ml" "\ |
| @@ -12113,8 +12123,8 @@ Minor mode for providing mailing-list commands. | |||
| 12113 | 12123 | ||
| 12114 | ;;;*** | 12124 | ;;;*** |
| 12115 | 12125 | ||
| 12116 | ;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (21607 54478 | 12126 | ;;;### (autoloads nil "gnus-mlspl" "gnus/gnus-mlspl.el" (21604 48550 |
| 12117 | ;;;;;; 300138 641000)) | 12127 | ;;;;;; 93934 217000)) |
| 12118 | ;;; Generated autoloads from gnus/gnus-mlspl.el | 12128 | ;;; Generated autoloads from gnus/gnus-mlspl.el |
| 12119 | 12129 | ||
| 12120 | (autoload 'gnus-group-split-setup "gnus-mlspl" "\ | 12130 | (autoload 'gnus-group-split-setup "gnus-mlspl" "\ |
| @@ -12214,8 +12224,8 @@ Calling (gnus-group-split-fancy nil nil \"mail.others\") returns: | |||
| 12214 | 12224 | ||
| 12215 | ;;;*** | 12225 | ;;;*** |
| 12216 | 12226 | ||
| 12217 | ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21607 54478 | 12227 | ;;;### (autoloads nil "gnus-msg" "gnus/gnus-msg.el" (21604 48550 |
| 12218 | ;;;;;; 300138 641000)) | 12228 | ;;;;;; 93934 217000)) |
| 12219 | ;;; Generated autoloads from gnus/gnus-msg.el | 12229 | ;;; Generated autoloads from gnus/gnus-msg.el |
| 12220 | 12230 | ||
| 12221 | (autoload 'gnus-msg-mail "gnus-msg" "\ | 12231 | (autoload 'gnus-msg-mail "gnus-msg" "\ |
| @@ -12242,7 +12252,7 @@ Like `message-reply'. | |||
| 12242 | ;;;*** | 12252 | ;;;*** |
| 12243 | 12253 | ||
| 12244 | ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" | 12254 | ;;;### (autoloads nil "gnus-notifications" "gnus/gnus-notifications.el" |
| 12245 | ;;;;;; (21607 54478 300138 641000)) | 12255 | ;;;;;; (21631 35966 851121 868000)) |
| 12246 | ;;; Generated autoloads from gnus/gnus-notifications.el | 12256 | ;;; Generated autoloads from gnus/gnus-notifications.el |
| 12247 | 12257 | ||
| 12248 | (autoload 'gnus-notifications "gnus-notifications" "\ | 12258 | (autoload 'gnus-notifications "gnus-notifications" "\ |
| @@ -12258,8 +12268,8 @@ This is typically a function to add in | |||
| 12258 | 12268 | ||
| 12259 | ;;;*** | 12269 | ;;;*** |
| 12260 | 12270 | ||
| 12261 | ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (21607 54478 | 12271 | ;;;### (autoloads nil "gnus-picon" "gnus/gnus-picon.el" (21604 48550 |
| 12262 | ;;;;;; 300138 641000)) | 12272 | ;;;;;; 93934 217000)) |
| 12263 | ;;; Generated autoloads from gnus/gnus-picon.el | 12273 | ;;; Generated autoloads from gnus/gnus-picon.el |
| 12264 | 12274 | ||
| 12265 | (autoload 'gnus-treat-from-picon "gnus-picon" "\ | 12275 | (autoload 'gnus-treat-from-picon "gnus-picon" "\ |
| @@ -12282,8 +12292,8 @@ If picons are already displayed, remove them. | |||
| 12282 | 12292 | ||
| 12283 | ;;;*** | 12293 | ;;;*** |
| 12284 | 12294 | ||
| 12285 | ;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (21607 54478 | 12295 | ;;;### (autoloads nil "gnus-range" "gnus/gnus-range.el" (21604 48550 |
| 12286 | ;;;;;; 300138 641000)) | 12296 | ;;;;;; 93934 217000)) |
| 12287 | ;;; Generated autoloads from gnus/gnus-range.el | 12297 | ;;; Generated autoloads from gnus/gnus-range.el |
| 12288 | 12298 | ||
| 12289 | (autoload 'gnus-sorted-difference "gnus-range" "\ | 12299 | (autoload 'gnus-sorted-difference "gnus-range" "\ |
| @@ -12350,8 +12360,8 @@ Add NUM into sorted LIST by side effect. | |||
| 12350 | 12360 | ||
| 12351 | ;;;*** | 12361 | ;;;*** |
| 12352 | 12362 | ||
| 12353 | ;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (21607 | 12363 | ;;;### (autoloads nil "gnus-registry" "gnus/gnus-registry.el" (21650 |
| 12354 | ;;;;;; 54478 300138 641000)) | 12364 | ;;;;;; 56624 523745 975000)) |
| 12355 | ;;; Generated autoloads from gnus/gnus-registry.el | 12365 | ;;; Generated autoloads from gnus/gnus-registry.el |
| 12356 | 12366 | ||
| 12357 | (autoload 'gnus-registry-initialize "gnus-registry" "\ | 12367 | (autoload 'gnus-registry-initialize "gnus-registry" "\ |
| @@ -12366,8 +12376,8 @@ Install the registry hooks. | |||
| 12366 | 12376 | ||
| 12367 | ;;;*** | 12377 | ;;;*** |
| 12368 | 12378 | ||
| 12369 | ;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (21607 54478 | 12379 | ;;;### (autoloads nil "gnus-sieve" "gnus/gnus-sieve.el" (21604 48550 |
| 12370 | ;;;;;; 300138 641000)) | 12380 | ;;;;;; 93934 217000)) |
| 12371 | ;;; Generated autoloads from gnus/gnus-sieve.el | 12381 | ;;; Generated autoloads from gnus/gnus-sieve.el |
| 12372 | 12382 | ||
| 12373 | (autoload 'gnus-sieve-update "gnus-sieve" "\ | 12383 | (autoload 'gnus-sieve-update "gnus-sieve" "\ |
| @@ -12394,8 +12404,8 @@ See the documentation for these variables and functions for details. | |||
| 12394 | 12404 | ||
| 12395 | ;;;*** | 12405 | ;;;*** |
| 12396 | 12406 | ||
| 12397 | ;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21607 54478 | 12407 | ;;;### (autoloads nil "gnus-spec" "gnus/gnus-spec.el" (21604 48550 |
| 12398 | ;;;;;; 300138 641000)) | 12408 | ;;;;;; 93934 217000)) |
| 12399 | ;;; Generated autoloads from gnus/gnus-spec.el | 12409 | ;;; Generated autoloads from gnus/gnus-spec.el |
| 12400 | 12410 | ||
| 12401 | (autoload 'gnus-update-format "gnus-spec" "\ | 12411 | (autoload 'gnus-update-format "gnus-spec" "\ |
| @@ -12405,8 +12415,8 @@ Update the format specification near point. | |||
| 12405 | 12415 | ||
| 12406 | ;;;*** | 12416 | ;;;*** |
| 12407 | 12417 | ||
| 12408 | ;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (21620 25920 | 12418 | ;;;### (autoloads nil "gnus-start" "gnus/gnus-start.el" (21631 35966 |
| 12409 | ;;;;;; 601566 783000)) | 12419 | ;;;;;; 851121 868000)) |
| 12410 | ;;; Generated autoloads from gnus/gnus-start.el | 12420 | ;;; Generated autoloads from gnus/gnus-start.el |
| 12411 | 12421 | ||
| 12412 | (autoload 'gnus-declare-backend "gnus-start" "\ | 12422 | (autoload 'gnus-declare-backend "gnus-start" "\ |
| @@ -12416,8 +12426,8 @@ Declare back end NAME with ABILITIES as a Gnus back end. | |||
| 12416 | 12426 | ||
| 12417 | ;;;*** | 12427 | ;;;*** |
| 12418 | 12428 | ||
| 12419 | ;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21623 2108 292281 | 12429 | ;;;### (autoloads nil "gnus-sum" "gnus/gnus-sum.el" (21631 35966 |
| 12420 | ;;;;;; 129000)) | 12430 | ;;;;;; 855121 868000)) |
| 12421 | ;;; Generated autoloads from gnus/gnus-sum.el | 12431 | ;;; Generated autoloads from gnus/gnus-sum.el |
| 12422 | 12432 | ||
| 12423 | (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ | 12433 | (autoload 'gnus-summary-bookmark-jump "gnus-sum" "\ |
| @@ -12428,8 +12438,8 @@ BOOKMARK is a bookmark name or a bookmark record. | |||
| 12428 | 12438 | ||
| 12429 | ;;;*** | 12439 | ;;;*** |
| 12430 | 12440 | ||
| 12431 | ;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (21607 54478 | 12441 | ;;;### (autoloads nil "gnus-sync" "gnus/gnus-sync.el" (21604 48550 |
| 12432 | ;;;;;; 300138 641000)) | 12442 | ;;;;;; 101934 217000)) |
| 12433 | ;;; Generated autoloads from gnus/gnus-sync.el | 12443 | ;;; Generated autoloads from gnus/gnus-sync.el |
| 12434 | 12444 | ||
| 12435 | (autoload 'gnus-sync-initialize "gnus-sync" "\ | 12445 | (autoload 'gnus-sync-initialize "gnus-sync" "\ |
| @@ -12444,8 +12454,8 @@ Install the sync hooks. | |||
| 12444 | 12454 | ||
| 12445 | ;;;*** | 12455 | ;;;*** |
| 12446 | 12456 | ||
| 12447 | ;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (21607 54478 | 12457 | ;;;### (autoloads nil "gnus-win" "gnus/gnus-win.el" (21604 48550 |
| 12448 | ;;;;;; 300138 641000)) | 12458 | ;;;;;; 101934 217000)) |
| 12449 | ;;; Generated autoloads from gnus/gnus-win.el | 12459 | ;;; Generated autoloads from gnus/gnus-win.el |
| 12450 | 12460 | ||
| 12451 | (autoload 'gnus-add-configuration "gnus-win" "\ | 12461 | (autoload 'gnus-add-configuration "gnus-win" "\ |
| @@ -12455,8 +12465,8 @@ Add the window configuration CONF to `gnus-buffer-configuration'. | |||
| 12455 | 12465 | ||
| 12456 | ;;;*** | 12466 | ;;;*** |
| 12457 | 12467 | ||
| 12458 | ;;;### (autoloads nil "gnutls" "net/gnutls.el" (21620 46140 530123 | 12468 | ;;;### (autoloads nil "gnutls" "net/gnutls.el" (21640 32530 974334 |
| 12459 | ;;;;;; 341000)) | 12469 | ;;;;;; 457000)) |
| 12460 | ;;; Generated autoloads from net/gnutls.el | 12470 | ;;; Generated autoloads from net/gnutls.el |
| 12461 | 12471 | ||
| 12462 | (defvar gnutls-min-prime-bits 256 "\ | 12472 | (defvar gnutls-min-prime-bits 256 "\ |
| @@ -12472,8 +12482,8 @@ A value of nil says to use the default GnuTLS value.") | |||
| 12472 | 12482 | ||
| 12473 | ;;;*** | 12483 | ;;;*** |
| 12474 | 12484 | ||
| 12475 | ;;;### (autoloads nil "gomoku" "play/gomoku.el" (21607 54478 800121 | 12485 | ;;;### (autoloads nil "gomoku" "play/gomoku.el" (21604 48550 305934 |
| 12476 | ;;;;;; 42000)) | 12486 | ;;;;;; 225000)) |
| 12477 | ;;; Generated autoloads from play/gomoku.el | 12487 | ;;; Generated autoloads from play/gomoku.el |
| 12478 | 12488 | ||
| 12479 | (autoload 'gomoku "gomoku" "\ | 12489 | (autoload 'gomoku "gomoku" "\ |
| @@ -12499,8 +12509,8 @@ Use \\[describe-mode] for more info. | |||
| 12499 | 12509 | ||
| 12500 | ;;;*** | 12510 | ;;;*** |
| 12501 | 12511 | ||
| 12502 | ;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (21607 54478 | 12512 | ;;;### (autoloads nil "goto-addr" "net/goto-addr.el" (21604 48550 |
| 12503 | ;;;;;; 300138 641000)) | 12513 | ;;;;;; 217934 222000)) |
| 12504 | ;;; Generated autoloads from net/goto-addr.el | 12514 | ;;; Generated autoloads from net/goto-addr.el |
| 12505 | 12515 | ||
| 12506 | (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") | 12516 | (define-obsolete-function-alias 'goto-address-at-mouse 'goto-address-at-point "22.1") |
| @@ -12541,8 +12551,8 @@ Like `goto-address-mode', but only for comments and strings. | |||
| 12541 | 12551 | ||
| 12542 | ;;;*** | 12552 | ;;;*** |
| 12543 | 12553 | ||
| 12544 | ;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (21607 54478 | 12554 | ;;;### (autoloads nil "gravatar" "gnus/gravatar.el" (21604 48550 |
| 12545 | ;;;;;; 300138 641000)) | 12555 | ;;;;;; 101934 217000)) |
| 12546 | ;;; Generated autoloads from gnus/gravatar.el | 12556 | ;;; Generated autoloads from gnus/gravatar.el |
| 12547 | 12557 | ||
| 12548 | (autoload 'gravatar-retrieve "gravatar" "\ | 12558 | (autoload 'gravatar-retrieve "gravatar" "\ |
| @@ -12558,8 +12568,8 @@ Retrieve MAIL-ADDRESS gravatar and returns it. | |||
| 12558 | 12568 | ||
| 12559 | ;;;*** | 12569 | ;;;*** |
| 12560 | 12570 | ||
| 12561 | ;;;### (autoloads nil "grep" "progmodes/grep.el" (21612 31801 50825 | 12571 | ;;;### (autoloads nil "grep" "progmodes/grep.el" (21631 35966 907121 |
| 12562 | ;;;;;; 711000)) | 12572 | ;;;;;; 870000)) |
| 12563 | ;;; Generated autoloads from progmodes/grep.el | 12573 | ;;; Generated autoloads from progmodes/grep.el |
| 12564 | 12574 | ||
| 12565 | (defvar grep-window-height nil "\ | 12575 | (defvar grep-window-height nil "\ |
| @@ -12723,7 +12733,7 @@ file name to `*.gz', and sets `grep-highlight-matches' to `always'. | |||
| 12723 | 12733 | ||
| 12724 | ;;;*** | 12734 | ;;;*** |
| 12725 | 12735 | ||
| 12726 | ;;;### (autoloads nil "gs" "gs.el" (21607 54478 300138 641000)) | 12736 | ;;;### (autoloads nil "gs" "gs.el" (21604 48550 121934 218000)) |
| 12727 | ;;; Generated autoloads from gs.el | 12737 | ;;; Generated autoloads from gs.el |
| 12728 | 12738 | ||
| 12729 | (autoload 'gs-load-image "gs" "\ | 12739 | (autoload 'gs-load-image "gs" "\ |
| @@ -12736,8 +12746,8 @@ the form \"WINDOW-ID PIXMAP-ID\". Value is non-nil if successful. | |||
| 12736 | 12746 | ||
| 12737 | ;;;*** | 12747 | ;;;*** |
| 12738 | 12748 | ||
| 12739 | ;;;### (autoloads nil "gud" "progmodes/gud.el" (21607 54478 800121 | 12749 | ;;;### (autoloads nil "gud" "progmodes/gud.el" (21640 32530 986334 |
| 12740 | ;;;;;; 42000)) | 12750 | ;;;;;; 458000)) |
| 12741 | ;;; Generated autoloads from progmodes/gud.el | 12751 | ;;; Generated autoloads from progmodes/gud.el |
| 12742 | 12752 | ||
| 12743 | (autoload 'gud-gdb "gud" "\ | 12753 | (autoload 'gud-gdb "gud" "\ |
| @@ -12832,8 +12842,8 @@ it if ARG is omitted or nil. | |||
| 12832 | 12842 | ||
| 12833 | ;;;*** | 12843 | ;;;*** |
| 12834 | 12844 | ||
| 12835 | ;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (21607 54477 800124 | 12845 | ;;;### (autoloads nil "gv" "emacs-lisp/gv.el" (21604 48550 17934 |
| 12836 | ;;;;;; 118000)) | 12846 | ;;;;;; 214000)) |
| 12837 | ;;; Generated autoloads from emacs-lisp/gv.el | 12847 | ;;; Generated autoloads from emacs-lisp/gv.el |
| 12838 | 12848 | ||
| 12839 | (autoload 'gv-get "gv" "\ | 12849 | (autoload 'gv-get "gv" "\ |
| @@ -12935,8 +12945,8 @@ binding mode. | |||
| 12935 | 12945 | ||
| 12936 | ;;;*** | 12946 | ;;;*** |
| 12937 | 12947 | ||
| 12938 | ;;;### (autoloads nil "handwrite" "play/handwrite.el" (21607 54478 | 12948 | ;;;### (autoloads nil "handwrite" "play/handwrite.el" (21604 48550 |
| 12939 | ;;;;;; 800121 42000)) | 12949 | ;;;;;; 305934 225000)) |
| 12940 | ;;; Generated autoloads from play/handwrite.el | 12950 | ;;; Generated autoloads from play/handwrite.el |
| 12941 | 12951 | ||
| 12942 | (autoload 'handwrite "handwrite" "\ | 12952 | (autoload 'handwrite "handwrite" "\ |
| @@ -12953,8 +12963,8 @@ Variables: `handwrite-linespace' (default 12) | |||
| 12953 | 12963 | ||
| 12954 | ;;;*** | 12964 | ;;;*** |
| 12955 | 12965 | ||
| 12956 | ;;;### (autoloads nil "hanoi" "play/hanoi.el" (21607 54478 800121 | 12966 | ;;;### (autoloads nil "hanoi" "play/hanoi.el" (21604 48550 305934 |
| 12957 | ;;;;;; 42000)) | 12967 | ;;;;;; 225000)) |
| 12958 | ;;; Generated autoloads from play/hanoi.el | 12968 | ;;; Generated autoloads from play/hanoi.el |
| 12959 | 12969 | ||
| 12960 | (autoload 'hanoi "hanoi" "\ | 12970 | (autoload 'hanoi "hanoi" "\ |
| @@ -12981,8 +12991,8 @@ to be updated. | |||
| 12981 | 12991 | ||
| 12982 | ;;;*** | 12992 | ;;;*** |
| 12983 | 12993 | ||
| 12984 | ;;;### (autoloads nil "hashcash" "mail/hashcash.el" (21607 54478 | 12994 | ;;;### (autoloads nil "hashcash" "mail/hashcash.el" (21604 48550 |
| 12985 | ;;;;;; 300138 641000)) | 12995 | ;;;;;; 181934 220000)) |
| 12986 | ;;; Generated autoloads from mail/hashcash.el | 12996 | ;;; Generated autoloads from mail/hashcash.el |
| 12987 | 12997 | ||
| 12988 | (autoload 'hashcash-insert-payment "hashcash" "\ | 12998 | (autoload 'hashcash-insert-payment "hashcash" "\ |
| @@ -13024,8 +13034,8 @@ Prefix arg sets default accept amount temporarily. | |||
| 13024 | 13034 | ||
| 13025 | ;;;*** | 13035 | ;;;*** |
| 13026 | 13036 | ||
| 13027 | ;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (21607 54478 300138 | 13037 | ;;;### (autoloads nil "help-at-pt" "help-at-pt.el" (21604 48550 121934 |
| 13028 | ;;;;;; 641000)) | 13038 | ;;;;;; 218000)) |
| 13029 | ;;; Generated autoloads from help-at-pt.el | 13039 | ;;; Generated autoloads from help-at-pt.el |
| 13030 | 13040 | ||
| 13031 | (autoload 'help-at-pt-string "help-at-pt" "\ | 13041 | (autoload 'help-at-pt-string "help-at-pt" "\ |
| @@ -13152,8 +13162,8 @@ different regions. With numeric argument ARG, behaves like | |||
| 13152 | 13162 | ||
| 13153 | ;;;*** | 13163 | ;;;*** |
| 13154 | 13164 | ||
| 13155 | ;;;### (autoloads nil "help-fns" "help-fns.el" (21607 54478 300138 | 13165 | ;;;### (autoloads nil "help-fns" "help-fns.el" (21604 48550 121934 |
| 13156 | ;;;;;; 641000)) | 13166 | ;;;;;; 218000)) |
| 13157 | ;;; Generated autoloads from help-fns.el | 13167 | ;;; Generated autoloads from help-fns.el |
| 13158 | 13168 | ||
| 13159 | (autoload 'describe-function "help-fns" "\ | 13169 | (autoload 'describe-function "help-fns" "\ |
| @@ -13232,8 +13242,8 @@ Produce a texinfo buffer with sorted doc-strings from the DOC file. | |||
| 13232 | 13242 | ||
| 13233 | ;;;*** | 13243 | ;;;*** |
| 13234 | 13244 | ||
| 13235 | ;;;### (autoloads nil "help-macro" "help-macro.el" (21607 54478 300138 | 13245 | ;;;### (autoloads nil "help-macro" "help-macro.el" (21604 48550 121934 |
| 13236 | ;;;;;; 641000)) | 13246 | ;;;;;; 218000)) |
| 13237 | ;;; Generated autoloads from help-macro.el | 13247 | ;;; Generated autoloads from help-macro.el |
| 13238 | 13248 | ||
| 13239 | (defvar three-step-help nil "\ | 13249 | (defvar three-step-help nil "\ |
| @@ -13247,8 +13257,8 @@ gives the window that lists the options.") | |||
| 13247 | 13257 | ||
| 13248 | ;;;*** | 13258 | ;;;*** |
| 13249 | 13259 | ||
| 13250 | ;;;### (autoloads nil "help-mode" "help-mode.el" (21607 54478 300138 | 13260 | ;;;### (autoloads nil "help-mode" "help-mode.el" (21604 48550 121934 |
| 13251 | ;;;;;; 641000)) | 13261 | ;;;;;; 218000)) |
| 13252 | ;;; Generated autoloads from help-mode.el | 13262 | ;;; Generated autoloads from help-mode.el |
| 13253 | 13263 | ||
| 13254 | (autoload 'help-mode "help-mode" "\ | 13264 | (autoload 'help-mode "help-mode" "\ |
| @@ -13347,8 +13357,8 @@ BOOKMARK is a bookmark name or a bookmark record. | |||
| 13347 | 13357 | ||
| 13348 | ;;;*** | 13358 | ;;;*** |
| 13349 | 13359 | ||
| 13350 | ;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (21607 54477 | 13360 | ;;;### (autoloads nil "helper" "emacs-lisp/helper.el" (21604 48550 |
| 13351 | ;;;;;; 800124 118000)) | 13361 | ;;;;;; 17934 214000)) |
| 13352 | ;;; Generated autoloads from emacs-lisp/helper.el | 13362 | ;;; Generated autoloads from emacs-lisp/helper.el |
| 13353 | 13363 | ||
| 13354 | (autoload 'Helper-describe-bindings "helper" "\ | 13364 | (autoload 'Helper-describe-bindings "helper" "\ |
| @@ -13363,7 +13373,7 @@ Provide help for current mode. | |||
| 13363 | 13373 | ||
| 13364 | ;;;*** | 13374 | ;;;*** |
| 13365 | 13375 | ||
| 13366 | ;;;### (autoloads nil "hexl" "hexl.el" (21607 54478 300138 641000)) | 13376 | ;;;### (autoloads nil "hexl" "hexl.el" (21604 48550 125934 218000)) |
| 13367 | ;;; Generated autoloads from hexl.el | 13377 | ;;; Generated autoloads from hexl.el |
| 13368 | 13378 | ||
| 13369 | (autoload 'hexl-mode "hexl" "\ | 13379 | (autoload 'hexl-mode "hexl" "\ |
| @@ -13457,8 +13467,8 @@ This discards the buffer's undo information. | |||
| 13457 | 13467 | ||
| 13458 | ;;;*** | 13468 | ;;;*** |
| 13459 | 13469 | ||
| 13460 | ;;;### (autoloads nil "hi-lock" "hi-lock.el" (21607 54478 300138 | 13470 | ;;;### (autoloads nil "hi-lock" "hi-lock.el" (21604 48550 125934 |
| 13461 | ;;;;;; 641000)) | 13471 | ;;;;;; 218000)) |
| 13462 | ;;; Generated autoloads from hi-lock.el | 13472 | ;;; Generated autoloads from hi-lock.el |
| 13463 | 13473 | ||
| 13464 | (autoload 'hi-lock-mode "hi-lock" "\ | 13474 | (autoload 'hi-lock-mode "hi-lock" "\ |
| @@ -13625,8 +13635,8 @@ be found in variable `hi-lock-interactive-patterns'. | |||
| 13625 | 13635 | ||
| 13626 | ;;;*** | 13636 | ;;;*** |
| 13627 | 13637 | ||
| 13628 | ;;;### (autoloads nil "hideif" "progmodes/hideif.el" (21607 54478 | 13638 | ;;;### (autoloads nil "hideif" "progmodes/hideif.el" (21604 48550 |
| 13629 | ;;;;;; 800121 42000)) | 13639 | ;;;;;; 337934 226000)) |
| 13630 | ;;; Generated autoloads from progmodes/hideif.el | 13640 | ;;; Generated autoloads from progmodes/hideif.el |
| 13631 | 13641 | ||
| 13632 | (autoload 'hide-ifdef-mode "hideif" "\ | 13642 | (autoload 'hide-ifdef-mode "hideif" "\ |
| @@ -13673,8 +13683,8 @@ Several variables affect how the hiding is done: | |||
| 13673 | 13683 | ||
| 13674 | ;;;*** | 13684 | ;;;*** |
| 13675 | 13685 | ||
| 13676 | ;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (21607 54478 | 13686 | ;;;### (autoloads nil "hideshow" "progmodes/hideshow.el" (21604 48550 |
| 13677 | ;;;;;; 800121 42000)) | 13687 | ;;;;;; 341934 226000)) |
| 13678 | ;;; Generated autoloads from progmodes/hideshow.el | 13688 | ;;; Generated autoloads from progmodes/hideshow.el |
| 13679 | 13689 | ||
| 13680 | (defvar hs-special-modes-alist (mapcar 'purecopy '((c-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil))) "\ | 13690 | (defvar hs-special-modes-alist (mapcar 'purecopy '((c-mode "{" "}" "/[*/]" nil nil) (c++-mode "{" "}" "/[*/]" nil nil) (bibtex-mode ("@\\S(*\\(\\s(\\)" 1)) (java-mode "{" "}" "/[*/]" nil nil) (js-mode "{" "}" "/[*/]" nil))) "\ |
| @@ -13736,8 +13746,8 @@ Unconditionally turn off `hs-minor-mode'. | |||
| 13736 | 13746 | ||
| 13737 | ;;;*** | 13747 | ;;;*** |
| 13738 | 13748 | ||
| 13739 | ;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (21607 54478 300138 | 13749 | ;;;### (autoloads nil "hilit-chg" "hilit-chg.el" (21604 48550 125934 |
| 13740 | ;;;;;; 641000)) | 13750 | ;;;;;; 218000)) |
| 13741 | ;;; Generated autoloads from hilit-chg.el | 13751 | ;;; Generated autoloads from hilit-chg.el |
| 13742 | 13752 | ||
| 13743 | (autoload 'highlight-changes-mode "hilit-chg" "\ | 13753 | (autoload 'highlight-changes-mode "hilit-chg" "\ |
| @@ -13868,8 +13878,8 @@ See `highlight-changes-mode' for more information on Highlight-Changes mode. | |||
| 13868 | 13878 | ||
| 13869 | ;;;*** | 13879 | ;;;*** |
| 13870 | 13880 | ||
| 13871 | ;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21607 54478 300138 | 13881 | ;;;### (autoloads nil "hippie-exp" "hippie-exp.el" (21604 48550 125934 |
| 13872 | ;;;;;; 641000)) | 13882 | ;;;;;; 218000)) |
| 13873 | ;;; Generated autoloads from hippie-exp.el | 13883 | ;;; Generated autoloads from hippie-exp.el |
| 13874 | (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) | 13884 | (push (purecopy '(hippie-exp 1 6)) package--builtin-versions) |
| 13875 | 13885 | ||
| @@ -13901,8 +13911,8 @@ argument VERBOSE non-nil makes the function verbose. | |||
| 13901 | 13911 | ||
| 13902 | ;;;*** | 13912 | ;;;*** |
| 13903 | 13913 | ||
| 13904 | ;;;### (autoloads nil "hl-line" "hl-line.el" (21607 54478 300138 | 13914 | ;;;### (autoloads nil "hl-line" "hl-line.el" (21604 48550 125934 |
| 13905 | ;;;;;; 641000)) | 13915 | ;;;;;; 218000)) |
| 13906 | ;;; Generated autoloads from hl-line.el | 13916 | ;;; Generated autoloads from hl-line.el |
| 13907 | 13917 | ||
| 13908 | (autoload 'hl-line-mode "hl-line" "\ | 13918 | (autoload 'hl-line-mode "hl-line" "\ |
| @@ -13951,8 +13961,8 @@ Global-Hl-Line mode uses the functions `global-hl-line-unhighlight' and | |||
| 13951 | 13961 | ||
| 13952 | ;;;*** | 13962 | ;;;*** |
| 13953 | 13963 | ||
| 13954 | ;;;### (autoloads nil "holidays" "calendar/holidays.el" (21607 54477 | 13964 | ;;;### (autoloads nil "holidays" "calendar/holidays.el" (21604 48549 |
| 13955 | ;;;;;; 800124 118000)) | 13965 | ;;;;;; 953934 212000)) |
| 13956 | ;;; Generated autoloads from calendar/holidays.el | 13966 | ;;; Generated autoloads from calendar/holidays.el |
| 13957 | 13967 | ||
| 13958 | (defvar holiday-general-holidays (mapcar 'purecopy '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ | 13968 | (defvar holiday-general-holidays (mapcar 'purecopy '((holiday-fixed 1 1 "New Year's Day") (holiday-float 1 1 3 "Martin Luther King Day") (holiday-fixed 2 2 "Groundhog Day") (holiday-fixed 2 14 "Valentine's Day") (holiday-float 2 1 3 "President's Day") (holiday-fixed 3 17 "St. Patrick's Day") (holiday-fixed 4 1 "April Fools' Day") (holiday-float 5 0 2 "Mother's Day") (holiday-float 5 1 -1 "Memorial Day") (holiday-fixed 6 14 "Flag Day") (holiday-float 6 0 3 "Father's Day") (holiday-fixed 7 4 "Independence Day") (holiday-float 9 1 1 "Labor Day") (holiday-float 10 1 2 "Columbus Day") (holiday-fixed 10 31 "Halloween") (holiday-fixed 11 11 "Veteran's Day") (holiday-float 11 4 4 "Thanksgiving"))) "\ |
| @@ -14062,8 +14072,8 @@ The optional LABEL is used to label the buffer created. | |||
| 14062 | 14072 | ||
| 14063 | ;;;*** | 14073 | ;;;*** |
| 14064 | 14074 | ||
| 14065 | ;;;### (autoloads nil "html2text" "gnus/html2text.el" (21607 54478 | 14075 | ;;;### (autoloads nil "html2text" "gnus/html2text.el" (21604 48550 |
| 14066 | ;;;;;; 300138 641000)) | 14076 | ;;;;;; 101934 217000)) |
| 14067 | ;;; Generated autoloads from gnus/html2text.el | 14077 | ;;; Generated autoloads from gnus/html2text.el |
| 14068 | 14078 | ||
| 14069 | (autoload 'html2text "html2text" "\ | 14079 | (autoload 'html2text "html2text" "\ |
| @@ -14073,8 +14083,8 @@ Convert HTML to plain text in the current buffer. | |||
| 14073 | 14083 | ||
| 14074 | ;;;*** | 14084 | ;;;*** |
| 14075 | 14085 | ||
| 14076 | ;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (21607 54478 | 14086 | ;;;### (autoloads nil "htmlfontify" "htmlfontify.el" (21604 48550 |
| 14077 | ;;;;;; 300138 641000)) | 14087 | ;;;;;; 125934 218000)) |
| 14078 | ;;; Generated autoloads from htmlfontify.el | 14088 | ;;; Generated autoloads from htmlfontify.el |
| 14079 | (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) | 14089 | (push (purecopy '(htmlfontify 0 21)) package--builtin-versions) |
| 14080 | 14090 | ||
| @@ -14107,8 +14117,8 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'. | |||
| 14107 | 14117 | ||
| 14108 | ;;;*** | 14118 | ;;;*** |
| 14109 | 14119 | ||
| 14110 | ;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (21607 54478 300138 | 14120 | ;;;### (autoloads nil "ibuf-macs" "ibuf-macs.el" (21604 48550 125934 |
| 14111 | ;;;;;; 641000)) | 14121 | ;;;;;; 218000)) |
| 14112 | ;;; Generated autoloads from ibuf-macs.el | 14122 | ;;; Generated autoloads from ibuf-macs.el |
| 14113 | 14123 | ||
| 14114 | (autoload 'define-ibuffer-column "ibuf-macs" "\ | 14124 | (autoload 'define-ibuffer-column "ibuf-macs" "\ |
| @@ -14134,7 +14144,9 @@ inlined into the compiled format versions. This means that if you | |||
| 14134 | change its definition, you should explicitly call | 14144 | change its definition, you should explicitly call |
| 14135 | `ibuffer-recompile-formats'. | 14145 | `ibuffer-recompile-formats'. |
| 14136 | 14146 | ||
| 14137 | \(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil (quote macro)) | 14147 | \(fn SYMBOL (&key NAME INLINE PROPS SUMMARIZER) &rest BODY)" nil t) |
| 14148 | |||
| 14149 | (function-put 'define-ibuffer-column 'lisp-indent-function 'defun) | ||
| 14138 | 14150 | ||
| 14139 | (autoload 'define-ibuffer-sorter "ibuf-macs" "\ | 14151 | (autoload 'define-ibuffer-sorter "ibuf-macs" "\ |
| 14140 | Define a method of sorting named NAME. | 14152 | Define a method of sorting named NAME. |
| @@ -14146,7 +14158,11 @@ For sorting, the forms in BODY will be evaluated with `a' bound to one | |||
| 14146 | buffer object, and `b' bound to another. BODY should return a non-nil | 14158 | buffer object, and `b' bound to another. BODY should return a non-nil |
| 14147 | value if and only if `a' is \"less than\" `b'. | 14159 | value if and only if `a' is \"less than\" `b'. |
| 14148 | 14160 | ||
| 14149 | \(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil (quote macro)) | 14161 | \(fn NAME DOCUMENTATION (&key DESCRIPTION) &rest BODY)" nil t) |
| 14162 | |||
| 14163 | (function-put 'define-ibuffer-sorter 'lisp-indent-function '1) | ||
| 14164 | |||
| 14165 | (function-put 'define-ibuffer-sorter 'doc-string-elt '2) | ||
| 14150 | 14166 | ||
| 14151 | (autoload 'define-ibuffer-op "ibuf-macs" "\ | 14167 | (autoload 'define-ibuffer-op "ibuf-macs" "\ |
| 14152 | Generate a function which operates on a buffer. | 14168 | Generate a function which operates on a buffer. |
| @@ -14179,7 +14195,11 @@ confirmation message, in the form: | |||
| 14179 | COMPLEX means this function is special; see the source code of this | 14195 | COMPLEX means this function is special; see the source code of this |
| 14180 | macro for exactly what it does. | 14196 | macro for exactly what it does. |
| 14181 | 14197 | ||
| 14182 | \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" nil (quote macro)) | 14198 | \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" nil t) |
| 14199 | |||
| 14200 | (function-put 'define-ibuffer-op 'lisp-indent-function '2) | ||
| 14201 | |||
| 14202 | (function-put 'define-ibuffer-op 'doc-string-elt '3) | ||
| 14183 | 14203 | ||
| 14184 | (autoload 'define-ibuffer-filter "ibuf-macs" "\ | 14204 | (autoload 'define-ibuffer-filter "ibuf-macs" "\ |
| 14185 | Define a filter named NAME. | 14205 | Define a filter named NAME. |
| @@ -14192,12 +14212,16 @@ not a particular buffer should be displayed or not. The forms in BODY | |||
| 14192 | will be evaluated with BUF bound to the buffer object, and QUALIFIER | 14212 | will be evaluated with BUF bound to the buffer object, and QUALIFIER |
| 14193 | bound to the current value of the filter. | 14213 | bound to the current value of the filter. |
| 14194 | 14214 | ||
| 14195 | \(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil (quote macro)) | 14215 | \(fn NAME DOCUMENTATION (&key READER DESCRIPTION) &rest BODY)" nil t) |
| 14216 | |||
| 14217 | (function-put 'define-ibuffer-filter 'lisp-indent-function '2) | ||
| 14218 | |||
| 14219 | (function-put 'define-ibuffer-filter 'doc-string-elt '2) | ||
| 14196 | 14220 | ||
| 14197 | ;;;*** | 14221 | ;;;*** |
| 14198 | 14222 | ||
| 14199 | ;;;### (autoloads nil "ibuffer" "ibuffer.el" (21607 54478 300138 | 14223 | ;;;### (autoloads nil "ibuffer" "ibuffer.el" (21604 48550 129934 |
| 14200 | ;;;;;; 641000)) | 14224 | ;;;;;; 218000)) |
| 14201 | ;;; Generated autoloads from ibuffer.el | 14225 | ;;; Generated autoloads from ibuffer.el |
| 14202 | 14226 | ||
| 14203 | (autoload 'ibuffer-list-buffers "ibuffer" "\ | 14227 | (autoload 'ibuffer-list-buffers "ibuffer" "\ |
| @@ -14236,8 +14260,8 @@ FORMATS is the value to use for `ibuffer-formats'. | |||
| 14236 | 14260 | ||
| 14237 | ;;;*** | 14261 | ;;;*** |
| 14238 | 14262 | ||
| 14239 | ;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (21611 | 14263 | ;;;### (autoloads nil "icalendar" "calendar/icalendar.el" (21631 |
| 14240 | ;;;;;; 10937 700236 3000)) | 14264 | ;;;;;; 35966 803121 866000)) |
| 14241 | ;;; Generated autoloads from calendar/icalendar.el | 14265 | ;;; Generated autoloads from calendar/icalendar.el |
| 14242 | (push (purecopy '(icalendar 0 19)) package--builtin-versions) | 14266 | (push (purecopy '(icalendar 0 19)) package--builtin-versions) |
| 14243 | 14267 | ||
| @@ -14290,8 +14314,8 @@ buffer `*icalendar-errors*'. | |||
| 14290 | 14314 | ||
| 14291 | ;;;*** | 14315 | ;;;*** |
| 14292 | 14316 | ||
| 14293 | ;;;### (autoloads nil "icomplete" "icomplete.el" (21607 54478 300138 | 14317 | ;;;### (autoloads nil "icomplete" "icomplete.el" (21604 48550 129934 |
| 14294 | ;;;;;; 641000)) | 14318 | ;;;;;; 218000)) |
| 14295 | ;;; Generated autoloads from icomplete.el | 14319 | ;;; Generated autoloads from icomplete.el |
| 14296 | 14320 | ||
| 14297 | (defvar icomplete-mode nil "\ | 14321 | (defvar icomplete-mode nil "\ |
| @@ -14330,8 +14354,8 @@ completions: | |||
| 14330 | 14354 | ||
| 14331 | ;;;*** | 14355 | ;;;*** |
| 14332 | 14356 | ||
| 14333 | ;;;### (autoloads nil "icon" "progmodes/icon.el" (21607 54478 800121 | 14357 | ;;;### (autoloads nil "icon" "progmodes/icon.el" (21604 48550 341934 |
| 14334 | ;;;;;; 42000)) | 14358 | ;;;;;; 226000)) |
| 14335 | ;;; Generated autoloads from progmodes/icon.el | 14359 | ;;; Generated autoloads from progmodes/icon.el |
| 14336 | 14360 | ||
| 14337 | (autoload 'icon-mode "icon" "\ | 14361 | (autoload 'icon-mode "icon" "\ |
| @@ -14371,8 +14395,8 @@ with no args, if that value is non-nil. | |||
| 14371 | 14395 | ||
| 14372 | ;;;*** | 14396 | ;;;*** |
| 14373 | 14397 | ||
| 14374 | ;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21607 | 14398 | ;;;### (autoloads nil "idlw-shell" "progmodes/idlw-shell.el" (21604 |
| 14375 | ;;;;;; 54478 800121 42000)) | 14399 | ;;;;;; 48550 341934 226000)) |
| 14376 | ;;; Generated autoloads from progmodes/idlw-shell.el | 14400 | ;;; Generated autoloads from progmodes/idlw-shell.el |
| 14377 | 14401 | ||
| 14378 | (autoload 'idlwave-shell "idlw-shell" "\ | 14402 | (autoload 'idlwave-shell "idlw-shell" "\ |
| @@ -14397,8 +14421,8 @@ See also the variable `idlwave-shell-prompt-pattern'. | |||
| 14397 | 14421 | ||
| 14398 | ;;;*** | 14422 | ;;;*** |
| 14399 | 14423 | ||
| 14400 | ;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21607 54478 | 14424 | ;;;### (autoloads nil "idlwave" "progmodes/idlwave.el" (21645 25761 |
| 14401 | ;;;;;; 800121 42000)) | 14425 | ;;;;;; 805186 828000)) |
| 14402 | ;;; Generated autoloads from progmodes/idlwave.el | 14426 | ;;; Generated autoloads from progmodes/idlwave.el |
| 14403 | (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) | 14427 | (push (purecopy '(idlwave 6 1 22)) package--builtin-versions) |
| 14404 | 14428 | ||
| @@ -14527,7 +14551,7 @@ The main features of this mode are | |||
| 14527 | 14551 | ||
| 14528 | ;;;*** | 14552 | ;;;*** |
| 14529 | 14553 | ||
| 14530 | ;;;### (autoloads nil "ido" "ido.el" (21612 31801 50825 711000)) | 14554 | ;;;### (autoloads nil "ido" "ido.el" (21631 35966 863121 868000)) |
| 14531 | ;;; Generated autoloads from ido.el | 14555 | ;;; Generated autoloads from ido.el |
| 14532 | 14556 | ||
| 14533 | (defvar ido-mode nil "\ | 14557 | (defvar ido-mode nil "\ |
| @@ -14789,7 +14813,7 @@ DEF, if non-nil, is the default value. | |||
| 14789 | 14813 | ||
| 14790 | ;;;*** | 14814 | ;;;*** |
| 14791 | 14815 | ||
| 14792 | ;;;### (autoloads nil "ielm" "ielm.el" (21607 54478 300138 641000)) | 14816 | ;;;### (autoloads nil "ielm" "ielm.el" (21604 48550 129934 218000)) |
| 14793 | ;;; Generated autoloads from ielm.el | 14817 | ;;; Generated autoloads from ielm.el |
| 14794 | 14818 | ||
| 14795 | (autoload 'ielm "ielm" "\ | 14819 | (autoload 'ielm "ielm" "\ |
| @@ -14801,7 +14825,7 @@ See `inferior-emacs-lisp-mode' for details. | |||
| 14801 | 14825 | ||
| 14802 | ;;;*** | 14826 | ;;;*** |
| 14803 | 14827 | ||
| 14804 | ;;;### (autoloads nil "iimage" "iimage.el" (21607 54478 300138 641000)) | 14828 | ;;;### (autoloads nil "iimage" "iimage.el" (21604 48550 129934 218000)) |
| 14805 | ;;; Generated autoloads from iimage.el | 14829 | ;;; Generated autoloads from iimage.el |
| 14806 | 14830 | ||
| 14807 | (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") | 14831 | (define-obsolete-function-alias 'turn-on-iimage-mode 'iimage-mode "24.1") |
| @@ -14817,7 +14841,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. | |||
| 14817 | 14841 | ||
| 14818 | ;;;*** | 14842 | ;;;*** |
| 14819 | 14843 | ||
| 14820 | ;;;### (autoloads nil "image" "image.el" (21607 54478 300138 641000)) | 14844 | ;;;### (autoloads nil "image" "image.el" (21604 48550 133934 219000)) |
| 14821 | ;;; Generated autoloads from image.el | 14845 | ;;; Generated autoloads from image.el |
| 14822 | 14846 | ||
| 14823 | (autoload 'image-type-from-data "image" "\ | 14847 | (autoload 'image-type-from-data "image" "\ |
| @@ -15010,8 +15034,8 @@ If Emacs is compiled without ImageMagick support, this does nothing. | |||
| 15010 | 15034 | ||
| 15011 | ;;;*** | 15035 | ;;;*** |
| 15012 | 15036 | ||
| 15013 | ;;;### (autoloads nil "image-dired" "image-dired.el" (21607 54478 | 15037 | ;;;### (autoloads nil "image-dired" "image-dired.el" (21604 48550 |
| 15014 | ;;;;;; 300138 641000)) | 15038 | ;;;;;; 129934 218000)) |
| 15015 | ;;; Generated autoloads from image-dired.el | 15039 | ;;; Generated autoloads from image-dired.el |
| 15016 | (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) | 15040 | (push (purecopy '(image-dired 0 4 11)) package--builtin-versions) |
| 15017 | 15041 | ||
| @@ -15148,8 +15172,8 @@ easy-to-use form. | |||
| 15148 | 15172 | ||
| 15149 | ;;;*** | 15173 | ;;;*** |
| 15150 | 15174 | ||
| 15151 | ;;;### (autoloads nil "image-file" "image-file.el" (21607 54478 300138 | 15175 | ;;;### (autoloads nil "image-file" "image-file.el" (21604 48550 129934 |
| 15152 | ;;;;;; 641000)) | 15176 | ;;;;;; 218000)) |
| 15153 | ;;; Generated autoloads from image-file.el | 15177 | ;;; Generated autoloads from image-file.el |
| 15154 | 15178 | ||
| 15155 | (defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ | 15179 | (defvar image-file-name-extensions (purecopy '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm" "xpm" "pbm" "pgm" "ppm" "pnm" "svg")) "\ |
| @@ -15211,8 +15235,8 @@ An image file is one whose name has an extension in | |||
| 15211 | 15235 | ||
| 15212 | ;;;*** | 15236 | ;;;*** |
| 15213 | 15237 | ||
| 15214 | ;;;### (autoloads nil "image-mode" "image-mode.el" (21607 54478 300138 | 15238 | ;;;### (autoloads nil "image-mode" "image-mode.el" (21604 48550 129934 |
| 15215 | ;;;;;; 641000)) | 15239 | ;;;;;; 218000)) |
| 15216 | ;;; Generated autoloads from image-mode.el | 15240 | ;;; Generated autoloads from image-mode.el |
| 15217 | 15241 | ||
| 15218 | (autoload 'image-mode "image-mode" "\ | 15242 | (autoload 'image-mode "image-mode" "\ |
| @@ -15259,7 +15283,7 @@ on these modes. | |||
| 15259 | 15283 | ||
| 15260 | ;;;*** | 15284 | ;;;*** |
| 15261 | 15285 | ||
| 15262 | ;;;### (autoloads nil "imenu" "imenu.el" (21607 54478 300138 641000)) | 15286 | ;;;### (autoloads nil "imenu" "imenu.el" (21604 48550 133934 219000)) |
| 15263 | ;;; Generated autoloads from imenu.el | 15287 | ;;; Generated autoloads from imenu.el |
| 15264 | 15288 | ||
| 15265 | (defvar imenu-sort-function nil "\ | 15289 | (defvar imenu-sort-function nil "\ |
| @@ -15397,8 +15421,8 @@ for more information. | |||
| 15397 | 15421 | ||
| 15398 | ;;;*** | 15422 | ;;;*** |
| 15399 | 15423 | ||
| 15400 | ;;;### (autoloads nil "ind-util" "language/ind-util.el" (21607 54478 | 15424 | ;;;### (autoloads nil "ind-util" "language/ind-util.el" (21604 48550 |
| 15401 | ;;;;;; 300138 641000)) | 15425 | ;;;;;; 153934 219000)) |
| 15402 | ;;; Generated autoloads from language/ind-util.el | 15426 | ;;; Generated autoloads from language/ind-util.el |
| 15403 | 15427 | ||
| 15404 | (autoload 'indian-compose-region "ind-util" "\ | 15428 | (autoload 'indian-compose-region "ind-util" "\ |
| @@ -15428,8 +15452,8 @@ Convert old Emacs Devanagari characters to UCS. | |||
| 15428 | 15452 | ||
| 15429 | ;;;*** | 15453 | ;;;*** |
| 15430 | 15454 | ||
| 15431 | ;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (21607 54478 | 15455 | ;;;### (autoloads nil "inf-lisp" "progmodes/inf-lisp.el" (21604 48550 |
| 15432 | ;;;;;; 800121 42000)) | 15456 | ;;;;;; 345934 227000)) |
| 15433 | ;;; Generated autoloads from progmodes/inf-lisp.el | 15457 | ;;; Generated autoloads from progmodes/inf-lisp.el |
| 15434 | 15458 | ||
| 15435 | (autoload 'inferior-lisp "inf-lisp" "\ | 15459 | (autoload 'inferior-lisp "inf-lisp" "\ |
| @@ -15447,7 +15471,7 @@ of `inferior-lisp-program'). Runs the hooks from | |||
| 15447 | 15471 | ||
| 15448 | ;;;*** | 15472 | ;;;*** |
| 15449 | 15473 | ||
| 15450 | ;;;### (autoloads nil "info" "info.el" (21607 54478 300138 641000)) | 15474 | ;;;### (autoloads nil "info" "info.el" (21640 32530 970334 457000)) |
| 15451 | ;;; Generated autoloads from info.el | 15475 | ;;; Generated autoloads from info.el |
| 15452 | 15476 | ||
| 15453 | (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ | 15477 | (defcustom Info-default-directory-list (let* ((config-dir (file-name-as-directory (or (and (featurep 'ns) (let ((dir (expand-file-name "../info" data-directory))) (if (file-directory-p dir) dir))) configure-info-directory))) (prefixes (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) (suffixes '("share/" "" "gnu/" "gnu/lib/" "gnu/lib/emacs/" "emacs/" "lib/" "lib/emacs/")) (standard-info-dirs (apply #'nconc (mapcar (lambda (pfx) (let ((dirs (mapcar (lambda (sfx) (concat pfx sfx "info/")) suffixes))) (prune-directory-list dirs))) prefixes))) (dirs (if (member config-dir standard-info-dirs) (nconc standard-info-dirs (list config-dir)) (cons config-dir standard-info-dirs)))) (if (not (eq system-type 'windows-nt)) dirs (let* ((instdir (file-name-directory invocation-directory)) (dir1 (expand-file-name "../info/" instdir)) (dir2 (expand-file-name "../../../info/" instdir))) (cond ((file-exists-p dir1) (append dirs (list dir1))) ((file-exists-p dir2) (append dirs (list dir2))) (t dirs))))) "\ |
| @@ -15657,8 +15681,8 @@ Otherwise, visit the manual in a new Info buffer. | |||
| 15657 | 15681 | ||
| 15658 | ;;;*** | 15682 | ;;;*** |
| 15659 | 15683 | ||
| 15660 | ;;;### (autoloads nil "info-look" "info-look.el" (21607 54478 300138 | 15684 | ;;;### (autoloads nil "info-look" "info-look.el" (21604 48550 133934 |
| 15661 | ;;;;;; 641000)) | 15685 | ;;;;;; 219000)) |
| 15662 | ;;; Generated autoloads from info-look.el | 15686 | ;;; Generated autoloads from info-look.el |
| 15663 | 15687 | ||
| 15664 | (autoload 'info-lookup-reset "info-look" "\ | 15688 | (autoload 'info-lookup-reset "info-look" "\ |
| @@ -15705,8 +15729,8 @@ Perform completion on file preceding point. | |||
| 15705 | 15729 | ||
| 15706 | ;;;*** | 15730 | ;;;*** |
| 15707 | 15731 | ||
| 15708 | ;;;### (autoloads nil "info-xref" "info-xref.el" (21607 54478 300138 | 15732 | ;;;### (autoloads nil "info-xref" "info-xref.el" (21604 48550 133934 |
| 15709 | ;;;;;; 641000)) | 15733 | ;;;;;; 219000)) |
| 15710 | ;;; Generated autoloads from info-xref.el | 15734 | ;;; Generated autoloads from info-xref.el |
| 15711 | (push (purecopy '(info-xref 3)) package--builtin-versions) | 15735 | (push (purecopy '(info-xref 3)) package--builtin-versions) |
| 15712 | 15736 | ||
| @@ -15789,8 +15813,8 @@ the sources handy. | |||
| 15789 | 15813 | ||
| 15790 | ;;;*** | 15814 | ;;;*** |
| 15791 | 15815 | ||
| 15792 | ;;;### (autoloads nil "informat" "informat.el" (21607 54478 300138 | 15816 | ;;;### (autoloads nil "informat" "informat.el" (21604 48550 133934 |
| 15793 | ;;;;;; 641000)) | 15817 | ;;;;;; 219000)) |
| 15794 | ;;; Generated autoloads from informat.el | 15818 | ;;; Generated autoloads from informat.el |
| 15795 | 15819 | ||
| 15796 | (autoload 'Info-tagify "informat" "\ | 15820 | (autoload 'Info-tagify "informat" "\ |
| @@ -15835,8 +15859,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" | |||
| 15835 | 15859 | ||
| 15836 | ;;;*** | 15860 | ;;;*** |
| 15837 | 15861 | ||
| 15838 | ;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (21628 43483 | 15862 | ;;;### (autoloads nil "inline" "emacs-lisp/inline.el" (21631 35966 |
| 15839 | ;;;;;; 380149 771000)) | 15863 | ;;;;;; 827121 867000)) |
| 15840 | ;;; Generated autoloads from emacs-lisp/inline.el | 15864 | ;;; Generated autoloads from emacs-lisp/inline.el |
| 15841 | 15865 | ||
| 15842 | (autoload 'define-inline "inline" "\ | 15866 | (autoload 'define-inline "inline" "\ |
| @@ -15850,8 +15874,8 @@ For example, invoke \"emacs -batch -f batch-info-validate $info/ ~/*.info\" | |||
| 15850 | 15874 | ||
| 15851 | ;;;*** | 15875 | ;;;*** |
| 15852 | 15876 | ||
| 15853 | ;;;### (autoloads nil "inversion" "cedet/inversion.el" (21607 54477 | 15877 | ;;;### (autoloads nil "inversion" "cedet/inversion.el" (21604 48549 |
| 15854 | ;;;;;; 800124 118000)) | 15878 | ;;;;;; 965934 212000)) |
| 15855 | ;;; Generated autoloads from cedet/inversion.el | 15879 | ;;; Generated autoloads from cedet/inversion.el |
| 15856 | (push (purecopy '(inversion 1 3)) package--builtin-versions) | 15880 | (push (purecopy '(inversion 1 3)) package--builtin-versions) |
| 15857 | 15881 | ||
| @@ -15863,8 +15887,8 @@ Only checks one based on which kind of Emacs is being run. | |||
| 15863 | 15887 | ||
| 15864 | ;;;*** | 15888 | ;;;*** |
| 15865 | 15889 | ||
| 15866 | ;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (21607 | 15890 | ;;;### (autoloads nil "isearch-x" "international/isearch-x.el" (21604 |
| 15867 | ;;;;;; 54478 300138 641000)) | 15891 | ;;;;;; 48550 137934 219000)) |
| 15868 | ;;; Generated autoloads from international/isearch-x.el | 15892 | ;;; Generated autoloads from international/isearch-x.el |
| 15869 | 15893 | ||
| 15870 | (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ | 15894 | (autoload 'isearch-toggle-specified-input-method "isearch-x" "\ |
| @@ -15884,8 +15908,8 @@ Toggle input method in interactive search. | |||
| 15884 | 15908 | ||
| 15885 | ;;;*** | 15909 | ;;;*** |
| 15886 | 15910 | ||
| 15887 | ;;;### (autoloads nil "isearchb" "isearchb.el" (21607 54478 300138 | 15911 | ;;;### (autoloads nil "isearchb" "isearchb.el" (21604 48550 145934 |
| 15888 | ;;;;;; 641000)) | 15912 | ;;;;;; 219000)) |
| 15889 | ;;; Generated autoloads from isearchb.el | 15913 | ;;; Generated autoloads from isearchb.el |
| 15890 | (push (purecopy '(isearchb 1 5)) package--builtin-versions) | 15914 | (push (purecopy '(isearchb 1 5)) package--builtin-versions) |
| 15891 | 15915 | ||
| @@ -15899,8 +15923,8 @@ accessed via isearchb. | |||
| 15899 | 15923 | ||
| 15900 | ;;;*** | 15924 | ;;;*** |
| 15901 | 15925 | ||
| 15902 | ;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (21607 | 15926 | ;;;### (autoloads nil "iso-cvt" "international/iso-cvt.el" (21604 |
| 15903 | ;;;;;; 54478 300138 641000)) | 15927 | ;;;;;; 48550 137934 219000)) |
| 15904 | ;;; Generated autoloads from international/iso-cvt.el | 15928 | ;;; Generated autoloads from international/iso-cvt.el |
| 15905 | 15929 | ||
| 15906 | (autoload 'iso-spanish "iso-cvt" "\ | 15930 | (autoload 'iso-spanish "iso-cvt" "\ |
| @@ -15991,15 +16015,15 @@ Add submenus to the File menu, to convert to and from various formats. | |||
| 15991 | ;;;*** | 16015 | ;;;*** |
| 15992 | 16016 | ||
| 15993 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" | 16017 | ;;;### (autoloads nil "iso-transl" "international/iso-transl.el" |
| 15994 | ;;;;;; (21607 54478 300138 641000)) | 16018 | ;;;;;; (21604 48550 137934 219000)) |
| 15995 | ;;; Generated autoloads from international/iso-transl.el | 16019 | ;;; Generated autoloads from international/iso-transl.el |
| 15996 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) | 16020 | (define-key key-translation-map "\C-x8" 'iso-transl-ctl-x-8-map) |
| 15997 | (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) | 16021 | (autoload 'iso-transl-ctl-x-8-map "iso-transl" "Keymap for C-x 8 prefix." t 'keymap) |
| 15998 | 16022 | ||
| 15999 | ;;;*** | 16023 | ;;;*** |
| 16000 | 16024 | ||
| 16001 | ;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21607 54478 | 16025 | ;;;### (autoloads nil "ispell" "textmodes/ispell.el" (21659 61733 |
| 16002 | ;;;;;; 800121 42000)) | 16026 | ;;;;;; 226949 164000)) |
| 16003 | ;;; Generated autoloads from textmodes/ispell.el | 16027 | ;;; Generated autoloads from textmodes/ispell.el |
| 16004 | 16028 | ||
| 16005 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) | 16029 | (put 'ispell-check-comments 'safe-local-variable (lambda (a) (memq a '(nil t exclusive)))) |
| @@ -16232,8 +16256,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to | |||
| 16232 | 16256 | ||
| 16233 | ;;;*** | 16257 | ;;;*** |
| 16234 | 16258 | ||
| 16235 | ;;;### (autoloads nil "japan-util" "language/japan-util.el" (21607 | 16259 | ;;;### (autoloads nil "japan-util" "language/japan-util.el" (21604 |
| 16236 | ;;;;;; 54478 300138 641000)) | 16260 | ;;;;;; 48550 153934 219000)) |
| 16237 | ;;; Generated autoloads from language/japan-util.el | 16261 | ;;; Generated autoloads from language/japan-util.el |
| 16238 | 16262 | ||
| 16239 | (autoload 'setup-japanese-environment-internal "japan-util" "\ | 16263 | (autoload 'setup-japanese-environment-internal "japan-util" "\ |
| @@ -16310,8 +16334,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading. | |||
| 16310 | 16334 | ||
| 16311 | ;;;*** | 16335 | ;;;*** |
| 16312 | 16336 | ||
| 16313 | ;;;### (autoloads nil "jka-compr" "jka-compr.el" (21607 54478 300138 | 16337 | ;;;### (autoloads nil "jka-compr" "jka-compr.el" (21604 48550 145934 |
| 16314 | ;;;;;; 641000)) | 16338 | ;;;;;; 219000)) |
| 16315 | ;;; Generated autoloads from jka-compr.el | 16339 | ;;; Generated autoloads from jka-compr.el |
| 16316 | 16340 | ||
| 16317 | (defvar jka-compr-inhibit nil "\ | 16341 | (defvar jka-compr-inhibit nil "\ |
| @@ -16334,7 +16358,8 @@ by `jka-compr-installed'. | |||
| 16334 | 16358 | ||
| 16335 | ;;;*** | 16359 | ;;;*** |
| 16336 | 16360 | ||
| 16337 | ;;;### (autoloads nil "js" "progmodes/js.el" (21623 2108 292281 129000)) | 16361 | ;;;### (autoloads nil "js" "progmodes/js.el" (21659 61733 222949 |
| 16362 | ;;;;;; 164000)) | ||
| 16338 | ;;; Generated autoloads from progmodes/js.el | 16363 | ;;; Generated autoloads from progmodes/js.el |
| 16339 | (push (purecopy '(js 9)) package--builtin-versions) | 16364 | (push (purecopy '(js 9)) package--builtin-versions) |
| 16340 | 16365 | ||
| @@ -16348,14 +16373,14 @@ Major mode for editing JavaScript. | |||
| 16348 | 16373 | ||
| 16349 | ;;;*** | 16374 | ;;;*** |
| 16350 | 16375 | ||
| 16351 | ;;;### (autoloads nil "json" "json.el" (21607 54478 300138 641000)) | 16376 | ;;;### (autoloads nil "json" "json.el" (21604 48550 145934 219000)) |
| 16352 | ;;; Generated autoloads from json.el | 16377 | ;;; Generated autoloads from json.el |
| 16353 | (push (purecopy '(json 1 4)) package--builtin-versions) | 16378 | (push (purecopy '(json 1 4)) package--builtin-versions) |
| 16354 | 16379 | ||
| 16355 | ;;;*** | 16380 | ;;;*** |
| 16356 | 16381 | ||
| 16357 | ;;;### (autoloads nil "keypad" "emulation/keypad.el" (21607 54477 | 16382 | ;;;### (autoloads nil "keypad" "emulation/keypad.el" (21604 48550 |
| 16358 | ;;;;;; 800124 118000)) | 16383 | ;;;;;; 29934 215000)) |
| 16359 | ;;; Generated autoloads from emulation/keypad.el | 16384 | ;;; Generated autoloads from emulation/keypad.el |
| 16360 | 16385 | ||
| 16361 | (defvar keypad-setup nil "\ | 16386 | (defvar keypad-setup nil "\ |
| @@ -16410,8 +16435,8 @@ the decimal key on the keypad is mapped to DECIMAL instead of `.' | |||
| 16410 | 16435 | ||
| 16411 | ;;;*** | 16436 | ;;;*** |
| 16412 | 16437 | ||
| 16413 | ;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (21607 | 16438 | ;;;### (autoloads nil "kinsoku" "international/kinsoku.el" (21604 |
| 16414 | ;;;;;; 54478 300138 641000)) | 16439 | ;;;;;; 48550 137934 219000)) |
| 16415 | ;;; Generated autoloads from international/kinsoku.el | 16440 | ;;; Generated autoloads from international/kinsoku.el |
| 16416 | 16441 | ||
| 16417 | (autoload 'kinsoku "kinsoku" "\ | 16442 | (autoload 'kinsoku "kinsoku" "\ |
| @@ -16432,8 +16457,8 @@ the context of text formatting. | |||
| 16432 | 16457 | ||
| 16433 | ;;;*** | 16458 | ;;;*** |
| 16434 | 16459 | ||
| 16435 | ;;;### (autoloads nil "kkc" "international/kkc.el" (21607 54478 300138 | 16460 | ;;;### (autoloads nil "kkc" "international/kkc.el" (21604 48550 137934 |
| 16436 | ;;;;;; 641000)) | 16461 | ;;;;;; 219000)) |
| 16437 | ;;; Generated autoloads from international/kkc.el | 16462 | ;;; Generated autoloads from international/kkc.el |
| 16438 | 16463 | ||
| 16439 | (defvar kkc-after-update-conversion-functions nil "\ | 16464 | (defvar kkc-after-update-conversion-functions nil "\ |
| @@ -16455,7 +16480,7 @@ and the return value is the length of the conversion. | |||
| 16455 | 16480 | ||
| 16456 | ;;;*** | 16481 | ;;;*** |
| 16457 | 16482 | ||
| 16458 | ;;;### (autoloads nil "kmacro" "kmacro.el" (21607 54478 300138 641000)) | 16483 | ;;;### (autoloads nil "kmacro" "kmacro.el" (21604 48550 145934 219000)) |
| 16459 | ;;; Generated autoloads from kmacro.el | 16484 | ;;; Generated autoloads from kmacro.el |
| 16460 | (global-set-key "\C-x(" 'kmacro-start-macro) | 16485 | (global-set-key "\C-x(" 'kmacro-start-macro) |
| 16461 | (global-set-key "\C-x)" 'kmacro-end-macro) | 16486 | (global-set-key "\C-x)" 'kmacro-end-macro) |
| @@ -16567,8 +16592,8 @@ If kbd macro currently being defined end it before activating it. | |||
| 16567 | 16592 | ||
| 16568 | ;;;*** | 16593 | ;;;*** |
| 16569 | 16594 | ||
| 16570 | ;;;### (autoloads nil "korea-util" "language/korea-util.el" (21607 | 16595 | ;;;### (autoloads nil "korea-util" "language/korea-util.el" (21604 |
| 16571 | ;;;;;; 54478 300138 641000)) | 16596 | ;;;;;; 48550 153934 219000)) |
| 16572 | ;;; Generated autoloads from language/korea-util.el | 16597 | ;;; Generated autoloads from language/korea-util.el |
| 16573 | 16598 | ||
| 16574 | (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ | 16599 | (defvar default-korean-keyboard (purecopy (if (string-match "3" (or (getenv "HANGUL_KEYBOARD_TYPE") "")) "3" "")) "\ |
| @@ -16582,8 +16607,8 @@ The kind of Korean keyboard for Korean input method. | |||
| 16582 | 16607 | ||
| 16583 | ;;;*** | 16608 | ;;;*** |
| 16584 | 16609 | ||
| 16585 | ;;;### (autoloads nil "landmark" "play/landmark.el" (21607 54478 | 16610 | ;;;### (autoloads nil "landmark" "play/landmark.el" (21604 48550 |
| 16586 | ;;;;;; 800121 42000)) | 16611 | ;;;;;; 305934 225000)) |
| 16587 | ;;; Generated autoloads from play/landmark.el | 16612 | ;;; Generated autoloads from play/landmark.el |
| 16588 | (push (purecopy '(landmark 1 0)) package--builtin-versions) | 16613 | (push (purecopy '(landmark 1 0)) package--builtin-versions) |
| 16589 | 16614 | ||
| @@ -16614,8 +16639,8 @@ Use \\[describe-mode] for more info. | |||
| 16614 | 16639 | ||
| 16615 | ;;;*** | 16640 | ;;;*** |
| 16616 | 16641 | ||
| 16617 | ;;;### (autoloads nil "lao-util" "language/lao-util.el" (21607 54478 | 16642 | ;;;### (autoloads nil "lao-util" "language/lao-util.el" (21604 48550 |
| 16618 | ;;;;;; 300138 641000)) | 16643 | ;;;;;; 153934 219000)) |
| 16619 | ;;; Generated autoloads from language/lao-util.el | 16644 | ;;; Generated autoloads from language/lao-util.el |
| 16620 | 16645 | ||
| 16621 | (autoload 'lao-compose-string "lao-util" "\ | 16646 | (autoload 'lao-compose-string "lao-util" "\ |
| @@ -16652,8 +16677,8 @@ Transcribe Romanized Lao string STR to Lao character string. | |||
| 16652 | 16677 | ||
| 16653 | ;;;*** | 16678 | ;;;*** |
| 16654 | 16679 | ||
| 16655 | ;;;### (autoloads nil "latexenc" "international/latexenc.el" (21607 | 16680 | ;;;### (autoloads nil "latexenc" "international/latexenc.el" (21604 |
| 16656 | ;;;;;; 54478 300138 641000)) | 16681 | ;;;;;; 48550 137934 219000)) |
| 16657 | ;;; Generated autoloads from international/latexenc.el | 16682 | ;;; Generated autoloads from international/latexenc.el |
| 16658 | 16683 | ||
| 16659 | (defvar latex-inputenc-coding-alist (purecopy '(("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ | 16684 | (defvar latex-inputenc-coding-alist (purecopy '(("ansinew" . windows-1252) ("applemac" . mac-roman) ("ascii" . us-ascii) ("cp1250" . windows-1250) ("cp1252" . windows-1252) ("cp1257" . cp1257) ("cp437de" . cp437) ("cp437" . cp437) ("cp850" . cp850) ("cp852" . cp852) ("cp858" . cp858) ("cp865" . cp865) ("latin1" . iso-8859-1) ("latin2" . iso-8859-2) ("latin3" . iso-8859-3) ("latin4" . iso-8859-4) ("latin5" . iso-8859-5) ("latin9" . iso-8859-15) ("next" . next) ("utf8" . utf-8) ("utf8x" . utf-8))) "\ |
| @@ -16685,7 +16710,7 @@ coding system names is determined from `latex-inputenc-coding-alist'. | |||
| 16685 | ;;;*** | 16710 | ;;;*** |
| 16686 | 16711 | ||
| 16687 | ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" | 16712 | ;;;### (autoloads nil "latin1-disp" "international/latin1-disp.el" |
| 16688 | ;;;;;; (21607 54478 300138 641000)) | 16713 | ;;;;;; (21604 48550 137934 219000)) |
| 16689 | ;;; Generated autoloads from international/latin1-disp.el | 16714 | ;;; Generated autoloads from international/latin1-disp.el |
| 16690 | 16715 | ||
| 16691 | (defvar latin1-display nil "\ | 16716 | (defvar latin1-display nil "\ |
| @@ -16726,8 +16751,8 @@ use either \\[customize] or the function `latin1-display'.") | |||
| 16726 | 16751 | ||
| 16727 | ;;;*** | 16752 | ;;;*** |
| 16728 | 16753 | ||
| 16729 | ;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (21607 | 16754 | ;;;### (autoloads nil "ld-script" "progmodes/ld-script.el" (21604 |
| 16730 | ;;;;;; 54478 800121 42000)) | 16755 | ;;;;;; 48550 345934 227000)) |
| 16731 | ;;; Generated autoloads from progmodes/ld-script.el | 16756 | ;;; Generated autoloads from progmodes/ld-script.el |
| 16732 | 16757 | ||
| 16733 | (autoload 'ld-script-mode "ld-script" "\ | 16758 | (autoload 'ld-script-mode "ld-script" "\ |
| @@ -16737,7 +16762,47 @@ A major mode to edit GNU ld script files | |||
| 16737 | 16762 | ||
| 16738 | ;;;*** | 16763 | ;;;*** |
| 16739 | 16764 | ||
| 16740 | ;;;### (autoloads nil "life" "play/life.el" (21607 54478 800121 42000)) | 16765 | ;;;### (autoloads nil "let-alist" "let-alist.el" (21659 61733 206949 |
| 16766 | ;;;;;; 164000)) | ||
| 16767 | ;;; Generated autoloads from let-alist.el | ||
| 16768 | (push (purecopy '(let-alist 1 0 3)) package--builtin-versions) | ||
| 16769 | |||
| 16770 | (autoload 'let-alist "let-alist" "\ | ||
| 16771 | Let-bind dotted symbols to their cdrs in ALIST and execute BODY. | ||
| 16772 | Dotted symbol is any symbol starting with a `.'. Only those present | ||
| 16773 | in BODY are let-bound and this search is done at compile time. | ||
| 16774 | |||
| 16775 | For instance, the following code | ||
| 16776 | |||
| 16777 | (let-alist alist | ||
| 16778 | (if (and .title .body) | ||
| 16779 | .body | ||
| 16780 | .site | ||
| 16781 | .site.contents)) | ||
| 16782 | |||
| 16783 | essentially expands to | ||
| 16784 | |||
| 16785 | (let ((.title (cdr (assq 'title alist))) | ||
| 16786 | (.body (cdr (assq 'body alist))) | ||
| 16787 | (.site (cdr (assq 'site alist))) | ||
| 16788 | (.site.contents (cdr (assq 'contents (cdr (assq 'site alist)))))) | ||
| 16789 | (if (and .title .body) | ||
| 16790 | .body | ||
| 16791 | .site | ||
| 16792 | .site.contents)) | ||
| 16793 | |||
| 16794 | If you nest `let-alist' invocations, the inner one can't access | ||
| 16795 | the variables of the outer one. You can, however, access alists | ||
| 16796 | inside the original alist by using dots inside the symbol, as | ||
| 16797 | displayed in the example above. | ||
| 16798 | |||
| 16799 | \(fn ALIST &rest BODY)" nil t) | ||
| 16800 | |||
| 16801 | (function-put 'let-alist 'lisp-indent-function '1) | ||
| 16802 | |||
| 16803 | ;;;*** | ||
| 16804 | |||
| 16805 | ;;;### (autoloads nil "life" "play/life.el" (21604 48550 305934 225000)) | ||
| 16741 | ;;; Generated autoloads from play/life.el | 16806 | ;;; Generated autoloads from play/life.el |
| 16742 | 16807 | ||
| 16743 | (autoload 'life "life" "\ | 16808 | (autoload 'life "life" "\ |
| @@ -16750,7 +16815,7 @@ generations (this defaults to 1). | |||
| 16750 | 16815 | ||
| 16751 | ;;;*** | 16816 | ;;;*** |
| 16752 | 16817 | ||
| 16753 | ;;;### (autoloads nil "linum" "linum.el" (21607 54478 300138 641000)) | 16818 | ;;;### (autoloads nil "linum" "linum.el" (21651 20707 180225 752000)) |
| 16754 | ;;; Generated autoloads from linum.el | 16819 | ;;; Generated autoloads from linum.el |
| 16755 | (push (purecopy '(linum 0 9 24)) package--builtin-versions) | 16820 | (push (purecopy '(linum 0 9 24)) package--builtin-versions) |
| 16756 | 16821 | ||
| @@ -16787,8 +16852,8 @@ See `linum-mode' for more information on Linum mode. | |||
| 16787 | 16852 | ||
| 16788 | ;;;*** | 16853 | ;;;*** |
| 16789 | 16854 | ||
| 16790 | ;;;### (autoloads nil "loadhist" "loadhist.el" (21607 54478 300138 | 16855 | ;;;### (autoloads nil "loadhist" "loadhist.el" (21604 48550 177934 |
| 16791 | ;;;;;; 641000)) | 16856 | ;;;;;; 220000)) |
| 16792 | ;;; Generated autoloads from loadhist.el | 16857 | ;;; Generated autoloads from loadhist.el |
| 16793 | 16858 | ||
| 16794 | (autoload 'unload-feature "loadhist" "\ | 16859 | (autoload 'unload-feature "loadhist" "\ |
| @@ -16819,7 +16884,7 @@ something strange, such as redefining an Emacs function. | |||
| 16819 | 16884 | ||
| 16820 | ;;;*** | 16885 | ;;;*** |
| 16821 | 16886 | ||
| 16822 | ;;;### (autoloads nil "locate" "locate.el" (21607 54478 300138 641000)) | 16887 | ;;;### (autoloads nil "locate" "locate.el" (21604 48550 177934 220000)) |
| 16823 | ;;; Generated autoloads from locate.el | 16888 | ;;; Generated autoloads from locate.el |
| 16824 | 16889 | ||
| 16825 | (defvar locate-ls-subdir-switches (purecopy "-al") "\ | 16890 | (defvar locate-ls-subdir-switches (purecopy "-al") "\ |
| @@ -16871,8 +16936,8 @@ except that FILTER is not optional. | |||
| 16871 | 16936 | ||
| 16872 | ;;;*** | 16937 | ;;;*** |
| 16873 | 16938 | ||
| 16874 | ;;;### (autoloads nil "log-edit" "vc/log-edit.el" (21607 54478 800121 | 16939 | ;;;### (autoloads nil "log-edit" "vc/log-edit.el" (21604 48550 429934 |
| 16875 | ;;;;;; 42000)) | 16940 | ;;;;;; 230000)) |
| 16876 | ;;; Generated autoloads from vc/log-edit.el | 16941 | ;;; Generated autoloads from vc/log-edit.el |
| 16877 | 16942 | ||
| 16878 | (autoload 'log-edit "log-edit" "\ | 16943 | (autoload 'log-edit "log-edit" "\ |
| @@ -16903,8 +16968,8 @@ done. Otherwise, it uses the current buffer. | |||
| 16903 | 16968 | ||
| 16904 | ;;;*** | 16969 | ;;;*** |
| 16905 | 16970 | ||
| 16906 | ;;;### (autoloads nil "log-view" "vc/log-view.el" (21607 54478 800121 | 16971 | ;;;### (autoloads nil "log-view" "vc/log-view.el" (21604 48550 429934 |
| 16907 | ;;;;;; 42000)) | 16972 | ;;;;;; 230000)) |
| 16908 | ;;; Generated autoloads from vc/log-view.el | 16973 | ;;; Generated autoloads from vc/log-view.el |
| 16909 | 16974 | ||
| 16910 | (autoload 'log-view-mode "log-view" "\ | 16975 | (autoload 'log-view-mode "log-view" "\ |
| @@ -16914,7 +16979,7 @@ Major mode for browsing CVS log output. | |||
| 16914 | 16979 | ||
| 16915 | ;;;*** | 16980 | ;;;*** |
| 16916 | 16981 | ||
| 16917 | ;;;### (autoloads nil "lpr" "lpr.el" (21607 54478 300138 641000)) | 16982 | ;;;### (autoloads nil "lpr" "lpr.el" (21604 48550 181934 220000)) |
| 16918 | ;;; Generated autoloads from lpr.el | 16983 | ;;; Generated autoloads from lpr.el |
| 16919 | 16984 | ||
| 16920 | (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ | 16985 | (defvar lpr-windows-system (memq system-type '(ms-dos windows-nt)) "\ |
| @@ -17009,8 +17074,8 @@ for further customization of the printer command. | |||
| 17009 | 17074 | ||
| 17010 | ;;;*** | 17075 | ;;;*** |
| 17011 | 17076 | ||
| 17012 | ;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21607 54478 300138 | 17077 | ;;;### (autoloads nil "ls-lisp" "ls-lisp.el" (21604 48550 181934 |
| 17013 | ;;;;;; 641000)) | 17078 | ;;;;;; 220000)) |
| 17014 | ;;; Generated autoloads from ls-lisp.el | 17079 | ;;; Generated autoloads from ls-lisp.el |
| 17015 | 17080 | ||
| 17016 | (defvar ls-lisp-support-shell-wildcards t "\ | 17081 | (defvar ls-lisp-support-shell-wildcards t "\ |
| @@ -17021,8 +17086,8 @@ Otherwise they are treated as Emacs regexps (for backward compatibility).") | |||
| 17021 | 17086 | ||
| 17022 | ;;;*** | 17087 | ;;;*** |
| 17023 | 17088 | ||
| 17024 | ;;;### (autoloads nil "lunar" "calendar/lunar.el" (21607 54477 800124 | 17089 | ;;;### (autoloads nil "lunar" "calendar/lunar.el" (21604 48549 953934 |
| 17025 | ;;;;;; 118000)) | 17090 | ;;;;;; 212000)) |
| 17026 | ;;; Generated autoloads from calendar/lunar.el | 17091 | ;;; Generated autoloads from calendar/lunar.el |
| 17027 | 17092 | ||
| 17028 | (autoload 'lunar-phases "lunar" "\ | 17093 | (autoload 'lunar-phases "lunar" "\ |
| @@ -17034,8 +17099,8 @@ This function is suitable for execution in an init file. | |||
| 17034 | 17099 | ||
| 17035 | ;;;*** | 17100 | ;;;*** |
| 17036 | 17101 | ||
| 17037 | ;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (21607 54478 | 17102 | ;;;### (autoloads nil "m4-mode" "progmodes/m4-mode.el" (21604 48550 |
| 17038 | ;;;;;; 800121 42000)) | 17103 | ;;;;;; 345934 227000)) |
| 17039 | ;;; Generated autoloads from progmodes/m4-mode.el | 17104 | ;;; Generated autoloads from progmodes/m4-mode.el |
| 17040 | 17105 | ||
| 17041 | (autoload 'm4-mode "m4-mode" "\ | 17106 | (autoload 'm4-mode "m4-mode" "\ |
| @@ -17045,7 +17110,7 @@ A major mode to edit m4 macro files. | |||
| 17045 | 17110 | ||
| 17046 | ;;;*** | 17111 | ;;;*** |
| 17047 | 17112 | ||
| 17048 | ;;;### (autoloads nil "macros" "macros.el" (21607 54478 300138 641000)) | 17113 | ;;;### (autoloads nil "macros" "macros.el" (21604 48550 181934 220000)) |
| 17049 | ;;; Generated autoloads from macros.el | 17114 | ;;; Generated autoloads from macros.el |
| 17050 | 17115 | ||
| 17051 | (autoload 'name-last-kbd-macro "macros" "\ | 17116 | (autoload 'name-last-kbd-macro "macros" "\ |
| @@ -17134,8 +17199,8 @@ and then select the region of un-tablified names and use | |||
| 17134 | 17199 | ||
| 17135 | ;;;*** | 17200 | ;;;*** |
| 17136 | 17201 | ||
| 17137 | ;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (21607 54478 | 17202 | ;;;### (autoloads nil "mail-extr" "mail/mail-extr.el" (21604 48550 |
| 17138 | ;;;;;; 300138 641000)) | 17203 | ;;;;;; 181934 220000)) |
| 17139 | ;;; Generated autoloads from mail/mail-extr.el | 17204 | ;;; Generated autoloads from mail/mail-extr.el |
| 17140 | 17205 | ||
| 17141 | (autoload 'mail-extract-address-components "mail-extr" "\ | 17206 | (autoload 'mail-extract-address-components "mail-extr" "\ |
| @@ -17165,8 +17230,8 @@ Convert mail domain DOMAIN to the country it corresponds to. | |||
| 17165 | 17230 | ||
| 17166 | ;;;*** | 17231 | ;;;*** |
| 17167 | 17232 | ||
| 17168 | ;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (21607 54478 | 17233 | ;;;### (autoloads nil "mail-hist" "mail/mail-hist.el" (21604 48550 |
| 17169 | ;;;;;; 300138 641000)) | 17234 | ;;;;;; 181934 220000)) |
| 17170 | ;;; Generated autoloads from mail/mail-hist.el | 17235 | ;;; Generated autoloads from mail/mail-hist.el |
| 17171 | 17236 | ||
| 17172 | (autoload 'mail-hist-define-keys "mail-hist" "\ | 17237 | (autoload 'mail-hist-define-keys "mail-hist" "\ |
| @@ -17195,8 +17260,8 @@ This function normally would be called when the message is sent. | |||
| 17195 | 17260 | ||
| 17196 | ;;;*** | 17261 | ;;;*** |
| 17197 | 17262 | ||
| 17198 | ;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (21607 54478 | 17263 | ;;;### (autoloads nil "mail-utils" "mail/mail-utils.el" (21604 48550 |
| 17199 | ;;;;;; 300138 641000)) | 17264 | ;;;;;; 181934 220000)) |
| 17200 | ;;; Generated autoloads from mail/mail-utils.el | 17265 | ;;; Generated autoloads from mail/mail-utils.el |
| 17201 | 17266 | ||
| 17202 | (defvar mail-use-rfc822 nil "\ | 17267 | (defvar mail-use-rfc822 nil "\ |
| @@ -17270,8 +17335,8 @@ matches may be returned from the message body. | |||
| 17270 | 17335 | ||
| 17271 | ;;;*** | 17336 | ;;;*** |
| 17272 | 17337 | ||
| 17273 | ;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (21607 54478 | 17338 | ;;;### (autoloads nil "mailabbrev" "mail/mailabbrev.el" (21604 48550 |
| 17274 | ;;;;;; 300138 641000)) | 17339 | ;;;;;; 181934 220000)) |
| 17275 | ;;; Generated autoloads from mail/mailabbrev.el | 17340 | ;;; Generated autoloads from mail/mailabbrev.el |
| 17276 | 17341 | ||
| 17277 | (defvar mail-abbrevs-mode nil "\ | 17342 | (defvar mail-abbrevs-mode nil "\ |
| @@ -17320,8 +17385,8 @@ double-quotes. | |||
| 17320 | 17385 | ||
| 17321 | ;;;*** | 17386 | ;;;*** |
| 17322 | 17387 | ||
| 17323 | ;;;### (autoloads nil "mailalias" "mail/mailalias.el" (21607 54478 | 17388 | ;;;### (autoloads nil "mailalias" "mail/mailalias.el" (21604 48550 |
| 17324 | ;;;;;; 300138 641000)) | 17389 | ;;;;;; 185934 221000)) |
| 17325 | ;;; Generated autoloads from mail/mailalias.el | 17390 | ;;; Generated autoloads from mail/mailalias.el |
| 17326 | 17391 | ||
| 17327 | (defvar mail-complete-style 'angles "\ | 17392 | (defvar mail-complete-style 'angles "\ |
| @@ -17374,8 +17439,8 @@ current header, calls `mail-complete-function' and passes prefix ARG if any. | |||
| 17374 | 17439 | ||
| 17375 | ;;;*** | 17440 | ;;;*** |
| 17376 | 17441 | ||
| 17377 | ;;;### (autoloads nil "mailclient" "mail/mailclient.el" (21607 54478 | 17442 | ;;;### (autoloads nil "mailclient" "mail/mailclient.el" (21604 48550 |
| 17378 | ;;;;;; 300138 641000)) | 17443 | ;;;;;; 185934 221000)) |
| 17379 | ;;; Generated autoloads from mail/mailclient.el | 17444 | ;;; Generated autoloads from mail/mailclient.el |
| 17380 | 17445 | ||
| 17381 | (autoload 'mailclient-send-it "mailclient" "\ | 17446 | (autoload 'mailclient-send-it "mailclient" "\ |
| @@ -17387,8 +17452,8 @@ The mail client is taken to be the handler of mailto URLs. | |||
| 17387 | 17452 | ||
| 17388 | ;;;*** | 17453 | ;;;*** |
| 17389 | 17454 | ||
| 17390 | ;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (21607 | 17455 | ;;;### (autoloads nil "make-mode" "progmodes/make-mode.el" (21604 |
| 17391 | ;;;;;; 54478 800121 42000)) | 17456 | ;;;;;; 48550 349934 227000)) |
| 17392 | ;;; Generated autoloads from progmodes/make-mode.el | 17457 | ;;; Generated autoloads from progmodes/make-mode.el |
| 17393 | 17458 | ||
| 17394 | (autoload 'makefile-mode "make-mode" "\ | 17459 | (autoload 'makefile-mode "make-mode" "\ |
| @@ -17505,8 +17570,8 @@ An adapted `makefile-mode' that knows about imake. | |||
| 17505 | 17570 | ||
| 17506 | ;;;*** | 17571 | ;;;*** |
| 17507 | 17572 | ||
| 17508 | ;;;### (autoloads nil "makesum" "makesum.el" (21607 54478 300138 | 17573 | ;;;### (autoloads nil "makesum" "makesum.el" (21604 48550 189934 |
| 17509 | ;;;;;; 641000)) | 17574 | ;;;;;; 221000)) |
| 17510 | ;;; Generated autoloads from makesum.el | 17575 | ;;; Generated autoloads from makesum.el |
| 17511 | 17576 | ||
| 17512 | (autoload 'make-command-summary "makesum" "\ | 17577 | (autoload 'make-command-summary "makesum" "\ |
| @@ -17517,7 +17582,7 @@ Previous contents of that buffer are killed first. | |||
| 17517 | 17582 | ||
| 17518 | ;;;*** | 17583 | ;;;*** |
| 17519 | 17584 | ||
| 17520 | ;;;### (autoloads nil "man" "man.el" (21607 54478 300138 641000)) | 17585 | ;;;### (autoloads nil "man" "man.el" (21604 48550 189934 221000)) |
| 17521 | ;;; Generated autoloads from man.el | 17586 | ;;; Generated autoloads from man.el |
| 17522 | 17587 | ||
| 17523 | (defalias 'manual-entry 'man) | 17588 | (defalias 'manual-entry 'man) |
| @@ -17573,7 +17638,7 @@ Default bookmark handler for Man buffers. | |||
| 17573 | 17638 | ||
| 17574 | ;;;*** | 17639 | ;;;*** |
| 17575 | 17640 | ||
| 17576 | ;;;### (autoloads nil "master" "master.el" (21607 54478 300138 641000)) | 17641 | ;;;### (autoloads nil "master" "master.el" (21604 48550 193934 221000)) |
| 17577 | ;;; Generated autoloads from master.el | 17642 | ;;; Generated autoloads from master.el |
| 17578 | (push (purecopy '(master 1 0 2)) package--builtin-versions) | 17643 | (push (purecopy '(master 1 0 2)) package--builtin-versions) |
| 17579 | 17644 | ||
| @@ -17596,8 +17661,8 @@ yourself the value of `master-of' by calling `master-show-slave'. | |||
| 17596 | 17661 | ||
| 17597 | ;;;*** | 17662 | ;;;*** |
| 17598 | 17663 | ||
| 17599 | ;;;### (autoloads nil "mb-depth" "mb-depth.el" (21607 54478 300138 | 17664 | ;;;### (autoloads nil "mb-depth" "mb-depth.el" (21604 48550 193934 |
| 17600 | ;;;;;; 641000)) | 17665 | ;;;;;; 221000)) |
| 17601 | ;;; Generated autoloads from mb-depth.el | 17666 | ;;; Generated autoloads from mb-depth.el |
| 17602 | 17667 | ||
| 17603 | (defvar minibuffer-depth-indicate-mode nil "\ | 17668 | (defvar minibuffer-depth-indicate-mode nil "\ |
| @@ -17624,14 +17689,14 @@ recursion depth in the minibuffer prompt. This is only useful if | |||
| 17624 | 17689 | ||
| 17625 | ;;;*** | 17690 | ;;;*** |
| 17626 | 17691 | ||
| 17627 | ;;;### (autoloads nil "md4" "md4.el" (21607 54478 300138 641000)) | 17692 | ;;;### (autoloads nil "md4" "md4.el" (21604 48550 193934 221000)) |
| 17628 | ;;; Generated autoloads from md4.el | 17693 | ;;; Generated autoloads from md4.el |
| 17629 | (push (purecopy '(md4 1 0)) package--builtin-versions) | 17694 | (push (purecopy '(md4 1 0)) package--builtin-versions) |
| 17630 | 17695 | ||
| 17631 | ;;;*** | 17696 | ;;;*** |
| 17632 | 17697 | ||
| 17633 | ;;;### (autoloads nil "message" "gnus/message.el" (21623 2108 292281 | 17698 | ;;;### (autoloads nil "message" "gnus/message.el" (21637 50476 671217 |
| 17634 | ;;;;;; 129000)) | 17699 | ;;;;;; 121000)) |
| 17635 | ;;; Generated autoloads from gnus/message.el | 17700 | ;;; Generated autoloads from gnus/message.el |
| 17636 | 17701 | ||
| 17637 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) | 17702 | (define-mail-user-agent 'message-user-agent 'message-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) |
| @@ -17796,8 +17861,8 @@ which specify the range to operate on. | |||
| 17796 | 17861 | ||
| 17797 | ;;;*** | 17862 | ;;;*** |
| 17798 | 17863 | ||
| 17799 | ;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (21607 | 17864 | ;;;### (autoloads nil "meta-mode" "progmodes/meta-mode.el" (21604 |
| 17800 | ;;;;;; 54478 800121 42000)) | 17865 | ;;;;;; 48550 349934 227000)) |
| 17801 | ;;; Generated autoloads from progmodes/meta-mode.el | 17866 | ;;; Generated autoloads from progmodes/meta-mode.el |
| 17802 | (push (purecopy '(meta-mode 1 0)) package--builtin-versions) | 17867 | (push (purecopy '(meta-mode 1 0)) package--builtin-versions) |
| 17803 | 17868 | ||
| @@ -17813,8 +17878,8 @@ Major mode for editing MetaPost sources. | |||
| 17813 | 17878 | ||
| 17814 | ;;;*** | 17879 | ;;;*** |
| 17815 | 17880 | ||
| 17816 | ;;;### (autoloads nil "metamail" "mail/metamail.el" (21607 54478 | 17881 | ;;;### (autoloads nil "metamail" "mail/metamail.el" (21604 48550 |
| 17817 | ;;;;;; 300138 641000)) | 17882 | ;;;;;; 185934 221000)) |
| 17818 | ;;; Generated autoloads from mail/metamail.el | 17883 | ;;; Generated autoloads from mail/metamail.el |
| 17819 | 17884 | ||
| 17820 | (autoload 'metamail-interpret-header "metamail" "\ | 17885 | (autoload 'metamail-interpret-header "metamail" "\ |
| @@ -17857,8 +17922,8 @@ redisplayed as output is inserted. | |||
| 17857 | 17922 | ||
| 17858 | ;;;*** | 17923 | ;;;*** |
| 17859 | 17924 | ||
| 17860 | ;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (21607 54478 300138 | 17925 | ;;;### (autoloads nil "mh-comp" "mh-e/mh-comp.el" (21604 48550 197934 |
| 17861 | ;;;;;; 641000)) | 17926 | ;;;;;; 221000)) |
| 17862 | ;;; Generated autoloads from mh-e/mh-comp.el | 17927 | ;;; Generated autoloads from mh-e/mh-comp.el |
| 17863 | 17928 | ||
| 17864 | (autoload 'mh-smail "mh-comp" "\ | 17929 | (autoload 'mh-smail "mh-comp" "\ |
| @@ -17948,7 +18013,7 @@ delete the draft message. | |||
| 17948 | 18013 | ||
| 17949 | ;;;*** | 18014 | ;;;*** |
| 17950 | 18015 | ||
| 17951 | ;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (21607 54478 300138 641000)) | 18016 | ;;;### (autoloads nil "mh-e" "mh-e/mh-e.el" (21604 48550 197934 221000)) |
| 17952 | ;;; Generated autoloads from mh-e/mh-e.el | 18017 | ;;; Generated autoloads from mh-e/mh-e.el |
| 17953 | (push (purecopy '(mh-e 8 6)) package--builtin-versions) | 18018 | (push (purecopy '(mh-e 8 6)) package--builtin-versions) |
| 17954 | 18019 | ||
| @@ -17965,8 +18030,8 @@ Display version information about MH-E and the MH mail handling system. | |||
| 17965 | 18030 | ||
| 17966 | ;;;*** | 18031 | ;;;*** |
| 17967 | 18032 | ||
| 17968 | ;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (21607 54478 | 18033 | ;;;### (autoloads nil "mh-folder" "mh-e/mh-folder.el" (21604 48550 |
| 17969 | ;;;;;; 300138 641000)) | 18034 | ;;;;;; 201934 221000)) |
| 17970 | ;;; Generated autoloads from mh-e/mh-folder.el | 18035 | ;;; Generated autoloads from mh-e/mh-folder.el |
| 17971 | 18036 | ||
| 17972 | (autoload 'mh-rmail "mh-folder" "\ | 18037 | (autoload 'mh-rmail "mh-folder" "\ |
| @@ -18047,8 +18112,8 @@ perform the operation on all messages in that region. | |||
| 18047 | 18112 | ||
| 18048 | ;;;*** | 18113 | ;;;*** |
| 18049 | 18114 | ||
| 18050 | ;;;### (autoloads nil "midnight" "midnight.el" (21607 54478 300138 | 18115 | ;;;### (autoloads nil "midnight" "midnight.el" (21604 48550 205934 |
| 18051 | ;;;;;; 641000)) | 18116 | ;;;;;; 221000)) |
| 18052 | ;;; Generated autoloads from midnight.el | 18117 | ;;; Generated autoloads from midnight.el |
| 18053 | 18118 | ||
| 18054 | (autoload 'clean-buffer-list "midnight" "\ | 18119 | (autoload 'clean-buffer-list "midnight" "\ |
| @@ -18074,8 +18139,8 @@ to its second argument TM. | |||
| 18074 | 18139 | ||
| 18075 | ;;;*** | 18140 | ;;;*** |
| 18076 | 18141 | ||
| 18077 | ;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (21607 54478 | 18142 | ;;;### (autoloads nil "minibuf-eldef" "minibuf-eldef.el" (21604 48550 |
| 18078 | ;;;;;; 300138 641000)) | 18143 | ;;;;;; 205934 221000)) |
| 18079 | ;;; Generated autoloads from minibuf-eldef.el | 18144 | ;;; Generated autoloads from minibuf-eldef.el |
| 18080 | 18145 | ||
| 18081 | (defvar minibuffer-electric-default-mode nil "\ | 18146 | (defvar minibuffer-electric-default-mode nil "\ |
| @@ -18104,7 +18169,7 @@ is modified to remove the default indication. | |||
| 18104 | 18169 | ||
| 18105 | ;;;*** | 18170 | ;;;*** |
| 18106 | 18171 | ||
| 18107 | ;;;### (autoloads nil "misc" "misc.el" (21607 54478 300138 641000)) | 18172 | ;;;### (autoloads nil "misc" "misc.el" (21604 48550 209934 221000)) |
| 18108 | ;;; Generated autoloads from misc.el | 18173 | ;;; Generated autoloads from misc.el |
| 18109 | 18174 | ||
| 18110 | (autoload 'butterfly "misc" "\ | 18175 | (autoload 'butterfly "misc" "\ |
| @@ -18132,8 +18197,8 @@ The return value is always nil. | |||
| 18132 | 18197 | ||
| 18133 | ;;;*** | 18198 | ;;;*** |
| 18134 | 18199 | ||
| 18135 | ;;;### (autoloads nil "misearch" "misearch.el" (21607 54478 300138 | 18200 | ;;;### (autoloads nil "misearch" "misearch.el" (21604 48550 209934 |
| 18136 | ;;;;;; 641000)) | 18201 | ;;;;;; 221000)) |
| 18137 | ;;; Generated autoloads from misearch.el | 18202 | ;;; Generated autoloads from misearch.el |
| 18138 | (add-hook 'isearch-mode-hook 'multi-isearch-setup) | 18203 | (add-hook 'isearch-mode-hook 'multi-isearch-setup) |
| 18139 | 18204 | ||
| @@ -18218,8 +18283,8 @@ whose file names match the specified wildcard. | |||
| 18218 | 18283 | ||
| 18219 | ;;;*** | 18284 | ;;;*** |
| 18220 | 18285 | ||
| 18221 | ;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (21607 | 18286 | ;;;### (autoloads nil "mixal-mode" "progmodes/mixal-mode.el" (21604 |
| 18222 | ;;;;;; 54478 800121 42000)) | 18287 | ;;;;;; 48550 349934 227000)) |
| 18223 | ;;; Generated autoloads from progmodes/mixal-mode.el | 18288 | ;;; Generated autoloads from progmodes/mixal-mode.el |
| 18224 | (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) | 18289 | (push (purecopy '(mixal-mode 0 1)) package--builtin-versions) |
| 18225 | 18290 | ||
| @@ -18230,8 +18295,8 @@ Major mode for the mixal asm language. | |||
| 18230 | 18295 | ||
| 18231 | ;;;*** | 18296 | ;;;*** |
| 18232 | 18297 | ||
| 18233 | ;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (21607 54478 | 18298 | ;;;### (autoloads nil "mm-encode" "gnus/mm-encode.el" (21604 48550 |
| 18234 | ;;;;;; 300138 641000)) | 18299 | ;;;;;; 105934 218000)) |
| 18235 | ;;; Generated autoloads from gnus/mm-encode.el | 18300 | ;;; Generated autoloads from gnus/mm-encode.el |
| 18236 | 18301 | ||
| 18237 | (autoload 'mm-default-file-encoding "mm-encode" "\ | 18302 | (autoload 'mm-default-file-encoding "mm-encode" "\ |
| @@ -18241,8 +18306,8 @@ Return a default encoding for FILE. | |||
| 18241 | 18306 | ||
| 18242 | ;;;*** | 18307 | ;;;*** |
| 18243 | 18308 | ||
| 18244 | ;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (21607 54478 | 18309 | ;;;### (autoloads nil "mm-extern" "gnus/mm-extern.el" (21604 48550 |
| 18245 | ;;;;;; 300138 641000)) | 18310 | ;;;;;; 105934 218000)) |
| 18246 | ;;; Generated autoloads from gnus/mm-extern.el | 18311 | ;;; Generated autoloads from gnus/mm-extern.el |
| 18247 | 18312 | ||
| 18248 | (autoload 'mm-extern-cache-contents "mm-extern" "\ | 18313 | (autoload 'mm-extern-cache-contents "mm-extern" "\ |
| @@ -18260,8 +18325,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 18260 | 18325 | ||
| 18261 | ;;;*** | 18326 | ;;;*** |
| 18262 | 18327 | ||
| 18263 | ;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (21607 54478 | 18328 | ;;;### (autoloads nil "mm-partial" "gnus/mm-partial.el" (21604 48550 |
| 18264 | ;;;;;; 300138 641000)) | 18329 | ;;;;;; 105934 218000)) |
| 18265 | ;;; Generated autoloads from gnus/mm-partial.el | 18330 | ;;; Generated autoloads from gnus/mm-partial.el |
| 18266 | 18331 | ||
| 18267 | (autoload 'mm-inline-partial "mm-partial" "\ | 18332 | (autoload 'mm-inline-partial "mm-partial" "\ |
| @@ -18274,8 +18339,8 @@ If NO-DISPLAY is nil, display it. Otherwise, do nothing after replacing. | |||
| 18274 | 18339 | ||
| 18275 | ;;;*** | 18340 | ;;;*** |
| 18276 | 18341 | ||
| 18277 | ;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (21607 54478 300138 | 18342 | ;;;### (autoloads nil "mm-url" "gnus/mm-url.el" (21604 48550 109934 |
| 18278 | ;;;;;; 641000)) | 18343 | ;;;;;; 218000)) |
| 18279 | ;;; Generated autoloads from gnus/mm-url.el | 18344 | ;;; Generated autoloads from gnus/mm-url.el |
| 18280 | 18345 | ||
| 18281 | (autoload 'mm-url-insert-file-contents "mm-url" "\ | 18346 | (autoload 'mm-url-insert-file-contents "mm-url" "\ |
| @@ -18291,8 +18356,8 @@ Insert file contents of URL using `mm-url-program'. | |||
| 18291 | 18356 | ||
| 18292 | ;;;*** | 18357 | ;;;*** |
| 18293 | 18358 | ||
| 18294 | ;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (21607 54478 300138 | 18359 | ;;;### (autoloads nil "mm-uu" "gnus/mm-uu.el" (21604 48550 109934 |
| 18295 | ;;;;;; 641000)) | 18360 | ;;;;;; 218000)) |
| 18296 | ;;; Generated autoloads from gnus/mm-uu.el | 18361 | ;;; Generated autoloads from gnus/mm-uu.el |
| 18297 | 18362 | ||
| 18298 | (autoload 'mm-uu-dissect "mm-uu" "\ | 18363 | (autoload 'mm-uu-dissect "mm-uu" "\ |
| @@ -18311,7 +18376,7 @@ Assume text has been decoded if DECODED is non-nil. | |||
| 18311 | 18376 | ||
| 18312 | ;;;*** | 18377 | ;;;*** |
| 18313 | 18378 | ||
| 18314 | ;;;### (autoloads nil "mml" "gnus/mml.el" (21607 54478 300138 641000)) | 18379 | ;;;### (autoloads nil "mml" "gnus/mml.el" (21604 48550 109934 218000)) |
| 18315 | ;;; Generated autoloads from gnus/mml.el | 18380 | ;;; Generated autoloads from gnus/mml.el |
| 18316 | 18381 | ||
| 18317 | (autoload 'mml-to-mime "mml" "\ | 18382 | (autoload 'mml-to-mime "mml" "\ |
| @@ -18336,8 +18401,8 @@ body) or \"attachment\" (separate from the body). | |||
| 18336 | 18401 | ||
| 18337 | ;;;*** | 18402 | ;;;*** |
| 18338 | 18403 | ||
| 18339 | ;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (21607 54478 300138 | 18404 | ;;;### (autoloads nil "mml1991" "gnus/mml1991.el" (21604 48550 109934 |
| 18340 | ;;;;;; 641000)) | 18405 | ;;;;;; 218000)) |
| 18341 | ;;; Generated autoloads from gnus/mml1991.el | 18406 | ;;; Generated autoloads from gnus/mml1991.el |
| 18342 | 18407 | ||
| 18343 | (autoload 'mml1991-encrypt "mml1991" "\ | 18408 | (autoload 'mml1991-encrypt "mml1991" "\ |
| @@ -18352,8 +18417,8 @@ body) or \"attachment\" (separate from the body). | |||
| 18352 | 18417 | ||
| 18353 | ;;;*** | 18418 | ;;;*** |
| 18354 | 18419 | ||
| 18355 | ;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21607 54478 300138 | 18420 | ;;;### (autoloads nil "mml2015" "gnus/mml2015.el" (21604 48550 109934 |
| 18356 | ;;;;;; 641000)) | 18421 | ;;;;;; 218000)) |
| 18357 | ;;; Generated autoloads from gnus/mml2015.el | 18422 | ;;; Generated autoloads from gnus/mml2015.el |
| 18358 | 18423 | ||
| 18359 | (autoload 'mml2015-decrypt "mml2015" "\ | 18424 | (autoload 'mml2015-decrypt "mml2015" "\ |
| @@ -18393,16 +18458,16 @@ body) or \"attachment\" (separate from the body). | |||
| 18393 | 18458 | ||
| 18394 | ;;;*** | 18459 | ;;;*** |
| 18395 | 18460 | ||
| 18396 | ;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (21607 54477 | 18461 | ;;;### (autoloads nil "mode-local" "cedet/mode-local.el" (21604 48549 |
| 18397 | ;;;;;; 800124 118000)) | 18462 | ;;;;;; 965934 212000)) |
| 18398 | ;;; Generated autoloads from cedet/mode-local.el | 18463 | ;;; Generated autoloads from cedet/mode-local.el |
| 18399 | 18464 | ||
| 18400 | (put 'define-overloadable-function 'doc-string-elt 3) | 18465 | (put 'define-overloadable-function 'doc-string-elt 3) |
| 18401 | 18466 | ||
| 18402 | ;;;*** | 18467 | ;;;*** |
| 18403 | 18468 | ||
| 18404 | ;;;### (autoloads nil "modula2" "progmodes/modula2.el" (21607 54478 | 18469 | ;;;### (autoloads nil "modula2" "progmodes/modula2.el" (21604 48550 |
| 18405 | ;;;;;; 800121 42000)) | 18470 | ;;;;;; 349934 227000)) |
| 18406 | ;;; Generated autoloads from progmodes/modula2.el | 18471 | ;;; Generated autoloads from progmodes/modula2.el |
| 18407 | 18472 | ||
| 18408 | (defalias 'modula-2-mode 'm2-mode) | 18473 | (defalias 'modula-2-mode 'm2-mode) |
| @@ -18435,8 +18500,8 @@ followed by the first character of the construct. | |||
| 18435 | 18500 | ||
| 18436 | ;;;*** | 18501 | ;;;*** |
| 18437 | 18502 | ||
| 18438 | ;;;### (autoloads nil "morse" "play/morse.el" (21616 28857 81577 | 18503 | ;;;### (autoloads nil "morse" "play/morse.el" (21631 35966 895121 |
| 18439 | ;;;;;; 239000)) | 18504 | ;;;;;; 869000)) |
| 18440 | ;;; Generated autoloads from play/morse.el | 18505 | ;;; Generated autoloads from play/morse.el |
| 18441 | 18506 | ||
| 18442 | (autoload 'morse-region "morse" "\ | 18507 | (autoload 'morse-region "morse" "\ |
| @@ -18461,8 +18526,8 @@ Convert NATO phonetic alphabet in region to ordinary ASCII text. | |||
| 18461 | 18526 | ||
| 18462 | ;;;*** | 18527 | ;;;*** |
| 18463 | 18528 | ||
| 18464 | ;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (21607 54478 300138 | 18529 | ;;;### (autoloads nil "mouse-drag" "mouse-drag.el" (21604 48550 209934 |
| 18465 | ;;;;;; 641000)) | 18530 | ;;;;;; 221000)) |
| 18466 | ;;; Generated autoloads from mouse-drag.el | 18531 | ;;; Generated autoloads from mouse-drag.el |
| 18467 | 18532 | ||
| 18468 | (autoload 'mouse-drag-throw "mouse-drag" "\ | 18533 | (autoload 'mouse-drag-throw "mouse-drag" "\ |
| @@ -18509,7 +18574,7 @@ To test this function, evaluate: | |||
| 18509 | 18574 | ||
| 18510 | ;;;*** | 18575 | ;;;*** |
| 18511 | 18576 | ||
| 18512 | ;;;### (autoloads nil "mpc" "mpc.el" (21607 54478 300138 641000)) | 18577 | ;;;### (autoloads nil "mpc" "mpc.el" (21604 48550 209934 221000)) |
| 18513 | ;;; Generated autoloads from mpc.el | 18578 | ;;; Generated autoloads from mpc.el |
| 18514 | 18579 | ||
| 18515 | (autoload 'mpc "mpc" "\ | 18580 | (autoload 'mpc "mpc" "\ |
| @@ -18519,7 +18584,7 @@ Main entry point for MPC. | |||
| 18519 | 18584 | ||
| 18520 | ;;;*** | 18585 | ;;;*** |
| 18521 | 18586 | ||
| 18522 | ;;;### (autoloads nil "mpuz" "play/mpuz.el" (21607 54478 800121 42000)) | 18587 | ;;;### (autoloads nil "mpuz" "play/mpuz.el" (21604 48550 305934 225000)) |
| 18523 | ;;; Generated autoloads from play/mpuz.el | 18588 | ;;; Generated autoloads from play/mpuz.el |
| 18524 | 18589 | ||
| 18525 | (autoload 'mpuz "mpuz" "\ | 18590 | (autoload 'mpuz "mpuz" "\ |
| @@ -18529,7 +18594,7 @@ Multiplication puzzle with GNU Emacs. | |||
| 18529 | 18594 | ||
| 18530 | ;;;*** | 18595 | ;;;*** |
| 18531 | 18596 | ||
| 18532 | ;;;### (autoloads nil "msb" "msb.el" (21607 54478 300138 641000)) | 18597 | ;;;### (autoloads nil "msb" "msb.el" (21604 48550 209934 221000)) |
| 18533 | ;;; Generated autoloads from msb.el | 18598 | ;;; Generated autoloads from msb.el |
| 18534 | 18599 | ||
| 18535 | (defvar msb-mode nil "\ | 18600 | (defvar msb-mode nil "\ |
| @@ -18554,8 +18619,8 @@ different buffer menu using the function `msb'. | |||
| 18554 | 18619 | ||
| 18555 | ;;;*** | 18620 | ;;;*** |
| 18556 | 18621 | ||
| 18557 | ;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21607 | 18622 | ;;;### (autoloads nil "mule-diag" "international/mule-diag.el" (21651 |
| 18558 | ;;;;;; 54478 300138 641000)) | 18623 | ;;;;;; 20707 180225 752000)) |
| 18559 | ;;; Generated autoloads from international/mule-diag.el | 18624 | ;;; Generated autoloads from international/mule-diag.el |
| 18560 | 18625 | ||
| 18561 | (autoload 'list-character-sets "mule-diag" "\ | 18626 | (autoload 'list-character-sets "mule-diag" "\ |
| @@ -18687,8 +18752,8 @@ The default is 20. If LIMIT is negative, do not limit the listing. | |||
| 18687 | 18752 | ||
| 18688 | ;;;*** | 18753 | ;;;*** |
| 18689 | 18754 | ||
| 18690 | ;;;### (autoloads nil "mule-util" "international/mule-util.el" (21607 | 18755 | ;;;### (autoloads nil "mule-util" "international/mule-util.el" (21604 |
| 18691 | ;;;;;; 54478 300138 641000)) | 18756 | ;;;;;; 48550 141934 219000)) |
| 18692 | ;;; Generated autoloads from international/mule-util.el | 18757 | ;;; Generated autoloads from international/mule-util.el |
| 18693 | 18758 | ||
| 18694 | (defsubst string-to-list (string) "\ | 18759 | (defsubst string-to-list (string) "\ |
| @@ -18819,8 +18884,8 @@ per-character basis, this may not be accurate. | |||
| 18819 | 18884 | ||
| 18820 | ;;;*** | 18885 | ;;;*** |
| 18821 | 18886 | ||
| 18822 | ;;;### (autoloads nil "net-utils" "net/net-utils.el" (21607 54478 | 18887 | ;;;### (autoloads nil "net-utils" "net/net-utils.el" (21604 48550 |
| 18823 | ;;;;;; 300138 641000)) | 18888 | ;;;;;; 217934 222000)) |
| 18824 | ;;; Generated autoloads from net/net-utils.el | 18889 | ;;; Generated autoloads from net/net-utils.el |
| 18825 | 18890 | ||
| 18826 | (autoload 'ifconfig "net-utils" "\ | 18891 | (autoload 'ifconfig "net-utils" "\ |
| @@ -18914,8 +18979,8 @@ Open a network connection to HOST on PORT. | |||
| 18914 | 18979 | ||
| 18915 | ;;;*** | 18980 | ;;;*** |
| 18916 | 18981 | ||
| 18917 | ;;;### (autoloads nil "netrc" "net/netrc.el" (21607 54478 300138 | 18982 | ;;;### (autoloads nil "netrc" "net/netrc.el" (21604 48550 217934 |
| 18918 | ;;;;;; 641000)) | 18983 | ;;;;;; 222000)) |
| 18919 | ;;; Generated autoloads from net/netrc.el | 18984 | ;;; Generated autoloads from net/netrc.el |
| 18920 | 18985 | ||
| 18921 | (autoload 'netrc-credentials "netrc" "\ | 18986 | (autoload 'netrc-credentials "netrc" "\ |
| @@ -18927,8 +18992,8 @@ listed in the PORTS list. | |||
| 18927 | 18992 | ||
| 18928 | ;;;*** | 18993 | ;;;*** |
| 18929 | 18994 | ||
| 18930 | ;;;### (autoloads nil "network-stream" "net/network-stream.el" (21619 | 18995 | ;;;### (autoloads nil "network-stream" "net/network-stream.el" (21645 |
| 18931 | ;;;;;; 5051 260148 536000)) | 18996 | ;;;;;; 25761 793186 828000)) |
| 18932 | ;;; Generated autoloads from net/network-stream.el | 18997 | ;;; Generated autoloads from net/network-stream.el |
| 18933 | 18998 | ||
| 18934 | (autoload 'open-network-stream "network-stream" "\ | 18999 | (autoload 'open-network-stream "network-stream" "\ |
| @@ -19024,8 +19089,8 @@ asynchronously, if possible. | |||
| 19024 | 19089 | ||
| 19025 | ;;;*** | 19090 | ;;;*** |
| 19026 | 19091 | ||
| 19027 | ;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (21628 | 19092 | ;;;### (autoloads nil "newst-backend" "net/newst-backend.el" (21631 |
| 19028 | ;;;;;; 45530 160140 360000)) | 19093 | ;;;;;; 35966 879121 869000)) |
| 19029 | ;;; Generated autoloads from net/newst-backend.el | 19094 | ;;; Generated autoloads from net/newst-backend.el |
| 19030 | 19095 | ||
| 19031 | (autoload 'newsticker-running-p "newst-backend" "\ | 19096 | (autoload 'newsticker-running-p "newst-backend" "\ |
| @@ -19047,7 +19112,7 @@ Run `newsticker-start-hook' if newsticker was not running already. | |||
| 19047 | ;;;*** | 19112 | ;;;*** |
| 19048 | 19113 | ||
| 19049 | ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" | 19114 | ;;;### (autoloads nil "newst-plainview" "net/newst-plainview.el" |
| 19050 | ;;;;;; (21607 54478 300138 641000)) | 19115 | ;;;;;; (21604 48550 217934 222000)) |
| 19051 | ;;; Generated autoloads from net/newst-plainview.el | 19116 | ;;; Generated autoloads from net/newst-plainview.el |
| 19052 | 19117 | ||
| 19053 | (autoload 'newsticker-plainview "newst-plainview" "\ | 19118 | (autoload 'newsticker-plainview "newst-plainview" "\ |
| @@ -19057,8 +19122,8 @@ Start newsticker plainview. | |||
| 19057 | 19122 | ||
| 19058 | ;;;*** | 19123 | ;;;*** |
| 19059 | 19124 | ||
| 19060 | ;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (21607 | 19125 | ;;;### (autoloads nil "newst-reader" "net/newst-reader.el" (21604 |
| 19061 | ;;;;;; 54478 300138 641000)) | 19126 | ;;;;;; 48550 217934 222000)) |
| 19062 | ;;; Generated autoloads from net/newst-reader.el | 19127 | ;;; Generated autoloads from net/newst-reader.el |
| 19063 | 19128 | ||
| 19064 | (autoload 'newsticker-show-news "newst-reader" "\ | 19129 | (autoload 'newsticker-show-news "newst-reader" "\ |
| @@ -19068,8 +19133,8 @@ Start reading news. You may want to bind this to a key. | |||
| 19068 | 19133 | ||
| 19069 | ;;;*** | 19134 | ;;;*** |
| 19070 | 19135 | ||
| 19071 | ;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (21607 | 19136 | ;;;### (autoloads nil "newst-ticker" "net/newst-ticker.el" (21604 |
| 19072 | ;;;;;; 54478 300138 641000)) | 19137 | ;;;;;; 48550 221934 222000)) |
| 19073 | ;;; Generated autoloads from net/newst-ticker.el | 19138 | ;;; Generated autoloads from net/newst-ticker.el |
| 19074 | 19139 | ||
| 19075 | (autoload 'newsticker-ticker-running-p "newst-ticker" "\ | 19140 | (autoload 'newsticker-ticker-running-p "newst-ticker" "\ |
| @@ -19089,8 +19154,8 @@ running already. | |||
| 19089 | 19154 | ||
| 19090 | ;;;*** | 19155 | ;;;*** |
| 19091 | 19156 | ||
| 19092 | ;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (21628 | 19157 | ;;;### (autoloads nil "newst-treeview" "net/newst-treeview.el" (21637 |
| 19093 | ;;;;;; 45530 160140 360000)) | 19158 | ;;;;;; 50476 675217 121000)) |
| 19094 | ;;; Generated autoloads from net/newst-treeview.el | 19159 | ;;; Generated autoloads from net/newst-treeview.el |
| 19095 | 19160 | ||
| 19096 | (autoload 'newsticker-treeview "newst-treeview" "\ | 19161 | (autoload 'newsticker-treeview "newst-treeview" "\ |
| @@ -19100,8 +19165,8 @@ Start newsticker treeview. | |||
| 19100 | 19165 | ||
| 19101 | ;;;*** | 19166 | ;;;*** |
| 19102 | 19167 | ||
| 19103 | ;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (21607 54478 300138 | 19168 | ;;;### (autoloads nil "nndiary" "gnus/nndiary.el" (21604 48550 109934 |
| 19104 | ;;;;;; 641000)) | 19169 | ;;;;;; 218000)) |
| 19105 | ;;; Generated autoloads from gnus/nndiary.el | 19170 | ;;; Generated autoloads from gnus/nndiary.el |
| 19106 | 19171 | ||
| 19107 | (autoload 'nndiary-generate-nov-databases "nndiary" "\ | 19172 | (autoload 'nndiary-generate-nov-databases "nndiary" "\ |
| @@ -19111,8 +19176,8 @@ Generate NOV databases in all nndiary directories. | |||
| 19111 | 19176 | ||
| 19112 | ;;;*** | 19177 | ;;;*** |
| 19113 | 19178 | ||
| 19114 | ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (21607 54478 300138 | 19179 | ;;;### (autoloads nil "nndoc" "gnus/nndoc.el" (21604 48550 109934 |
| 19115 | ;;;;;; 641000)) | 19180 | ;;;;;; 218000)) |
| 19116 | ;;; Generated autoloads from gnus/nndoc.el | 19181 | ;;; Generated autoloads from gnus/nndoc.el |
| 19117 | 19182 | ||
| 19118 | (autoload 'nndoc-add-type "nndoc" "\ | 19183 | (autoload 'nndoc-add-type "nndoc" "\ |
| @@ -19126,8 +19191,8 @@ symbol in the alist. | |||
| 19126 | 19191 | ||
| 19127 | ;;;*** | 19192 | ;;;*** |
| 19128 | 19193 | ||
| 19129 | ;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (21607 54478 | 19194 | ;;;### (autoloads nil "nnfolder" "gnus/nnfolder.el" (21604 48550 |
| 19130 | ;;;;;; 300138 641000)) | 19195 | ;;;;;; 113934 218000)) |
| 19131 | ;;; Generated autoloads from gnus/nnfolder.el | 19196 | ;;; Generated autoloads from gnus/nnfolder.el |
| 19132 | 19197 | ||
| 19133 | (autoload 'nnfolder-generate-active-file "nnfolder" "\ | 19198 | (autoload 'nnfolder-generate-active-file "nnfolder" "\ |
| @@ -19138,7 +19203,7 @@ This command does not work if you use short group names. | |||
| 19138 | 19203 | ||
| 19139 | ;;;*** | 19204 | ;;;*** |
| 19140 | 19205 | ||
| 19141 | ;;;### (autoloads nil "nnml" "gnus/nnml.el" (21607 54478 300138 641000)) | 19206 | ;;;### (autoloads nil "nnml" "gnus/nnml.el" (21604 48550 117934 218000)) |
| 19142 | ;;; Generated autoloads from gnus/nnml.el | 19207 | ;;; Generated autoloads from gnus/nnml.el |
| 19143 | 19208 | ||
| 19144 | (autoload 'nnml-generate-nov-databases "nnml" "\ | 19209 | (autoload 'nnml-generate-nov-databases "nnml" "\ |
| @@ -19148,7 +19213,7 @@ Generate NOV databases in all nnml directories. | |||
| 19148 | 19213 | ||
| 19149 | ;;;*** | 19214 | ;;;*** |
| 19150 | 19215 | ||
| 19151 | ;;;### (autoloads nil "novice" "novice.el" (21607 54478 300138 641000)) | 19216 | ;;;### (autoloads nil "novice" "novice.el" (21604 48550 237934 223000)) |
| 19152 | ;;; Generated autoloads from novice.el | 19217 | ;;; Generated autoloads from novice.el |
| 19153 | 19218 | ||
| 19154 | (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") | 19219 | (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") |
| @@ -19180,8 +19245,8 @@ future sessions. | |||
| 19180 | 19245 | ||
| 19181 | ;;;*** | 19246 | ;;;*** |
| 19182 | 19247 | ||
| 19183 | ;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (21607 | 19248 | ;;;### (autoloads nil "nroff-mode" "textmodes/nroff-mode.el" (21604 |
| 19184 | ;;;;;; 54478 800121 42000)) | 19249 | ;;;;;; 48550 397934 228000)) |
| 19185 | ;;; Generated autoloads from textmodes/nroff-mode.el | 19250 | ;;; Generated autoloads from textmodes/nroff-mode.el |
| 19186 | 19251 | ||
| 19187 | (autoload 'nroff-mode "nroff-mode" "\ | 19252 | (autoload 'nroff-mode "nroff-mode" "\ |
| @@ -19195,14 +19260,14 @@ closing requests for requests that are used in matched pairs. | |||
| 19195 | 19260 | ||
| 19196 | ;;;*** | 19261 | ;;;*** |
| 19197 | 19262 | ||
| 19198 | ;;;### (autoloads nil "ntlm" "net/ntlm.el" (21607 54478 300138 641000)) | 19263 | ;;;### (autoloads nil "ntlm" "net/ntlm.el" (21604 48550 221934 222000)) |
| 19199 | ;;; Generated autoloads from net/ntlm.el | 19264 | ;;; Generated autoloads from net/ntlm.el |
| 19200 | (push (purecopy '(ntlm 1 0)) package--builtin-versions) | 19265 | (push (purecopy '(ntlm 1 0)) package--builtin-versions) |
| 19201 | 19266 | ||
| 19202 | ;;;*** | 19267 | ;;;*** |
| 19203 | 19268 | ||
| 19204 | ;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (21607 54478 | 19269 | ;;;### (autoloads nil "nxml-glyph" "nxml/nxml-glyph.el" (21604 48550 |
| 19205 | ;;;;;; 300138 641000)) | 19270 | ;;;;;; 237934 223000)) |
| 19206 | ;;; Generated autoloads from nxml/nxml-glyph.el | 19271 | ;;; Generated autoloads from nxml/nxml-glyph.el |
| 19207 | 19272 | ||
| 19208 | (autoload 'nxml-glyph-display-string "nxml-glyph" "\ | 19273 | (autoload 'nxml-glyph-display-string "nxml-glyph" "\ |
| @@ -19214,8 +19279,8 @@ Return nil if the face cannot display a glyph for N. | |||
| 19214 | 19279 | ||
| 19215 | ;;;*** | 19280 | ;;;*** |
| 19216 | 19281 | ||
| 19217 | ;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (21611 10937 | 19282 | ;;;### (autoloads nil "nxml-mode" "nxml/nxml-mode.el" (21631 35966 |
| 19218 | ;;;;;; 700236 3000)) | 19283 | ;;;;;; 887121 869000)) |
| 19219 | ;;; Generated autoloads from nxml/nxml-mode.el | 19284 | ;;; Generated autoloads from nxml/nxml-mode.el |
| 19220 | 19285 | ||
| 19221 | (autoload 'nxml-mode "nxml-mode" "\ | 19286 | (autoload 'nxml-mode "nxml-mode" "\ |
| @@ -19275,8 +19340,8 @@ Many aspects this mode can be customized using | |||
| 19275 | 19340 | ||
| 19276 | ;;;*** | 19341 | ;;;*** |
| 19277 | 19342 | ||
| 19278 | ;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (21607 54478 | 19343 | ;;;### (autoloads nil "nxml-uchnm" "nxml/nxml-uchnm.el" (21604 48550 |
| 19279 | ;;;;;; 300138 641000)) | 19344 | ;;;;;; 237934 223000)) |
| 19280 | ;;; Generated autoloads from nxml/nxml-uchnm.el | 19345 | ;;; Generated autoloads from nxml/nxml-uchnm.el |
| 19281 | 19346 | ||
| 19282 | (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ | 19347 | (autoload 'nxml-enable-unicode-char-name-sets "nxml-uchnm" "\ |
| @@ -19288,8 +19353,8 @@ the variable `nxml-enabled-unicode-blocks'. | |||
| 19288 | 19353 | ||
| 19289 | ;;;*** | 19354 | ;;;*** |
| 19290 | 19355 | ||
| 19291 | ;;;### (autoloads nil "octave" "progmodes/octave.el" (21607 54478 | 19356 | ;;;### (autoloads nil "octave" "progmodes/octave.el" (21631 35966 |
| 19292 | ;;;;;; 800121 42000)) | 19357 | ;;;;;; 907121 870000)) |
| 19293 | ;;; Generated autoloads from progmodes/octave.el | 19358 | ;;; Generated autoloads from progmodes/octave.el |
| 19294 | 19359 | ||
| 19295 | (autoload 'octave-mode "octave" "\ | 19360 | (autoload 'octave-mode "octave" "\ |
| @@ -19326,8 +19391,8 @@ startup file, `~/.emacs-octave'. | |||
| 19326 | 19391 | ||
| 19327 | ;;;*** | 19392 | ;;;*** |
| 19328 | 19393 | ||
| 19329 | ;;;### (autoloads nil "opascal" "progmodes/opascal.el" (21607 54478 | 19394 | ;;;### (autoloads nil "opascal" "progmodes/opascal.el" (21604 48550 |
| 19330 | ;;;;;; 800121 42000)) | 19395 | ;;;;;; 349934 227000)) |
| 19331 | ;;; Generated autoloads from progmodes/opascal.el | 19396 | ;;; Generated autoloads from progmodes/opascal.el |
| 19332 | 19397 | ||
| 19333 | (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") | 19398 | (define-obsolete-function-alias 'delphi-mode 'opascal-mode "24.4") |
| @@ -19362,7 +19427,7 @@ Coloring: | |||
| 19362 | 19427 | ||
| 19363 | ;;;*** | 19428 | ;;;*** |
| 19364 | 19429 | ||
| 19365 | ;;;### (autoloads nil "org" "org/org.el" (21607 54478 800121 42000)) | 19430 | ;;;### (autoloads nil "org" "org/org.el" (21645 25761 805186 828000)) |
| 19366 | ;;; Generated autoloads from org/org.el | 19431 | ;;; Generated autoloads from org/org.el |
| 19367 | 19432 | ||
| 19368 | (autoload 'org-babel-do-load-languages "org" "\ | 19433 | (autoload 'org-babel-do-load-languages "org" "\ |
| @@ -19583,8 +19648,8 @@ Call the customize function with org as argument. | |||
| 19583 | 19648 | ||
| 19584 | ;;;*** | 19649 | ;;;*** |
| 19585 | 19650 | ||
| 19586 | ;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (21607 54478 | 19651 | ;;;### (autoloads nil "org-agenda" "org/org-agenda.el" (21604 48550 |
| 19587 | ;;;;;; 800121 42000)) | 19652 | ;;;;;; 269934 224000)) |
| 19588 | ;;; Generated autoloads from org/org-agenda.el | 19653 | ;;; Generated autoloads from org/org-agenda.el |
| 19589 | 19654 | ||
| 19590 | (autoload 'org-toggle-sticky-agenda "org-agenda" "\ | 19655 | (autoload 'org-toggle-sticky-agenda "org-agenda" "\ |
| @@ -19857,8 +19922,8 @@ to override `appt-message-warning-time'. | |||
| 19857 | 19922 | ||
| 19858 | ;;;*** | 19923 | ;;;*** |
| 19859 | 19924 | ||
| 19860 | ;;;### (autoloads nil "org-capture" "org/org-capture.el" (21607 54478 | 19925 | ;;;### (autoloads nil "org-capture" "org/org-capture.el" (21604 48550 |
| 19861 | ;;;;;; 800121 42000)) | 19926 | ;;;;;; 273934 224000)) |
| 19862 | ;;; Generated autoloads from org/org-capture.el | 19927 | ;;; Generated autoloads from org/org-capture.el |
| 19863 | 19928 | ||
| 19864 | (autoload 'org-capture-string "org-capture" "\ | 19929 | (autoload 'org-capture-string "org-capture" "\ |
| @@ -19900,8 +19965,8 @@ Set `org-capture-templates' to be similar to `org-remember-templates'. | |||
| 19900 | 19965 | ||
| 19901 | ;;;*** | 19966 | ;;;*** |
| 19902 | 19967 | ||
| 19903 | ;;;### (autoloads nil "org-colview" "org/org-colview.el" (21607 54478 | 19968 | ;;;### (autoloads nil "org-colview" "org/org-colview.el" (21604 48550 |
| 19904 | ;;;;;; 800121 42000)) | 19969 | ;;;;;; 273934 224000)) |
| 19905 | ;;; Generated autoloads from org/org-colview.el | 19970 | ;;; Generated autoloads from org/org-colview.el |
| 19906 | 19971 | ||
| 19907 | (autoload 'org-columns-remove-overlays "org-colview" "\ | 19972 | (autoload 'org-columns-remove-overlays "org-colview" "\ |
| @@ -19964,8 +20029,8 @@ Turn on or update column view in the agenda. | |||
| 19964 | 20029 | ||
| 19965 | ;;;*** | 20030 | ;;;*** |
| 19966 | 20031 | ||
| 19967 | ;;;### (autoloads nil "org-compat" "org/org-compat.el" (21607 54478 | 20032 | ;;;### (autoloads nil "org-compat" "org/org-compat.el" (21604 48550 |
| 19968 | ;;;;;; 800121 42000)) | 20033 | ;;;;;; 273934 224000)) |
| 19969 | ;;; Generated autoloads from org/org-compat.el | 20034 | ;;; Generated autoloads from org/org-compat.el |
| 19970 | 20035 | ||
| 19971 | (autoload 'org-check-version "org-compat" "\ | 20036 | (autoload 'org-check-version "org-compat" "\ |
| @@ -19975,8 +20040,8 @@ Try very hard to provide sensible version strings. | |||
| 19975 | 20040 | ||
| 19976 | ;;;*** | 20041 | ;;;*** |
| 19977 | 20042 | ||
| 19978 | ;;;### (autoloads nil "org-macs" "org/org-macs.el" (21607 54478 800121 | 20043 | ;;;### (autoloads nil "org-macs" "org/org-macs.el" (21604 48550 277934 |
| 19979 | ;;;;;; 42000)) | 20044 | ;;;;;; 224000)) |
| 19980 | ;;; Generated autoloads from org/org-macs.el | 20045 | ;;; Generated autoloads from org/org-macs.el |
| 19981 | 20046 | ||
| 19982 | (autoload 'org-load-noerror-mustsuffix "org-macs" "\ | 20047 | (autoload 'org-load-noerror-mustsuffix "org-macs" "\ |
| @@ -19986,8 +20051,8 @@ Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX a | |||
| 19986 | 20051 | ||
| 19987 | ;;;*** | 20052 | ;;;*** |
| 19988 | 20053 | ||
| 19989 | ;;;### (autoloads nil "org-version" "org/org-version.el" (21607 54478 | 20054 | ;;;### (autoloads nil "org-version" "org/org-version.el" (21604 48550 |
| 19990 | ;;;;;; 800121 42000)) | 20055 | ;;;;;; 281934 224000)) |
| 19991 | ;;; Generated autoloads from org/org-version.el | 20056 | ;;; Generated autoloads from org/org-version.el |
| 19992 | 20057 | ||
| 19993 | (autoload 'org-release "org-version" "\ | 20058 | (autoload 'org-release "org-version" "\ |
| @@ -20004,8 +20069,8 @@ The Git version of org-mode. | |||
| 20004 | 20069 | ||
| 20005 | ;;;*** | 20070 | ;;;*** |
| 20006 | 20071 | ||
| 20007 | ;;;### (autoloads nil "outline" "outline.el" (21626 64704 823711 | 20072 | ;;;### (autoloads nil "outline" "outline.el" (21631 35966 895121 |
| 20008 | ;;;;;; 579000)) | 20073 | ;;;;;; 869000)) |
| 20009 | ;;; Generated autoloads from outline.el | 20074 | ;;; Generated autoloads from outline.el |
| 20010 | (put 'outline-regexp 'safe-local-variable 'stringp) | 20075 | (put 'outline-regexp 'safe-local-variable 'stringp) |
| 20011 | (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) | 20076 | (put 'outline-heading-end-regexp 'safe-local-variable 'stringp) |
| @@ -20066,8 +20131,8 @@ See the command `outline-mode' for more information on this mode. | |||
| 20066 | 20131 | ||
| 20067 | ;;;*** | 20132 | ;;;*** |
| 20068 | 20133 | ||
| 20069 | ;;;### (autoloads nil "package" "emacs-lisp/package.el" (21607 54477 | 20134 | ;;;### (autoloads nil "package" "emacs-lisp/package.el" (21651 20707 |
| 20070 | ;;;;;; 800124 118000)) | 20135 | ;;;;;; 168225 752000)) |
| 20071 | ;;; Generated autoloads from emacs-lisp/package.el | 20136 | ;;; Generated autoloads from emacs-lisp/package.el |
| 20072 | (push (purecopy '(package 1 0 1)) package--builtin-versions) | 20137 | (push (purecopy '(package 1 0 1)) package--builtin-versions) |
| 20073 | 20138 | ||
| @@ -20139,7 +20204,7 @@ The list is displayed in a buffer named `*Packages*'. | |||
| 20139 | 20204 | ||
| 20140 | ;;;*** | 20205 | ;;;*** |
| 20141 | 20206 | ||
| 20142 | ;;;### (autoloads nil "paren" "paren.el" (21607 54478 800121 42000)) | 20207 | ;;;### (autoloads nil "paren" "paren.el" (21604 48550 301934 225000)) |
| 20143 | ;;; Generated autoloads from paren.el | 20208 | ;;; Generated autoloads from paren.el |
| 20144 | 20209 | ||
| 20145 | (defvar show-paren-mode nil "\ | 20210 | (defvar show-paren-mode nil "\ |
| @@ -20165,8 +20230,8 @@ matching parenthesis is highlighted in `show-paren-style' after | |||
| 20165 | 20230 | ||
| 20166 | ;;;*** | 20231 | ;;;*** |
| 20167 | 20232 | ||
| 20168 | ;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (21607 | 20233 | ;;;### (autoloads nil "parse-time" "calendar/parse-time.el" (21604 |
| 20169 | ;;;;;; 54477 800124 118000)) | 20234 | ;;;;;; 48549 953934 212000)) |
| 20170 | ;;; Generated autoloads from calendar/parse-time.el | 20235 | ;;; Generated autoloads from calendar/parse-time.el |
| 20171 | (put 'parse-time-rules 'risky-local-variable t) | 20236 | (put 'parse-time-rules 'risky-local-variable t) |
| 20172 | 20237 | ||
| @@ -20179,8 +20244,8 @@ unknown are returned as nil. | |||
| 20179 | 20244 | ||
| 20180 | ;;;*** | 20245 | ;;;*** |
| 20181 | 20246 | ||
| 20182 | ;;;### (autoloads nil "pascal" "progmodes/pascal.el" (21607 54478 | 20247 | ;;;### (autoloads nil "pascal" "progmodes/pascal.el" (21604 48550 |
| 20183 | ;;;;;; 800121 42000)) | 20248 | ;;;;;; 349934 227000)) |
| 20184 | ;;; Generated autoloads from progmodes/pascal.el | 20249 | ;;; Generated autoloads from progmodes/pascal.el |
| 20185 | 20250 | ||
| 20186 | (autoload 'pascal-mode "pascal" "\ | 20251 | (autoload 'pascal-mode "pascal" "\ |
| @@ -20229,8 +20294,8 @@ See also the user variables `pascal-type-keywords', `pascal-start-keywords' and | |||
| 20229 | 20294 | ||
| 20230 | ;;;*** | 20295 | ;;;*** |
| 20231 | 20296 | ||
| 20232 | ;;;### (autoloads nil "password-cache" "password-cache.el" (21607 | 20297 | ;;;### (autoloads nil "password-cache" "password-cache.el" (21604 |
| 20233 | ;;;;;; 54478 800121 42000)) | 20298 | ;;;;;; 48550 301934 225000)) |
| 20234 | ;;; Generated autoloads from password-cache.el | 20299 | ;;; Generated autoloads from password-cache.el |
| 20235 | 20300 | ||
| 20236 | (defvar password-cache t "\ | 20301 | (defvar password-cache t "\ |
| @@ -20251,8 +20316,8 @@ Check if KEY is in the cache. | |||
| 20251 | 20316 | ||
| 20252 | ;;;*** | 20317 | ;;;*** |
| 20253 | 20318 | ||
| 20254 | ;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21607 54477 | 20319 | ;;;### (autoloads nil "pcase" "emacs-lisp/pcase.el" (21604 48550 |
| 20255 | ;;;;;; 800124 118000)) | 20320 | ;;;;;; 21934 214000)) |
| 20256 | ;;; Generated autoloads from emacs-lisp/pcase.el | 20321 | ;;; Generated autoloads from emacs-lisp/pcase.el |
| 20257 | 20322 | ||
| 20258 | (autoload 'pcase "pcase" "\ | 20323 | (autoload 'pcase "pcase" "\ |
| @@ -20334,8 +20399,8 @@ Define a pcase UPattern macro. | |||
| 20334 | 20399 | ||
| 20335 | ;;;*** | 20400 | ;;;*** |
| 20336 | 20401 | ||
| 20337 | ;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (21607 54478 800121 | 20402 | ;;;### (autoloads nil "pcmpl-cvs" "pcmpl-cvs.el" (21604 48550 301934 |
| 20338 | ;;;;;; 42000)) | 20403 | ;;;;;; 225000)) |
| 20339 | ;;; Generated autoloads from pcmpl-cvs.el | 20404 | ;;; Generated autoloads from pcmpl-cvs.el |
| 20340 | 20405 | ||
| 20341 | (autoload 'pcomplete/cvs "pcmpl-cvs" "\ | 20406 | (autoload 'pcomplete/cvs "pcmpl-cvs" "\ |
| @@ -20345,8 +20410,8 @@ Completion rules for the `cvs' command. | |||
| 20345 | 20410 | ||
| 20346 | ;;;*** | 20411 | ;;;*** |
| 20347 | 20412 | ||
| 20348 | ;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (21607 54478 800121 | 20413 | ;;;### (autoloads nil "pcmpl-gnu" "pcmpl-gnu.el" (21631 35966 895121 |
| 20349 | ;;;;;; 42000)) | 20414 | ;;;;;; 869000)) |
| 20350 | ;;; Generated autoloads from pcmpl-gnu.el | 20415 | ;;; Generated autoloads from pcmpl-gnu.el |
| 20351 | 20416 | ||
| 20352 | (autoload 'pcomplete/gzip "pcmpl-gnu" "\ | 20417 | (autoload 'pcomplete/gzip "pcmpl-gnu" "\ |
| @@ -20373,8 +20438,8 @@ Completion for the GNU tar utility. | |||
| 20373 | 20438 | ||
| 20374 | ;;;*** | 20439 | ;;;*** |
| 20375 | 20440 | ||
| 20376 | ;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (21607 54478 | 20441 | ;;;### (autoloads nil "pcmpl-linux" "pcmpl-linux.el" (21604 48550 |
| 20377 | ;;;;;; 800121 42000)) | 20442 | ;;;;;; 301934 225000)) |
| 20378 | ;;; Generated autoloads from pcmpl-linux.el | 20443 | ;;; Generated autoloads from pcmpl-linux.el |
| 20379 | 20444 | ||
| 20380 | (autoload 'pcomplete/kill "pcmpl-linux" "\ | 20445 | (autoload 'pcomplete/kill "pcmpl-linux" "\ |
| @@ -20394,8 +20459,8 @@ Completion for GNU/Linux `mount'. | |||
| 20394 | 20459 | ||
| 20395 | ;;;*** | 20460 | ;;;*** |
| 20396 | 20461 | ||
| 20397 | ;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (21607 54478 800121 | 20462 | ;;;### (autoloads nil "pcmpl-rpm" "pcmpl-rpm.el" (21604 48550 301934 |
| 20398 | ;;;;;; 42000)) | 20463 | ;;;;;; 225000)) |
| 20399 | ;;; Generated autoloads from pcmpl-rpm.el | 20464 | ;;; Generated autoloads from pcmpl-rpm.el |
| 20400 | 20465 | ||
| 20401 | (autoload 'pcomplete/rpm "pcmpl-rpm" "\ | 20466 | (autoload 'pcomplete/rpm "pcmpl-rpm" "\ |
| @@ -20405,8 +20470,8 @@ Completion for the `rpm' command. | |||
| 20405 | 20470 | ||
| 20406 | ;;;*** | 20471 | ;;;*** |
| 20407 | 20472 | ||
| 20408 | ;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (21607 54478 800121 | 20473 | ;;;### (autoloads nil "pcmpl-unix" "pcmpl-unix.el" (21604 48550 301934 |
| 20409 | ;;;;;; 42000)) | 20474 | ;;;;;; 225000)) |
| 20410 | ;;; Generated autoloads from pcmpl-unix.el | 20475 | ;;; Generated autoloads from pcmpl-unix.el |
| 20411 | 20476 | ||
| 20412 | (autoload 'pcomplete/cd "pcmpl-unix" "\ | 20477 | (autoload 'pcomplete/cd "pcmpl-unix" "\ |
| @@ -20461,8 +20526,8 @@ Includes files as well as host names followed by a colon. | |||
| 20461 | 20526 | ||
| 20462 | ;;;*** | 20527 | ;;;*** |
| 20463 | 20528 | ||
| 20464 | ;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (21607 54478 800121 | 20529 | ;;;### (autoloads nil "pcmpl-x" "pcmpl-x.el" (21604 48550 301934 |
| 20465 | ;;;;;; 42000)) | 20530 | ;;;;;; 225000)) |
| 20466 | ;;; Generated autoloads from pcmpl-x.el | 20531 | ;;; Generated autoloads from pcmpl-x.el |
| 20467 | 20532 | ||
| 20468 | (autoload 'pcomplete/tlmgr "pcmpl-x" "\ | 20533 | (autoload 'pcomplete/tlmgr "pcmpl-x" "\ |
| @@ -20486,8 +20551,8 @@ Completion for the `ag' command. | |||
| 20486 | 20551 | ||
| 20487 | ;;;*** | 20552 | ;;;*** |
| 20488 | 20553 | ||
| 20489 | ;;;### (autoloads nil "pcomplete" "pcomplete.el" (21607 54478 800121 | 20554 | ;;;### (autoloads nil "pcomplete" "pcomplete.el" (21604 48550 301934 |
| 20490 | ;;;;;; 42000)) | 20555 | ;;;;;; 225000)) |
| 20491 | ;;; Generated autoloads from pcomplete.el | 20556 | ;;; Generated autoloads from pcomplete.el |
| 20492 | 20557 | ||
| 20493 | (autoload 'pcomplete "pcomplete" "\ | 20558 | (autoload 'pcomplete "pcomplete" "\ |
| @@ -20544,7 +20609,7 @@ Setup `shell-mode' to use pcomplete. | |||
| 20544 | 20609 | ||
| 20545 | ;;;*** | 20610 | ;;;*** |
| 20546 | 20611 | ||
| 20547 | ;;;### (autoloads nil "pcvs" "vc/pcvs.el" (21607 54478 800121 42000)) | 20612 | ;;;### (autoloads nil "pcvs" "vc/pcvs.el" (21604 48550 429934 230000)) |
| 20548 | ;;; Generated autoloads from vc/pcvs.el | 20613 | ;;; Generated autoloads from vc/pcvs.el |
| 20549 | 20614 | ||
| 20550 | (autoload 'cvs-checkout "pcvs" "\ | 20615 | (autoload 'cvs-checkout "pcvs" "\ |
| @@ -20619,8 +20684,8 @@ The exact behavior is determined also by `cvs-dired-use-hook'." (when (stringp d | |||
| 20619 | 20684 | ||
| 20620 | ;;;*** | 20685 | ;;;*** |
| 20621 | 20686 | ||
| 20622 | ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (21607 54478 | 20687 | ;;;### (autoloads nil "pcvs-defs" "vc/pcvs-defs.el" (21604 48550 |
| 20623 | ;;;;;; 800121 42000)) | 20688 | ;;;;;; 429934 230000)) |
| 20624 | ;;; Generated autoloads from vc/pcvs-defs.el | 20689 | ;;; Generated autoloads from vc/pcvs-defs.el |
| 20625 | 20690 | ||
| 20626 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] `(menu-item ,(purecopy "Directory Status") cvs-status :help ,(purecopy "A more verbose status of a workarea"))) (define-key m [checkout] `(menu-item ,(purecopy "Checkout Module") cvs-checkout :help ,(purecopy "Check out a module from the repository"))) (define-key m [update] `(menu-item ,(purecopy "Update Directory") cvs-update :help ,(purecopy "Fetch updates from the repository"))) (define-key m [examine] `(menu-item ,(purecopy "Examine Directory") cvs-examine :help ,(purecopy "Examine the current state of a workarea"))) (fset 'cvs-global-menu m)) "\ | 20691 | (defvar cvs-global-menu (let ((m (make-sparse-keymap "PCL-CVS"))) (define-key m [status] `(menu-item ,(purecopy "Directory Status") cvs-status :help ,(purecopy "A more verbose status of a workarea"))) (define-key m [checkout] `(menu-item ,(purecopy "Checkout Module") cvs-checkout :help ,(purecopy "Check out a module from the repository"))) (define-key m [update] `(menu-item ,(purecopy "Update Directory") cvs-update :help ,(purecopy "Fetch updates from the repository"))) (define-key m [examine] `(menu-item ,(purecopy "Examine Directory") cvs-examine :help ,(purecopy "Examine the current state of a workarea"))) (fset 'cvs-global-menu m)) "\ |
| @@ -20628,8 +20693,8 @@ Global menu used by PCL-CVS.") | |||
| 20628 | 20693 | ||
| 20629 | ;;;*** | 20694 | ;;;*** |
| 20630 | 20695 | ||
| 20631 | ;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (21607 | 20696 | ;;;### (autoloads nil "perl-mode" "progmodes/perl-mode.el" (21604 |
| 20632 | ;;;;;; 54478 800121 42000)) | 20697 | ;;;;;; 48550 353934 227000)) |
| 20633 | ;;; Generated autoloads from progmodes/perl-mode.el | 20698 | ;;; Generated autoloads from progmodes/perl-mode.el |
| 20634 | (put 'perl-indent-level 'safe-local-variable 'integerp) | 20699 | (put 'perl-indent-level 'safe-local-variable 'integerp) |
| 20635 | (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) | 20700 | (put 'perl-continued-statement-offset 'safe-local-variable 'integerp) |
| @@ -20690,8 +20755,8 @@ Turning on Perl mode runs the normal hook `perl-mode-hook'. | |||
| 20690 | 20755 | ||
| 20691 | ;;;*** | 20756 | ;;;*** |
| 20692 | 20757 | ||
| 20693 | ;;;### (autoloads nil "picture" "textmodes/picture.el" (21607 54478 | 20758 | ;;;### (autoloads nil "picture" "textmodes/picture.el" (21604 48550 |
| 20694 | ;;;;;; 800121 42000)) | 20759 | ;;;;;; 397934 228000)) |
| 20695 | ;;; Generated autoloads from textmodes/picture.el | 20760 | ;;; Generated autoloads from textmodes/picture.el |
| 20696 | 20761 | ||
| 20697 | (autoload 'picture-mode "picture" "\ | 20762 | (autoload 'picture-mode "picture" "\ |
| @@ -20771,8 +20836,8 @@ they are not by default assigned to keys. | |||
| 20771 | 20836 | ||
| 20772 | ;;;*** | 20837 | ;;;*** |
| 20773 | 20838 | ||
| 20774 | ;;;### (autoloads nil "plstore" "gnus/plstore.el" (21607 54478 300138 | 20839 | ;;;### (autoloads nil "plstore" "gnus/plstore.el" (21604 48550 117934 |
| 20775 | ;;;;;; 641000)) | 20840 | ;;;;;; 218000)) |
| 20776 | ;;; Generated autoloads from gnus/plstore.el | 20841 | ;;; Generated autoloads from gnus/plstore.el |
| 20777 | 20842 | ||
| 20778 | (autoload 'plstore-open "plstore" "\ | 20843 | (autoload 'plstore-open "plstore" "\ |
| @@ -20787,8 +20852,8 @@ Major mode for editing PLSTORE files. | |||
| 20787 | 20852 | ||
| 20788 | ;;;*** | 20853 | ;;;*** |
| 20789 | 20854 | ||
| 20790 | ;;;### (autoloads nil "po" "textmodes/po.el" (21607 54478 800121 | 20855 | ;;;### (autoloads nil "po" "textmodes/po.el" (21604 48550 397934 |
| 20791 | ;;;;;; 42000)) | 20856 | ;;;;;; 228000)) |
| 20792 | ;;; Generated autoloads from textmodes/po.el | 20857 | ;;; Generated autoloads from textmodes/po.el |
| 20793 | 20858 | ||
| 20794 | (autoload 'po-find-file-coding-system "po" "\ | 20859 | (autoload 'po-find-file-coding-system "po" "\ |
| @@ -20799,7 +20864,7 @@ Called through `file-coding-system-alist', before the file is visited for real. | |||
| 20799 | 20864 | ||
| 20800 | ;;;*** | 20865 | ;;;*** |
| 20801 | 20866 | ||
| 20802 | ;;;### (autoloads nil "pong" "play/pong.el" (21607 54478 800121 42000)) | 20867 | ;;;### (autoloads nil "pong" "play/pong.el" (21604 48550 305934 225000)) |
| 20803 | ;;; Generated autoloads from play/pong.el | 20868 | ;;; Generated autoloads from play/pong.el |
| 20804 | 20869 | ||
| 20805 | (autoload 'pong "pong" "\ | 20870 | (autoload 'pong "pong" "\ |
| @@ -20815,7 +20880,7 @@ pong-mode keybindings:\\<pong-mode-map> | |||
| 20815 | 20880 | ||
| 20816 | ;;;*** | 20881 | ;;;*** |
| 20817 | 20882 | ||
| 20818 | ;;;### (autoloads nil "pop3" "gnus/pop3.el" (21619 5051 260148 536000)) | 20883 | ;;;### (autoloads nil "pop3" "gnus/pop3.el" (21631 35966 859121 868000)) |
| 20819 | ;;; Generated autoloads from gnus/pop3.el | 20884 | ;;; Generated autoloads from gnus/pop3.el |
| 20820 | 20885 | ||
| 20821 | (autoload 'pop3-movemail "pop3" "\ | 20886 | (autoload 'pop3-movemail "pop3" "\ |
| @@ -20826,8 +20891,8 @@ Use streaming commands. | |||
| 20826 | 20891 | ||
| 20827 | ;;;*** | 20892 | ;;;*** |
| 20828 | 20893 | ||
| 20829 | ;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21607 54477 800124 | 20894 | ;;;### (autoloads nil "pp" "emacs-lisp/pp.el" (21604 48550 21934 |
| 20830 | ;;;;;; 118000)) | 20895 | ;;;;;; 214000)) |
| 20831 | ;;; Generated autoloads from emacs-lisp/pp.el | 20896 | ;;; Generated autoloads from emacs-lisp/pp.el |
| 20832 | 20897 | ||
| 20833 | (autoload 'pp-to-string "pp" "\ | 20898 | (autoload 'pp-to-string "pp" "\ |
| @@ -20877,8 +20942,8 @@ Ignores leading comment characters. | |||
| 20877 | 20942 | ||
| 20878 | ;;;*** | 20943 | ;;;*** |
| 20879 | 20944 | ||
| 20880 | ;;;### (autoloads nil "printing" "printing.el" (21607 54478 800121 | 20945 | ;;;### (autoloads nil "printing" "printing.el" (21604 48550 309934 |
| 20881 | ;;;;;; 42000)) | 20946 | ;;;;;; 225000)) |
| 20882 | ;;; Generated autoloads from printing.el | 20947 | ;;; Generated autoloads from printing.el |
| 20883 | (push (purecopy '(printing 6 9 3)) package--builtin-versions) | 20948 | (push (purecopy '(printing 6 9 3)) package--builtin-versions) |
| 20884 | 20949 | ||
| @@ -21466,7 +21531,7 @@ are both set to t. | |||
| 21466 | 21531 | ||
| 21467 | ;;;*** | 21532 | ;;;*** |
| 21468 | 21533 | ||
| 21469 | ;;;### (autoloads nil "proced" "proced.el" (21609 55608 852266 580000)) | 21534 | ;;;### (autoloads nil "proced" "proced.el" (21631 35966 895121 869000)) |
| 21470 | ;;; Generated autoloads from proced.el | 21535 | ;;; Generated autoloads from proced.el |
| 21471 | 21536 | ||
| 21472 | (autoload 'proced "proced" "\ | 21537 | (autoload 'proced "proced" "\ |
| @@ -21484,8 +21549,8 @@ Proced buffers. | |||
| 21484 | 21549 | ||
| 21485 | ;;;*** | 21550 | ;;;*** |
| 21486 | 21551 | ||
| 21487 | ;;;### (autoloads nil "profiler" "profiler.el" (21607 54478 800121 | 21552 | ;;;### (autoloads nil "profiler" "profiler.el" (21604 48550 309934 |
| 21488 | ;;;;;; 42000)) | 21553 | ;;;;;; 225000)) |
| 21489 | ;;; Generated autoloads from profiler.el | 21554 | ;;; Generated autoloads from profiler.el |
| 21490 | 21555 | ||
| 21491 | (autoload 'profiler-start "profiler" "\ | 21556 | (autoload 'profiler-start "profiler" "\ |
| @@ -21513,8 +21578,8 @@ Open profile FILENAME. | |||
| 21513 | 21578 | ||
| 21514 | ;;;*** | 21579 | ;;;*** |
| 21515 | 21580 | ||
| 21516 | ;;;### (autoloads nil "prolog" "progmodes/prolog.el" (21607 54478 | 21581 | ;;;### (autoloads nil "prolog" "progmodes/prolog.el" (21604 48550 |
| 21517 | ;;;;;; 800121 42000)) | 21582 | ;;;;;; 353934 227000)) |
| 21518 | ;;; Generated autoloads from progmodes/prolog.el | 21583 | ;;; Generated autoloads from progmodes/prolog.el |
| 21519 | 21584 | ||
| 21520 | (autoload 'prolog-mode "prolog" "\ | 21585 | (autoload 'prolog-mode "prolog" "\ |
| @@ -21547,7 +21612,7 @@ With prefix argument ARG, restart the Prolog process if running before. | |||
| 21547 | 21612 | ||
| 21548 | ;;;*** | 21613 | ;;;*** |
| 21549 | 21614 | ||
| 21550 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (21607 54478 800121 42000)) | 21615 | ;;;### (autoloads nil "ps-bdf" "ps-bdf.el" (21604 48550 369934 227000)) |
| 21551 | ;;; Generated autoloads from ps-bdf.el | 21616 | ;;; Generated autoloads from ps-bdf.el |
| 21552 | 21617 | ||
| 21553 | (defvar bdf-directory-list (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "\ | 21618 | (defvar bdf-directory-list (if (memq system-type '(ms-dos windows-nt)) (list (expand-file-name "fonts/bdf" installation-directory)) '("/usr/local/share/emacs/fonts/bdf")) "\ |
| @@ -21558,8 +21623,8 @@ The default value is '(\"/usr/local/share/emacs/fonts/bdf\").") | |||
| 21558 | 21623 | ||
| 21559 | ;;;*** | 21624 | ;;;*** |
| 21560 | 21625 | ||
| 21561 | ;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (21607 54478 | 21626 | ;;;### (autoloads nil "ps-mode" "progmodes/ps-mode.el" (21604 48550 |
| 21562 | ;;;;;; 800121 42000)) | 21627 | ;;;;;; 353934 227000)) |
| 21563 | ;;; Generated autoloads from progmodes/ps-mode.el | 21628 | ;;; Generated autoloads from progmodes/ps-mode.el |
| 21564 | (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) | 21629 | (push (purecopy '(ps-mode 1 1 9)) package--builtin-versions) |
| 21565 | 21630 | ||
| @@ -21605,8 +21670,8 @@ Typing \\<ps-run-mode-map>\\[ps-run-goto-error] when the cursor is at the number | |||
| 21605 | 21670 | ||
| 21606 | ;;;*** | 21671 | ;;;*** |
| 21607 | 21672 | ||
| 21608 | ;;;### (autoloads nil "ps-print" "ps-print.el" (21607 54478 800121 | 21673 | ;;;### (autoloads nil "ps-print" "ps-print.el" (21604 48550 369934 |
| 21609 | ;;;;;; 42000)) | 21674 | ;;;;;; 227000)) |
| 21610 | ;;; Generated autoloads from ps-print.el | 21675 | ;;; Generated autoloads from ps-print.el |
| 21611 | (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) | 21676 | (push (purecopy '(ps-print 7 3 5)) package--builtin-versions) |
| 21612 | 21677 | ||
| @@ -21803,15 +21868,15 @@ If EXTENSION is any other symbol, it is ignored. | |||
| 21803 | 21868 | ||
| 21804 | ;;;*** | 21869 | ;;;*** |
| 21805 | 21870 | ||
| 21806 | ;;;### (autoloads nil "pulse" "cedet/pulse.el" (21607 54477 800124 | 21871 | ;;;### (autoloads nil "pulse" "cedet/pulse.el" (21640 32530 958334 |
| 21807 | ;;;;;; 118000)) | 21872 | ;;;;;; 457000)) |
| 21808 | ;;; Generated autoloads from cedet/pulse.el | 21873 | ;;; Generated autoloads from cedet/pulse.el |
| 21809 | (push (purecopy '(pulse 1 0)) package--builtin-versions) | 21874 | (push (purecopy '(pulse 1 0)) package--builtin-versions) |
| 21810 | 21875 | ||
| 21811 | ;;;*** | 21876 | ;;;*** |
| 21812 | 21877 | ||
| 21813 | ;;;### (autoloads nil "python" "progmodes/python.el" (21625 43838 | 21878 | ;;;### (autoloads nil "python" "progmodes/python.el" (21645 25761 |
| 21814 | ;;;;;; 980113 968000)) | 21879 | ;;;;;; 809186 828000)) |
| 21815 | ;;; Generated autoloads from progmodes/python.el | 21880 | ;;; Generated autoloads from progmodes/python.el |
| 21816 | (push (purecopy '(python 0 24 4)) package--builtin-versions) | 21881 | (push (purecopy '(python 0 24 4)) package--builtin-versions) |
| 21817 | 21882 | ||
| @@ -21846,7 +21911,7 @@ Major mode for editing Python files. | |||
| 21846 | 21911 | ||
| 21847 | ;;;*** | 21912 | ;;;*** |
| 21848 | 21913 | ||
| 21849 | ;;;### (autoloads nil "qp" "gnus/qp.el" (21607 54478 300138 641000)) | 21914 | ;;;### (autoloads nil "qp" "gnus/qp.el" (21604 48550 117934 218000)) |
| 21850 | ;;; Generated autoloads from gnus/qp.el | 21915 | ;;; Generated autoloads from gnus/qp.el |
| 21851 | 21916 | ||
| 21852 | (autoload 'quoted-printable-decode-region "qp" "\ | 21917 | (autoload 'quoted-printable-decode-region "qp" "\ |
| @@ -21865,8 +21930,8 @@ them into characters should be done separately. | |||
| 21865 | 21930 | ||
| 21866 | ;;;*** | 21931 | ;;;*** |
| 21867 | 21932 | ||
| 21868 | ;;;### (autoloads nil "quail" "international/quail.el" (21607 54478 | 21933 | ;;;### (autoloads nil "quail" "international/quail.el" (21604 48550 |
| 21869 | ;;;;;; 300138 641000)) | 21934 | ;;;;;; 141934 219000)) |
| 21870 | ;;; Generated autoloads from international/quail.el | 21935 | ;;; Generated autoloads from international/quail.el |
| 21871 | 21936 | ||
| 21872 | (autoload 'quail-title "quail" "\ | 21937 | (autoload 'quail-title "quail" "\ |
| @@ -22096,8 +22161,8 @@ of each directory. | |||
| 22096 | 22161 | ||
| 22097 | ;;;*** | 22162 | ;;;*** |
| 22098 | 22163 | ||
| 22099 | ;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21607 | 22164 | ;;;### (autoloads nil "quail/hangul" "leim/quail/hangul.el" (21604 |
| 22100 | ;;;;;; 54478 300138 641000)) | 22165 | ;;;;;; 48550 173934 220000)) |
| 22101 | ;;; Generated autoloads from leim/quail/hangul.el | 22166 | ;;; Generated autoloads from leim/quail/hangul.el |
| 22102 | 22167 | ||
| 22103 | (autoload 'hangul-input-method-activate "quail/hangul" "\ | 22168 | (autoload 'hangul-input-method-activate "quail/hangul" "\ |
| @@ -22110,7 +22175,7 @@ HELP-TEXT is a text set in `hangul-input-method-help-text'. | |||
| 22110 | ;;;*** | 22175 | ;;;*** |
| 22111 | 22176 | ||
| 22112 | ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" | 22177 | ;;;### (autoloads nil "quail/uni-input" "leim/quail/uni-input.el" |
| 22113 | ;;;;;; (21607 54478 300138 641000)) | 22178 | ;;;;;; (21604 48550 177934 220000)) |
| 22114 | ;;; Generated autoloads from leim/quail/uni-input.el | 22179 | ;;; Generated autoloads from leim/quail/uni-input.el |
| 22115 | 22180 | ||
| 22116 | (autoload 'ucs-input-activate "quail/uni-input" "\ | 22181 | (autoload 'ucs-input-activate "quail/uni-input" "\ |
| @@ -22124,8 +22189,8 @@ While this input method is active, the variable | |||
| 22124 | 22189 | ||
| 22125 | ;;;*** | 22190 | ;;;*** |
| 22126 | 22191 | ||
| 22127 | ;;;### (autoloads nil "quickurl" "net/quickurl.el" (21607 54478 300138 | 22192 | ;;;### (autoloads nil "quickurl" "net/quickurl.el" (21604 48550 221934 |
| 22128 | ;;;;;; 641000)) | 22193 | ;;;;;; 222000)) |
| 22129 | ;;; Generated autoloads from net/quickurl.el | 22194 | ;;; Generated autoloads from net/quickurl.el |
| 22130 | 22195 | ||
| 22131 | (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ | 22196 | (defconst quickurl-reread-hook-postfix "\n;; Local Variables:\n;; eval: (progn (require 'quickurl) (add-hook 'local-write-file-hooks (lambda () (quickurl-read) nil)))\n;; End:\n" "\ |
| @@ -22196,8 +22261,8 @@ Display `quickurl-list' as a formatted list using `quickurl-list-mode'. | |||
| 22196 | 22261 | ||
| 22197 | ;;;*** | 22262 | ;;;*** |
| 22198 | 22263 | ||
| 22199 | ;;;### (autoloads nil "rcirc" "net/rcirc.el" (21607 54478 300138 | 22264 | ;;;### (autoloads nil "rcirc" "net/rcirc.el" (21604 48550 221934 |
| 22200 | ;;;;;; 641000)) | 22265 | ;;;;;; 222000)) |
| 22201 | ;;; Generated autoloads from net/rcirc.el | 22266 | ;;; Generated autoloads from net/rcirc.el |
| 22202 | 22267 | ||
| 22203 | (autoload 'rcirc "rcirc" "\ | 22268 | (autoload 'rcirc "rcirc" "\ |
| @@ -22235,8 +22300,8 @@ if ARG is omitted or nil. | |||
| 22235 | 22300 | ||
| 22236 | ;;;*** | 22301 | ;;;*** |
| 22237 | 22302 | ||
| 22238 | ;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (21607 | 22303 | ;;;### (autoloads nil "re-builder" "emacs-lisp/re-builder.el" (21604 |
| 22239 | ;;;;;; 54477 800124 118000)) | 22304 | ;;;;;; 48550 21934 214000)) |
| 22240 | ;;; Generated autoloads from emacs-lisp/re-builder.el | 22305 | ;;; Generated autoloads from emacs-lisp/re-builder.el |
| 22241 | 22306 | ||
| 22242 | (defalias 'regexp-builder 're-builder) | 22307 | (defalias 'regexp-builder 're-builder) |
| @@ -22254,8 +22319,8 @@ matching parts of the target buffer will be highlighted. | |||
| 22254 | 22319 | ||
| 22255 | ;;;*** | 22320 | ;;;*** |
| 22256 | 22321 | ||
| 22257 | ;;;### (autoloads nil "recentf" "recentf.el" (21607 54478 800121 | 22322 | ;;;### (autoloads nil "recentf" "recentf.el" (21604 48550 369934 |
| 22258 | ;;;;;; 42000)) | 22323 | ;;;;;; 227000)) |
| 22259 | ;;; Generated autoloads from recentf.el | 22324 | ;;; Generated autoloads from recentf.el |
| 22260 | 22325 | ||
| 22261 | (defvar recentf-mode nil "\ | 22326 | (defvar recentf-mode nil "\ |
| @@ -22281,7 +22346,7 @@ were operated on recently. | |||
| 22281 | 22346 | ||
| 22282 | ;;;*** | 22347 | ;;;*** |
| 22283 | 22348 | ||
| 22284 | ;;;### (autoloads nil "rect" "rect.el" (21607 54478 800121 42000)) | 22349 | ;;;### (autoloads nil "rect" "rect.el" (21604 48550 369934 227000)) |
| 22285 | ;;; Generated autoloads from rect.el | 22350 | ;;; Generated autoloads from rect.el |
| 22286 | 22351 | ||
| 22287 | (autoload 'delete-rectangle "rect" "\ | 22352 | (autoload 'delete-rectangle "rect" "\ |
| @@ -22421,8 +22486,8 @@ Activates the region if needed. Only lasts until the region is deactivated. | |||
| 22421 | 22486 | ||
| 22422 | ;;;*** | 22487 | ;;;*** |
| 22423 | 22488 | ||
| 22424 | ;;;### (autoloads nil "refill" "textmodes/refill.el" (21607 54478 | 22489 | ;;;### (autoloads nil "refill" "textmodes/refill.el" (21604 48550 |
| 22425 | ;;;;;; 800121 42000)) | 22490 | ;;;;;; 401934 229000)) |
| 22426 | ;;; Generated autoloads from textmodes/refill.el | 22491 | ;;; Generated autoloads from textmodes/refill.el |
| 22427 | 22492 | ||
| 22428 | (autoload 'refill-mode "refill" "\ | 22493 | (autoload 'refill-mode "refill" "\ |
| @@ -22442,8 +22507,8 @@ For true \"word wrap\" behavior, use `visual-line-mode' instead. | |||
| 22442 | 22507 | ||
| 22443 | ;;;*** | 22508 | ;;;*** |
| 22444 | 22509 | ||
| 22445 | ;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21607 54478 | 22510 | ;;;### (autoloads nil "reftex" "textmodes/reftex.el" (21604 48550 |
| 22446 | ;;;;;; 800121 42000)) | 22511 | ;;;;;; 405934 229000)) |
| 22447 | ;;; Generated autoloads from textmodes/reftex.el | 22512 | ;;; Generated autoloads from textmodes/reftex.el |
| 22448 | (autoload 'reftex-citation "reftex-cite" nil t) | 22513 | (autoload 'reftex-citation "reftex-cite" nil t) |
| 22449 | (autoload 'reftex-all-document-files "reftex-parse") | 22514 | (autoload 'reftex-all-document-files "reftex-parse") |
| @@ -22496,8 +22561,8 @@ This enforces rescanning the buffer on next use. | |||
| 22496 | 22561 | ||
| 22497 | ;;;*** | 22562 | ;;;*** |
| 22498 | 22563 | ||
| 22499 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (21607 | 22564 | ;;;### (autoloads nil "reftex-vars" "textmodes/reftex-vars.el" (21604 |
| 22500 | ;;;;;; 54478 800121 42000)) | 22565 | ;;;;;; 48550 401934 229000)) |
| 22501 | ;;; Generated autoloads from textmodes/reftex-vars.el | 22566 | ;;; Generated autoloads from textmodes/reftex-vars.el |
| 22502 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22567 | (put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| 22503 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) | 22568 | (put 'reftex-fref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x)))) |
| @@ -22506,8 +22571,8 @@ This enforces rescanning the buffer on next use. | |||
| 22506 | 22571 | ||
| 22507 | ;;;*** | 22572 | ;;;*** |
| 22508 | 22573 | ||
| 22509 | ;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (21607 | 22574 | ;;;### (autoloads nil "regexp-opt" "emacs-lisp/regexp-opt.el" (21604 |
| 22510 | ;;;;;; 54477 800124 118000)) | 22575 | ;;;;;; 48550 21934 214000)) |
| 22511 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el | 22576 | ;;; Generated autoloads from emacs-lisp/regexp-opt.el |
| 22512 | 22577 | ||
| 22513 | (autoload 'regexp-opt "regexp-opt" "\ | 22578 | (autoload 'regexp-opt "regexp-opt" "\ |
| @@ -22536,15 +22601,15 @@ This means the number of non-shy regexp grouping constructs | |||
| 22536 | 22601 | ||
| 22537 | ;;;*** | 22602 | ;;;*** |
| 22538 | 22603 | ||
| 22539 | ;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (21607 54477 800124 | 22604 | ;;;### (autoloads nil "regi" "emacs-lisp/regi.el" (21604 48550 21934 |
| 22540 | ;;;;;; 118000)) | 22605 | ;;;;;; 214000)) |
| 22541 | ;;; Generated autoloads from emacs-lisp/regi.el | 22606 | ;;; Generated autoloads from emacs-lisp/regi.el |
| 22542 | (push (purecopy '(regi 1 8)) package--builtin-versions) | 22607 | (push (purecopy '(regi 1 8)) package--builtin-versions) |
| 22543 | 22608 | ||
| 22544 | ;;;*** | 22609 | ;;;*** |
| 22545 | 22610 | ||
| 22546 | ;;;### (autoloads nil "remember" "textmodes/remember.el" (21607 54478 | 22611 | ;;;### (autoloads nil "remember" "textmodes/remember.el" (21604 48550 |
| 22547 | ;;;;;; 800121 42000)) | 22612 | ;;;;;; 405934 229000)) |
| 22548 | ;;; Generated autoloads from textmodes/remember.el | 22613 | ;;; Generated autoloads from textmodes/remember.el |
| 22549 | (push (purecopy '(remember 2 0)) package--builtin-versions) | 22614 | (push (purecopy '(remember 2 0)) package--builtin-versions) |
| 22550 | 22615 | ||
| @@ -22598,7 +22663,7 @@ to turn the *scratch* buffer into your notes buffer. | |||
| 22598 | 22663 | ||
| 22599 | ;;;*** | 22664 | ;;;*** |
| 22600 | 22665 | ||
| 22601 | ;;;### (autoloads nil "repeat" "repeat.el" (21607 54478 800121 42000)) | 22666 | ;;;### (autoloads nil "repeat" "repeat.el" (21604 48550 373934 228000)) |
| 22602 | ;;; Generated autoloads from repeat.el | 22667 | ;;; Generated autoloads from repeat.el |
| 22603 | (push (purecopy '(repeat 0 51)) package--builtin-versions) | 22668 | (push (purecopy '(repeat 0 51)) package--builtin-versions) |
| 22604 | 22669 | ||
| @@ -22621,8 +22686,8 @@ recently executed command not bound to an input event\". | |||
| 22621 | 22686 | ||
| 22622 | ;;;*** | 22687 | ;;;*** |
| 22623 | 22688 | ||
| 22624 | ;;;### (autoloads nil "reporter" "mail/reporter.el" (21607 54478 | 22689 | ;;;### (autoloads nil "reporter" "mail/reporter.el" (21604 48550 |
| 22625 | ;;;;;; 300138 641000)) | 22690 | ;;;;;; 185934 221000)) |
| 22626 | ;;; Generated autoloads from mail/reporter.el | 22691 | ;;; Generated autoloads from mail/reporter.el |
| 22627 | 22692 | ||
| 22628 | (autoload 'reporter-submit-bug-report "reporter" "\ | 22693 | (autoload 'reporter-submit-bug-report "reporter" "\ |
| @@ -22653,8 +22718,8 @@ mail-sending package is used for editing and sending the message. | |||
| 22653 | 22718 | ||
| 22654 | ;;;*** | 22719 | ;;;*** |
| 22655 | 22720 | ||
| 22656 | ;;;### (autoloads nil "reposition" "reposition.el" (21607 54478 800121 | 22721 | ;;;### (autoloads nil "reposition" "reposition.el" (21604 48550 373934 |
| 22657 | ;;;;;; 42000)) | 22722 | ;;;;;; 228000)) |
| 22658 | ;;; Generated autoloads from reposition.el | 22723 | ;;; Generated autoloads from reposition.el |
| 22659 | 22724 | ||
| 22660 | (autoload 'reposition-window "reposition" "\ | 22725 | (autoload 'reposition-window "reposition" "\ |
| @@ -22680,7 +22745,7 @@ first comment line visible (if point is in a comment). | |||
| 22680 | 22745 | ||
| 22681 | ;;;*** | 22746 | ;;;*** |
| 22682 | 22747 | ||
| 22683 | ;;;### (autoloads nil "reveal" "reveal.el" (21607 54478 800121 42000)) | 22748 | ;;;### (autoloads nil "reveal" "reveal.el" (21604 48550 373934 228000)) |
| 22684 | ;;; Generated autoloads from reveal.el | 22749 | ;;; Generated autoloads from reveal.el |
| 22685 | 22750 | ||
| 22686 | (autoload 'reveal-mode "reveal" "\ | 22751 | (autoload 'reveal-mode "reveal" "\ |
| @@ -22715,8 +22780,8 @@ the mode if ARG is omitted or nil. | |||
| 22715 | 22780 | ||
| 22716 | ;;;*** | 22781 | ;;;*** |
| 22717 | 22782 | ||
| 22718 | ;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (21607 54477 800124 | 22783 | ;;;### (autoloads nil "ring" "emacs-lisp/ring.el" (21604 48550 21934 |
| 22719 | ;;;;;; 118000)) | 22784 | ;;;;;; 214000)) |
| 22720 | ;;; Generated autoloads from emacs-lisp/ring.el | 22785 | ;;; Generated autoloads from emacs-lisp/ring.el |
| 22721 | 22786 | ||
| 22722 | (autoload 'ring-p "ring" "\ | 22787 | (autoload 'ring-p "ring" "\ |
| @@ -22731,8 +22796,8 @@ Make a ring that can contain SIZE elements. | |||
| 22731 | 22796 | ||
| 22732 | ;;;*** | 22797 | ;;;*** |
| 22733 | 22798 | ||
| 22734 | ;;;### (autoloads nil "rlogin" "net/rlogin.el" (21607 54478 300138 | 22799 | ;;;### (autoloads nil "rlogin" "net/rlogin.el" (21604 48550 221934 |
| 22735 | ;;;;;; 641000)) | 22800 | ;;;;;; 222000)) |
| 22736 | ;;; Generated autoloads from net/rlogin.el | 22801 | ;;; Generated autoloads from net/rlogin.el |
| 22737 | 22802 | ||
| 22738 | (autoload 'rlogin "rlogin" "\ | 22803 | (autoload 'rlogin "rlogin" "\ |
| @@ -22776,8 +22841,8 @@ variable. | |||
| 22776 | 22841 | ||
| 22777 | ;;;*** | 22842 | ;;;*** |
| 22778 | 22843 | ||
| 22779 | ;;;### (autoloads nil "rmail" "mail/rmail.el" (21607 54478 300138 | 22844 | ;;;### (autoloads nil "rmail" "mail/rmail.el" (21604 48550 185934 |
| 22780 | ;;;;;; 641000)) | 22845 | ;;;;;; 221000)) |
| 22781 | ;;; Generated autoloads from mail/rmail.el | 22846 | ;;; Generated autoloads from mail/rmail.el |
| 22782 | 22847 | ||
| 22783 | (defvar rmail-file-name (purecopy "~/RMAIL") "\ | 22848 | (defvar rmail-file-name (purecopy "~/RMAIL") "\ |
| @@ -22974,8 +23039,8 @@ Set PASSWORD to be used for retrieving mail from a POP or IMAP server. | |||
| 22974 | 23039 | ||
| 22975 | ;;;*** | 23040 | ;;;*** |
| 22976 | 23041 | ||
| 22977 | ;;;### (autoloads nil "rmailout" "mail/rmailout.el" (21607 54478 | 23042 | ;;;### (autoloads nil "rmailout" "mail/rmailout.el" (21604 48550 |
| 22978 | ;;;;;; 300138 641000)) | 23043 | ;;;;;; 185934 221000)) |
| 22979 | ;;; Generated autoloads from mail/rmailout.el | 23044 | ;;; Generated autoloads from mail/rmailout.el |
| 22980 | (put 'rmail-output-file-alist 'risky-local-variable t) | 23045 | (put 'rmail-output-file-alist 'risky-local-variable t) |
| 22981 | 23046 | ||
| @@ -23039,8 +23104,8 @@ than appending to it. Deletes the message after writing if | |||
| 23039 | 23104 | ||
| 23040 | ;;;*** | 23105 | ;;;*** |
| 23041 | 23106 | ||
| 23042 | ;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (21607 54478 | 23107 | ;;;### (autoloads nil "rng-cmpct" "nxml/rng-cmpct.el" (21604 48550 |
| 23043 | ;;;;;; 300138 641000)) | 23108 | ;;;;;; 237934 223000)) |
| 23044 | ;;; Generated autoloads from nxml/rng-cmpct.el | 23109 | ;;; Generated autoloads from nxml/rng-cmpct.el |
| 23045 | 23110 | ||
| 23046 | (autoload 'rng-c-load-schema "rng-cmpct" "\ | 23111 | (autoload 'rng-c-load-schema "rng-cmpct" "\ |
| @@ -23051,8 +23116,8 @@ Return a pattern. | |||
| 23051 | 23116 | ||
| 23052 | ;;;*** | 23117 | ;;;*** |
| 23053 | 23118 | ||
| 23054 | ;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (21607 54478 | 23119 | ;;;### (autoloads nil "rng-nxml" "nxml/rng-nxml.el" (21604 48550 |
| 23055 | ;;;;;; 300138 641000)) | 23120 | ;;;;;; 241934 223000)) |
| 23056 | ;;; Generated autoloads from nxml/rng-nxml.el | 23121 | ;;; Generated autoloads from nxml/rng-nxml.el |
| 23057 | 23122 | ||
| 23058 | (autoload 'rng-nxml-mode-init "rng-nxml" "\ | 23123 | (autoload 'rng-nxml-mode-init "rng-nxml" "\ |
| @@ -23064,8 +23129,8 @@ Validation will be enabled if `rng-nxml-auto-validate-flag' is non-nil. | |||
| 23064 | 23129 | ||
| 23065 | ;;;*** | 23130 | ;;;*** |
| 23066 | 23131 | ||
| 23067 | ;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (21607 54478 | 23132 | ;;;### (autoloads nil "rng-valid" "nxml/rng-valid.el" (21604 48550 |
| 23068 | ;;;;;; 300138 641000)) | 23133 | ;;;;;; 241934 223000)) |
| 23069 | ;;; Generated autoloads from nxml/rng-valid.el | 23134 | ;;; Generated autoloads from nxml/rng-valid.el |
| 23070 | 23135 | ||
| 23071 | (autoload 'rng-validate-mode "rng-valid" "\ | 23136 | (autoload 'rng-validate-mode "rng-valid" "\ |
| @@ -23095,8 +23160,8 @@ to use for finding the schema. | |||
| 23095 | 23160 | ||
| 23096 | ;;;*** | 23161 | ;;;*** |
| 23097 | 23162 | ||
| 23098 | ;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (21607 54478 300138 | 23163 | ;;;### (autoloads nil "rng-xsd" "nxml/rng-xsd.el" (21604 48550 241934 |
| 23099 | ;;;;;; 641000)) | 23164 | ;;;;;; 223000)) |
| 23100 | ;;; Generated autoloads from nxml/rng-xsd.el | 23165 | ;;; Generated autoloads from nxml/rng-xsd.el |
| 23101 | 23166 | ||
| 23102 | (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) | 23167 | (put 'http://www\.w3\.org/2001/XMLSchema-datatypes 'rng-dt-compile 'rng-xsd-compile) |
| @@ -23123,8 +23188,8 @@ must be equal. | |||
| 23123 | 23188 | ||
| 23124 | ;;;*** | 23189 | ;;;*** |
| 23125 | 23190 | ||
| 23126 | ;;;### (autoloads nil "robin" "international/robin.el" (21607 54478 | 23191 | ;;;### (autoloads nil "robin" "international/robin.el" (21604 48550 |
| 23127 | ;;;;;; 300138 641000)) | 23192 | ;;;;;; 141934 219000)) |
| 23128 | ;;; Generated autoloads from international/robin.el | 23193 | ;;; Generated autoloads from international/robin.el |
| 23129 | 23194 | ||
| 23130 | (autoload 'robin-define-package "robin" "\ | 23195 | (autoload 'robin-define-package "robin" "\ |
| @@ -23156,7 +23221,7 @@ Start using robin package NAME, which is a string. | |||
| 23156 | 23221 | ||
| 23157 | ;;;*** | 23222 | ;;;*** |
| 23158 | 23223 | ||
| 23159 | ;;;### (autoloads nil "rot13" "rot13.el" (21607 54478 800121 42000)) | 23224 | ;;;### (autoloads nil "rot13" "rot13.el" (21604 48550 373934 228000)) |
| 23160 | ;;; Generated autoloads from rot13.el | 23225 | ;;; Generated autoloads from rot13.el |
| 23161 | 23226 | ||
| 23162 | (autoload 'rot13 "rot13" "\ | 23227 | (autoload 'rot13 "rot13" "\ |
| @@ -23193,8 +23258,8 @@ Toggle the use of ROT13 encoding for the current window. | |||
| 23193 | 23258 | ||
| 23194 | ;;;*** | 23259 | ;;;*** |
| 23195 | 23260 | ||
| 23196 | ;;;### (autoloads nil "rst" "textmodes/rst.el" (21607 54478 800121 | 23261 | ;;;### (autoloads nil "rst" "textmodes/rst.el" (21604 48550 405934 |
| 23197 | ;;;;;; 42000)) | 23262 | ;;;;;; 229000)) |
| 23198 | ;;; Generated autoloads from textmodes/rst.el | 23263 | ;;; Generated autoloads from textmodes/rst.el |
| 23199 | (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) | 23264 | (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode))) |
| 23200 | 23265 | ||
| @@ -23224,8 +23289,8 @@ for modes derived from Text mode, like Mail mode. | |||
| 23224 | 23289 | ||
| 23225 | ;;;*** | 23290 | ;;;*** |
| 23226 | 23291 | ||
| 23227 | ;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21607 | 23292 | ;;;### (autoloads nil "ruby-mode" "progmodes/ruby-mode.el" (21659 |
| 23228 | ;;;;;; 54478 800121 42000)) | 23293 | ;;;;;; 61733 222949 164000)) |
| 23229 | ;;; Generated autoloads from progmodes/ruby-mode.el | 23294 | ;;; Generated autoloads from progmodes/ruby-mode.el |
| 23230 | (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) | 23295 | (push (purecopy '(ruby-mode 1 2)) package--builtin-versions) |
| 23231 | 23296 | ||
| @@ -23236,14 +23301,14 @@ Major mode for editing Ruby code. | |||
| 23236 | 23301 | ||
| 23237 | \(fn)" t nil) | 23302 | \(fn)" t nil) |
| 23238 | 23303 | ||
| 23239 | (add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\." "rb\\|ru\\|rake\\|thor" "\\|jbuilder\\|gemspec\\|podspec" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode)) | 23304 | (add-to-list 'auto-mode-alist (cons (purecopy (concat "\\(?:\\." "rb\\|ru\\|rake\\|thor" "\\|jbuilder\\|rabl\\|gemspec\\|podspec" "\\|/" "\\(?:Gem\\|Rake\\|Cap\\|Thor" "\\|Puppet\\|Berks" "\\|Vagrant\\|Guard\\|Pod\\)file" "\\)\\'")) 'ruby-mode)) |
| 23240 | 23305 | ||
| 23241 | (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode))) | 23306 | (dolist (name (list "ruby" "rbx" "jruby" "ruby1.9" "ruby1.8")) (add-to-list 'interpreter-mode-alist (cons (purecopy name) 'ruby-mode))) |
| 23242 | 23307 | ||
| 23243 | ;;;*** | 23308 | ;;;*** |
| 23244 | 23309 | ||
| 23245 | ;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (21607 54478 800121 | 23310 | ;;;### (autoloads nil "ruler-mode" "ruler-mode.el" (21604 48550 373934 |
| 23246 | ;;;;;; 42000)) | 23311 | ;;;;;; 228000)) |
| 23247 | ;;; Generated autoloads from ruler-mode.el | 23312 | ;;; Generated autoloads from ruler-mode.el |
| 23248 | (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) | 23313 | (push (purecopy '(ruler-mode 1 6)) package--builtin-versions) |
| 23249 | 23314 | ||
| @@ -23261,8 +23326,8 @@ if ARG is omitted or nil. | |||
| 23261 | 23326 | ||
| 23262 | ;;;*** | 23327 | ;;;*** |
| 23263 | 23328 | ||
| 23264 | ;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (21607 54477 800124 | 23329 | ;;;### (autoloads nil "rx" "emacs-lisp/rx.el" (21604 48550 25934 |
| 23265 | ;;;;;; 118000)) | 23330 | ;;;;;; 215000)) |
| 23266 | ;;; Generated autoloads from emacs-lisp/rx.el | 23331 | ;;; Generated autoloads from emacs-lisp/rx.el |
| 23267 | 23332 | ||
| 23268 | (autoload 'rx-to-string "rx" "\ | 23333 | (autoload 'rx-to-string "rx" "\ |
| @@ -23573,15 +23638,15 @@ enclosed in `(and ...)'. | |||
| 23573 | 23638 | ||
| 23574 | ;;;*** | 23639 | ;;;*** |
| 23575 | 23640 | ||
| 23576 | ;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (21607 54478 | 23641 | ;;;### (autoloads nil "sasl-ntlm" "net/sasl-ntlm.el" (21604 48550 |
| 23577 | ;;;;;; 300138 641000)) | 23642 | ;;;;;; 221934 222000)) |
| 23578 | ;;; Generated autoloads from net/sasl-ntlm.el | 23643 | ;;; Generated autoloads from net/sasl-ntlm.el |
| 23579 | (push (purecopy '(sasl 1 0)) package--builtin-versions) | 23644 | (push (purecopy '(sasl 1 0)) package--builtin-versions) |
| 23580 | 23645 | ||
| 23581 | ;;;*** | 23646 | ;;;*** |
| 23582 | 23647 | ||
| 23583 | ;;;### (autoloads nil "savehist" "savehist.el" (21607 54478 800121 | 23648 | ;;;### (autoloads nil "savehist" "savehist.el" (21604 48550 373934 |
| 23584 | ;;;;;; 42000)) | 23649 | ;;;;;; 228000)) |
| 23585 | ;;; Generated autoloads from savehist.el | 23650 | ;;; Generated autoloads from savehist.el |
| 23586 | (push (purecopy '(savehist 24)) package--builtin-versions) | 23651 | (push (purecopy '(savehist 24)) package--builtin-versions) |
| 23587 | 23652 | ||
| @@ -23613,8 +23678,8 @@ histories, which is probably undesirable. | |||
| 23613 | 23678 | ||
| 23614 | ;;;*** | 23679 | ;;;*** |
| 23615 | 23680 | ||
| 23616 | ;;;### (autoloads nil "scheme" "progmodes/scheme.el" (21607 54478 | 23681 | ;;;### (autoloads nil "scheme" "progmodes/scheme.el" (21604 48550 |
| 23617 | ;;;;;; 800121 42000)) | 23682 | ;;;;;; 353934 227000)) |
| 23618 | ;;; Generated autoloads from progmodes/scheme.el | 23683 | ;;; Generated autoloads from progmodes/scheme.el |
| 23619 | 23684 | ||
| 23620 | (autoload 'scheme-mode "scheme" "\ | 23685 | (autoload 'scheme-mode "scheme" "\ |
| @@ -23653,8 +23718,8 @@ that variable's value is a string. | |||
| 23653 | 23718 | ||
| 23654 | ;;;*** | 23719 | ;;;*** |
| 23655 | 23720 | ||
| 23656 | ;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (21607 54478 | 23721 | ;;;### (autoloads nil "score-mode" "gnus/score-mode.el" (21604 48550 |
| 23657 | ;;;;;; 300138 641000)) | 23722 | ;;;;;; 121934 218000)) |
| 23658 | ;;; Generated autoloads from gnus/score-mode.el | 23723 | ;;; Generated autoloads from gnus/score-mode.el |
| 23659 | 23724 | ||
| 23660 | (autoload 'gnus-score-mode "score-mode" "\ | 23725 | (autoload 'gnus-score-mode "score-mode" "\ |
| @@ -23667,8 +23732,8 @@ This mode is an extended emacs-lisp mode. | |||
| 23667 | 23732 | ||
| 23668 | ;;;*** | 23733 | ;;;*** |
| 23669 | 23734 | ||
| 23670 | ;;;### (autoloads nil "scroll-all" "scroll-all.el" (21607 54478 800121 | 23735 | ;;;### (autoloads nil "scroll-all" "scroll-all.el" (21604 48550 373934 |
| 23671 | ;;;;;; 42000)) | 23736 | ;;;;;; 228000)) |
| 23672 | ;;; Generated autoloads from scroll-all.el | 23737 | ;;; Generated autoloads from scroll-all.el |
| 23673 | 23738 | ||
| 23674 | (defvar scroll-all-mode nil "\ | 23739 | (defvar scroll-all-mode nil "\ |
| @@ -23693,8 +23758,8 @@ one window apply to all visible windows in the same frame. | |||
| 23693 | 23758 | ||
| 23694 | ;;;*** | 23759 | ;;;*** |
| 23695 | 23760 | ||
| 23696 | ;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (21607 54478 | 23761 | ;;;### (autoloads nil "scroll-lock" "scroll-lock.el" (21604 48550 |
| 23697 | ;;;;;; 800121 42000)) | 23762 | ;;;;;; 373934 228000)) |
| 23698 | ;;; Generated autoloads from scroll-lock.el | 23763 | ;;; Generated autoloads from scroll-lock.el |
| 23699 | 23764 | ||
| 23700 | (autoload 'scroll-lock-mode "scroll-lock" "\ | 23765 | (autoload 'scroll-lock-mode "scroll-lock" "\ |
| @@ -23710,16 +23775,16 @@ vertically fixed relative to window boundaries during scrolling. | |||
| 23710 | 23775 | ||
| 23711 | ;;;*** | 23776 | ;;;*** |
| 23712 | 23777 | ||
| 23713 | ;;;### (autoloads nil "secrets" "net/secrets.el" (21607 54478 300138 | 23778 | ;;;### (autoloads nil "secrets" "net/secrets.el" (21604 48550 221934 |
| 23714 | ;;;;;; 641000)) | 23779 | ;;;;;; 222000)) |
| 23715 | ;;; Generated autoloads from net/secrets.el | 23780 | ;;; Generated autoloads from net/secrets.el |
| 23716 | (when (featurep 'dbusbind) | 23781 | (when (featurep 'dbusbind) |
| 23717 | (autoload 'secrets-show-secrets "secrets" nil t)) | 23782 | (autoload 'secrets-show-secrets "secrets" nil t)) |
| 23718 | 23783 | ||
| 23719 | ;;;*** | 23784 | ;;;*** |
| 23720 | 23785 | ||
| 23721 | ;;;### (autoloads nil "semantic" "cedet/semantic.el" (21609 55608 | 23786 | ;;;### (autoloads nil "semantic" "cedet/semantic.el" (21645 25875 |
| 23722 | ;;;;;; 852266 580000)) | 23787 | ;;;;;; 821189 881000)) |
| 23723 | ;;; Generated autoloads from cedet/semantic.el | 23788 | ;;; Generated autoloads from cedet/semantic.el |
| 23724 | (push (purecopy '(semantic 2 2)) package--builtin-versions) | 23789 | (push (purecopy '(semantic 2 2)) package--builtin-versions) |
| 23725 | 23790 | ||
| @@ -23777,7 +23842,7 @@ Semantic mode. | |||
| 23777 | ;;;*** | 23842 | ;;;*** |
| 23778 | 23843 | ||
| 23779 | ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" | 23844 | ;;;### (autoloads nil "semantic/bovine/grammar" "cedet/semantic/bovine/grammar.el" |
| 23780 | ;;;;;; (21607 54477 800124 118000)) | 23845 | ;;;;;; (21604 48549 969934 213000)) |
| 23781 | ;;; Generated autoloads from cedet/semantic/bovine/grammar.el | 23846 | ;;; Generated autoloads from cedet/semantic/bovine/grammar.el |
| 23782 | 23847 | ||
| 23783 | (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ | 23848 | (autoload 'bovine-grammar-mode "semantic/bovine/grammar" "\ |
| @@ -23788,7 +23853,7 @@ Major mode for editing Bovine grammars. | |||
| 23788 | ;;;*** | 23853 | ;;;*** |
| 23789 | 23854 | ||
| 23790 | ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" | 23855 | ;;;### (autoloads nil "semantic/wisent/grammar" "cedet/semantic/wisent/grammar.el" |
| 23791 | ;;;;;; (21607 54477 800124 118000)) | 23856 | ;;;;;; (21604 48549 981934 213000)) |
| 23792 | ;;; Generated autoloads from cedet/semantic/wisent/grammar.el | 23857 | ;;; Generated autoloads from cedet/semantic/wisent/grammar.el |
| 23793 | 23858 | ||
| 23794 | (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ | 23859 | (autoload 'wisent-grammar-mode "semantic/wisent/grammar" "\ |
| @@ -23798,8 +23863,8 @@ Major mode for editing Wisent grammars. | |||
| 23798 | 23863 | ||
| 23799 | ;;;*** | 23864 | ;;;*** |
| 23800 | 23865 | ||
| 23801 | ;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21607 54478 | 23866 | ;;;### (autoloads nil "sendmail" "mail/sendmail.el" (21604 48550 |
| 23802 | ;;;;;; 300138 641000)) | 23867 | ;;;;;; 189934 221000)) |
| 23803 | ;;; Generated autoloads from mail/sendmail.el | 23868 | ;;; Generated autoloads from mail/sendmail.el |
| 23804 | 23869 | ||
| 23805 | (defvar mail-from-style 'default "\ | 23870 | (defvar mail-from-style 'default "\ |
| @@ -24080,7 +24145,14 @@ Like `mail' command, but display mail buffer in another frame. | |||
| 24080 | 24145 | ||
| 24081 | ;;;*** | 24146 | ;;;*** |
| 24082 | 24147 | ||
| 24083 | ;;;### (autoloads nil "server" "server.el" (21607 54478 800121 42000)) | 24148 | ;;;### (autoloads nil "seq" "emacs-lisp/seq.el" (21648 55877 412874 |
| 24149 | ;;;;;; 916000)) | ||
| 24150 | ;;; Generated autoloads from emacs-lisp/seq.el | ||
| 24151 | (push (purecopy '(seq 1 0)) package--builtin-versions) | ||
| 24152 | |||
| 24153 | ;;;*** | ||
| 24154 | |||
| 24155 | ;;;### (autoloads nil "server" "server.el" (21604 48550 373934 228000)) | ||
| 24084 | ;;; Generated autoloads from server.el | 24156 | ;;; Generated autoloads from server.el |
| 24085 | 24157 | ||
| 24086 | (put 'server-host 'risky-local-variable t) | 24158 | (put 'server-host 'risky-local-variable t) |
| @@ -24147,7 +24219,7 @@ only these files will be asked to be saved. | |||
| 24147 | 24219 | ||
| 24148 | ;;;*** | 24220 | ;;;*** |
| 24149 | 24221 | ||
| 24150 | ;;;### (autoloads nil "ses" "ses.el" (21607 54478 800121 42000)) | 24222 | ;;;### (autoloads nil "ses" "ses.el" (21604 48550 377934 228000)) |
| 24151 | ;;; Generated autoloads from ses.el | 24223 | ;;; Generated autoloads from ses.el |
| 24152 | 24224 | ||
| 24153 | (autoload 'ses-mode "ses" "\ | 24225 | (autoload 'ses-mode "ses" "\ |
| @@ -24191,8 +24263,8 @@ formula: | |||
| 24191 | 24263 | ||
| 24192 | ;;;*** | 24264 | ;;;*** |
| 24193 | 24265 | ||
| 24194 | ;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21623 | 24266 | ;;;### (autoloads nil "sgml-mode" "textmodes/sgml-mode.el" (21631 |
| 24195 | ;;;;;; 2108 292281 129000)) | 24267 | ;;;;;; 35966 915121 870000)) |
| 24196 | ;;; Generated autoloads from textmodes/sgml-mode.el | 24268 | ;;; Generated autoloads from textmodes/sgml-mode.el |
| 24197 | 24269 | ||
| 24198 | (autoload 'sgml-mode "sgml-mode" "\ | 24270 | (autoload 'sgml-mode "sgml-mode" "\ |
| @@ -24257,8 +24329,8 @@ To work around that, do: | |||
| 24257 | 24329 | ||
| 24258 | ;;;*** | 24330 | ;;;*** |
| 24259 | 24331 | ||
| 24260 | ;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21607 | 24332 | ;;;### (autoloads nil "sh-script" "progmodes/sh-script.el" (21637 |
| 24261 | ;;;;;; 54478 800121 42000)) | 24333 | ;;;;;; 50476 679217 121000)) |
| 24262 | ;;; Generated autoloads from progmodes/sh-script.el | 24334 | ;;; Generated autoloads from progmodes/sh-script.el |
| 24263 | (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) | 24335 | (push (purecopy '(sh-script 2 0 6)) package--builtin-versions) |
| 24264 | (put 'sh-shell 'safe-local-variable 'symbolp) | 24336 | (put 'sh-shell 'safe-local-variable 'symbolp) |
| @@ -24322,8 +24394,8 @@ with your script for an edit-interpret-debug cycle. | |||
| 24322 | 24394 | ||
| 24323 | ;;;*** | 24395 | ;;;*** |
| 24324 | 24396 | ||
| 24325 | ;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (21607 54477 | 24397 | ;;;### (autoloads nil "shadow" "emacs-lisp/shadow.el" (21604 48550 |
| 24326 | ;;;;;; 800124 118000)) | 24398 | ;;;;;; 25934 215000)) |
| 24327 | ;;; Generated autoloads from emacs-lisp/shadow.el | 24399 | ;;; Generated autoloads from emacs-lisp/shadow.el |
| 24328 | 24400 | ||
| 24329 | (autoload 'list-load-path-shadows "shadow" "\ | 24401 | (autoload 'list-load-path-shadows "shadow" "\ |
| @@ -24372,8 +24444,8 @@ function, `load-path-shadows-find'. | |||
| 24372 | 24444 | ||
| 24373 | ;;;*** | 24445 | ;;;*** |
| 24374 | 24446 | ||
| 24375 | ;;;### (autoloads nil "shadowfile" "shadowfile.el" (21607 54478 800121 | 24447 | ;;;### (autoloads nil "shadowfile" "shadowfile.el" (21604 48550 377934 |
| 24376 | ;;;;;; 42000)) | 24448 | ;;;;;; 228000)) |
| 24377 | ;;; Generated autoloads from shadowfile.el | 24449 | ;;; Generated autoloads from shadowfile.el |
| 24378 | 24450 | ||
| 24379 | (autoload 'shadow-define-cluster "shadowfile" "\ | 24451 | (autoload 'shadow-define-cluster "shadowfile" "\ |
| @@ -24411,7 +24483,7 @@ Set up file shadowing. | |||
| 24411 | 24483 | ||
| 24412 | ;;;*** | 24484 | ;;;*** |
| 24413 | 24485 | ||
| 24414 | ;;;### (autoloads nil "shell" "shell.el" (21607 54478 800121 42000)) | 24486 | ;;;### (autoloads nil "shell" "shell.el" (21659 61733 222949 164000)) |
| 24415 | ;;; Generated autoloads from shell.el | 24487 | ;;; Generated autoloads from shell.el |
| 24416 | 24488 | ||
| 24417 | (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ | 24489 | (defvar shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe") "\ |
| @@ -24459,7 +24531,7 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 24459 | 24531 | ||
| 24460 | ;;;*** | 24532 | ;;;*** |
| 24461 | 24533 | ||
| 24462 | ;;;### (autoloads nil "shr" "net/shr.el" (21623 2108 292281 129000)) | 24534 | ;;;### (autoloads nil "shr" "net/shr.el" (21646 54881 267721 623000)) |
| 24463 | ;;; Generated autoloads from net/shr.el | 24535 | ;;; Generated autoloads from net/shr.el |
| 24464 | 24536 | ||
| 24465 | (autoload 'shr-render-region "shr" "\ | 24537 | (autoload 'shr-render-region "shr" "\ |
| @@ -24476,8 +24548,8 @@ DOM should be a parse tree as generated by | |||
| 24476 | 24548 | ||
| 24477 | ;;;*** | 24549 | ;;;*** |
| 24478 | 24550 | ||
| 24479 | ;;;### (autoloads nil "sieve" "gnus/sieve.el" (21607 54478 300138 | 24551 | ;;;### (autoloads nil "sieve" "gnus/sieve.el" (21604 48550 121934 |
| 24480 | ;;;;;; 641000)) | 24552 | ;;;;;; 218000)) |
| 24481 | ;;; Generated autoloads from gnus/sieve.el | 24553 | ;;; Generated autoloads from gnus/sieve.el |
| 24482 | 24554 | ||
| 24483 | (autoload 'sieve-manage "sieve" "\ | 24555 | (autoload 'sieve-manage "sieve" "\ |
| @@ -24502,8 +24574,8 @@ DOM should be a parse tree as generated by | |||
| 24502 | 24574 | ||
| 24503 | ;;;*** | 24575 | ;;;*** |
| 24504 | 24576 | ||
| 24505 | ;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (21607 54478 | 24577 | ;;;### (autoloads nil "sieve-mode" "gnus/sieve-mode.el" (21604 48550 |
| 24506 | ;;;;;; 300138 641000)) | 24578 | ;;;;;; 121934 218000)) |
| 24507 | ;;; Generated autoloads from gnus/sieve-mode.el | 24579 | ;;; Generated autoloads from gnus/sieve-mode.el |
| 24508 | 24580 | ||
| 24509 | (autoload 'sieve-mode "sieve-mode" "\ | 24581 | (autoload 'sieve-mode "sieve-mode" "\ |
| @@ -24518,8 +24590,8 @@ Turning on Sieve mode runs `sieve-mode-hook'. | |||
| 24518 | 24590 | ||
| 24519 | ;;;*** | 24591 | ;;;*** |
| 24520 | 24592 | ||
| 24521 | ;;;### (autoloads nil "simula" "progmodes/simula.el" (21607 54478 | 24593 | ;;;### (autoloads nil "simula" "progmodes/simula.el" (21604 48550 |
| 24522 | ;;;;;; 800121 42000)) | 24594 | ;;;;;; 357934 227000)) |
| 24523 | ;;; Generated autoloads from progmodes/simula.el | 24595 | ;;; Generated autoloads from progmodes/simula.el |
| 24524 | 24596 | ||
| 24525 | (autoload 'simula-mode "simula" "\ | 24597 | (autoload 'simula-mode "simula" "\ |
| @@ -24567,8 +24639,8 @@ with no arguments, if that value is non-nil. | |||
| 24567 | 24639 | ||
| 24568 | ;;;*** | 24640 | ;;;*** |
| 24569 | 24641 | ||
| 24570 | ;;;### (autoloads nil "skeleton" "skeleton.el" (21607 54478 800121 | 24642 | ;;;### (autoloads nil "skeleton" "skeleton.el" (21604 48550 377934 |
| 24571 | ;;;;;; 42000)) | 24643 | ;;;;;; 228000)) |
| 24572 | ;;; Generated autoloads from skeleton.el | 24644 | ;;; Generated autoloads from skeleton.el |
| 24573 | 24645 | ||
| 24574 | (defvar skeleton-filter-function 'identity "\ | 24646 | (defvar skeleton-filter-function 'identity "\ |
| @@ -24686,8 +24758,8 @@ symmetrical ones, and the same character twice for the others. | |||
| 24686 | 24758 | ||
| 24687 | ;;;*** | 24759 | ;;;*** |
| 24688 | 24760 | ||
| 24689 | ;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21628 45530 | 24761 | ;;;### (autoloads nil "smerge-mode" "vc/smerge-mode.el" (21631 35966 |
| 24690 | ;;;;;; 160140 360000)) | 24762 | ;;;;;; 923121 870000)) |
| 24691 | ;;; Generated autoloads from vc/smerge-mode.el | 24763 | ;;; Generated autoloads from vc/smerge-mode.el |
| 24692 | 24764 | ||
| 24693 | (autoload 'smerge-ediff "smerge-mode" "\ | 24765 | (autoload 'smerge-ediff "smerge-mode" "\ |
| @@ -24714,8 +24786,8 @@ If no conflict maker is found, turn off `smerge-mode'. | |||
| 24714 | 24786 | ||
| 24715 | ;;;*** | 24787 | ;;;*** |
| 24716 | 24788 | ||
| 24717 | ;;;### (autoloads nil "smiley" "gnus/smiley.el" (21607 54478 300138 | 24789 | ;;;### (autoloads nil "smiley" "gnus/smiley.el" (21604 48550 121934 |
| 24718 | ;;;;;; 641000)) | 24790 | ;;;;;; 218000)) |
| 24719 | ;;; Generated autoloads from gnus/smiley.el | 24791 | ;;; Generated autoloads from gnus/smiley.el |
| 24720 | 24792 | ||
| 24721 | (autoload 'smiley-region "smiley" "\ | 24793 | (autoload 'smiley-region "smiley" "\ |
| @@ -24732,8 +24804,8 @@ interactively. If there's no argument, do it at the current buffer. | |||
| 24732 | 24804 | ||
| 24733 | ;;;*** | 24805 | ;;;*** |
| 24734 | 24806 | ||
| 24735 | ;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (21619 5051 260148 | 24807 | ;;;### (autoloads nil "smtpmail" "mail/smtpmail.el" (21631 35966 |
| 24736 | ;;;;;; 536000)) | 24808 | ;;;;;; 875121 868000)) |
| 24737 | ;;; Generated autoloads from mail/smtpmail.el | 24809 | ;;; Generated autoloads from mail/smtpmail.el |
| 24738 | 24810 | ||
| 24739 | (autoload 'smtpmail-send-it "smtpmail" "\ | 24811 | (autoload 'smtpmail-send-it "smtpmail" "\ |
| @@ -24748,8 +24820,8 @@ Send mail that was queued as a result of setting `smtpmail-queue-mail'. | |||
| 24748 | 24820 | ||
| 24749 | ;;;*** | 24821 | ;;;*** |
| 24750 | 24822 | ||
| 24751 | ;;;### (autoloads nil "snake" "play/snake.el" (21607 54478 800121 | 24823 | ;;;### (autoloads nil "snake" "play/snake.el" (21604 48550 305934 |
| 24752 | ;;;;;; 42000)) | 24824 | ;;;;;; 225000)) |
| 24753 | ;;; Generated autoloads from play/snake.el | 24825 | ;;; Generated autoloads from play/snake.el |
| 24754 | 24826 | ||
| 24755 | (autoload 'snake "snake" "\ | 24827 | (autoload 'snake "snake" "\ |
| @@ -24772,8 +24844,8 @@ Snake mode keybindings: | |||
| 24772 | 24844 | ||
| 24773 | ;;;*** | 24845 | ;;;*** |
| 24774 | 24846 | ||
| 24775 | ;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (21607 54478 | 24847 | ;;;### (autoloads nil "snmp-mode" "net/snmp-mode.el" (21604 48550 |
| 24776 | ;;;;;; 300138 641000)) | 24848 | ;;;;;; 225934 222000)) |
| 24777 | ;;; Generated autoloads from net/snmp-mode.el | 24849 | ;;; Generated autoloads from net/snmp-mode.el |
| 24778 | 24850 | ||
| 24779 | (autoload 'snmp-mode "snmp-mode" "\ | 24851 | (autoload 'snmp-mode "snmp-mode" "\ |
| @@ -24802,8 +24874,8 @@ then `snmpv2-mode-hook'. | |||
| 24802 | 24874 | ||
| 24803 | ;;;*** | 24875 | ;;;*** |
| 24804 | 24876 | ||
| 24805 | ;;;### (autoloads nil "solar" "calendar/solar.el" (21607 54477 800124 | 24877 | ;;;### (autoloads nil "solar" "calendar/solar.el" (21604 48549 953934 |
| 24806 | ;;;;;; 118000)) | 24878 | ;;;;;; 212000)) |
| 24807 | ;;; Generated autoloads from calendar/solar.el | 24879 | ;;; Generated autoloads from calendar/solar.el |
| 24808 | 24880 | ||
| 24809 | (autoload 'sunrise-sunset "solar" "\ | 24881 | (autoload 'sunrise-sunset "solar" "\ |
| @@ -24818,8 +24890,8 @@ This function is suitable for execution in an init file. | |||
| 24818 | 24890 | ||
| 24819 | ;;;*** | 24891 | ;;;*** |
| 24820 | 24892 | ||
| 24821 | ;;;### (autoloads nil "solitaire" "play/solitaire.el" (21607 54478 | 24893 | ;;;### (autoloads nil "solitaire" "play/solitaire.el" (21604 48550 |
| 24822 | ;;;;;; 800121 42000)) | 24894 | ;;;;;; 305934 225000)) |
| 24823 | ;;; Generated autoloads from play/solitaire.el | 24895 | ;;; Generated autoloads from play/solitaire.el |
| 24824 | 24896 | ||
| 24825 | (autoload 'solitaire "solitaire" "\ | 24897 | (autoload 'solitaire "solitaire" "\ |
| @@ -24894,7 +24966,7 @@ Pick your favorite shortcuts: | |||
| 24894 | 24966 | ||
| 24895 | ;;;*** | 24967 | ;;;*** |
| 24896 | 24968 | ||
| 24897 | ;;;### (autoloads nil "sort" "sort.el" (21607 54478 800121 42000)) | 24969 | ;;;### (autoloads nil "sort" "sort.el" (21604 48550 377934 228000)) |
| 24898 | ;;; Generated autoloads from sort.el | 24970 | ;;; Generated autoloads from sort.el |
| 24899 | (put 'sort-fold-case 'safe-local-variable 'booleanp) | 24971 | (put 'sort-fold-case 'safe-local-variable 'booleanp) |
| 24900 | 24972 | ||
| @@ -25069,7 +25141,7 @@ is non-nil, it also prints a message describing the number of deletions. | |||
| 25069 | 25141 | ||
| 25070 | ;;;*** | 25142 | ;;;*** |
| 25071 | 25143 | ||
| 25072 | ;;;### (autoloads nil "spam" "gnus/spam.el" (21607 54478 300138 641000)) | 25144 | ;;;### (autoloads nil "spam" "gnus/spam.el" (21604 48550 121934 218000)) |
| 25073 | ;;; Generated autoloads from gnus/spam.el | 25145 | ;;; Generated autoloads from gnus/spam.el |
| 25074 | 25146 | ||
| 25075 | (autoload 'spam-initialize "spam" "\ | 25147 | (autoload 'spam-initialize "spam" "\ |
| @@ -25083,8 +25155,8 @@ installed through `spam-necessary-extra-headers'. | |||
| 25083 | 25155 | ||
| 25084 | ;;;*** | 25156 | ;;;*** |
| 25085 | 25157 | ||
| 25086 | ;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (21607 | 25158 | ;;;### (autoloads nil "spam-report" "gnus/spam-report.el" (21604 |
| 25087 | ;;;;;; 54478 300138 641000)) | 25159 | ;;;;;; 48550 121934 218000)) |
| 25088 | ;;; Generated autoloads from gnus/spam-report.el | 25160 | ;;; Generated autoloads from gnus/spam-report.el |
| 25089 | 25161 | ||
| 25090 | (autoload 'spam-report-process-queue "spam-report" "\ | 25162 | (autoload 'spam-report-process-queue "spam-report" "\ |
| @@ -25126,8 +25198,8 @@ Spam reports will be queued with the method used when | |||
| 25126 | 25198 | ||
| 25127 | ;;;*** | 25199 | ;;;*** |
| 25128 | 25200 | ||
| 25129 | ;;;### (autoloads nil "speedbar" "speedbar.el" (21607 54478 800121 | 25201 | ;;;### (autoloads nil "speedbar" "speedbar.el" (21604 48550 381934 |
| 25130 | ;;;;;; 42000)) | 25202 | ;;;;;; 228000)) |
| 25131 | ;;; Generated autoloads from speedbar.el | 25203 | ;;; Generated autoloads from speedbar.el |
| 25132 | 25204 | ||
| 25133 | (defalias 'speedbar 'speedbar-frame-mode) | 25205 | (defalias 'speedbar 'speedbar-frame-mode) |
| @@ -25151,8 +25223,8 @@ selected. If the speedbar frame is active, then select the attached frame. | |||
| 25151 | 25223 | ||
| 25152 | ;;;*** | 25224 | ;;;*** |
| 25153 | 25225 | ||
| 25154 | ;;;### (autoloads nil "spook" "play/spook.el" (21607 54478 800121 | 25226 | ;;;### (autoloads nil "spook" "play/spook.el" (21604 48550 305934 |
| 25155 | ;;;;;; 42000)) | 25227 | ;;;;;; 225000)) |
| 25156 | ;;; Generated autoloads from play/spook.el | 25228 | ;;; Generated autoloads from play/spook.el |
| 25157 | 25229 | ||
| 25158 | (autoload 'spook "spook" "\ | 25230 | (autoload 'spook "spook" "\ |
| @@ -25167,8 +25239,8 @@ Return a vector containing the lines from `spook-phrases-file'. | |||
| 25167 | 25239 | ||
| 25168 | ;;;*** | 25240 | ;;;*** |
| 25169 | 25241 | ||
| 25170 | ;;;### (autoloads nil "sql" "progmodes/sql.el" (21607 54478 800121 | 25242 | ;;;### (autoloads nil "sql" "progmodes/sql.el" (21604 48550 357934 |
| 25171 | ;;;;;; 42000)) | 25243 | ;;;;;; 227000)) |
| 25172 | ;;; Generated autoloads from progmodes/sql.el | 25244 | ;;; Generated autoloads from progmodes/sql.el |
| 25173 | (push (purecopy '(sql 3 4)) package--builtin-versions) | 25245 | (push (purecopy '(sql 3 4)) package--builtin-versions) |
| 25174 | 25246 | ||
| @@ -25634,15 +25706,15 @@ Run vsql as an inferior process. | |||
| 25634 | 25706 | ||
| 25635 | ;;;*** | 25707 | ;;;*** |
| 25636 | 25708 | ||
| 25637 | ;;;### (autoloads nil "srecode" "cedet/srecode.el" (21607 54477 800124 | 25709 | ;;;### (autoloads nil "srecode" "cedet/srecode.el" (21604 48549 981934 |
| 25638 | ;;;;;; 118000)) | 25710 | ;;;;;; 213000)) |
| 25639 | ;;; Generated autoloads from cedet/srecode.el | 25711 | ;;; Generated autoloads from cedet/srecode.el |
| 25640 | (push (purecopy '(srecode 1 2)) package--builtin-versions) | 25712 | (push (purecopy '(srecode 1 2)) package--builtin-versions) |
| 25641 | 25713 | ||
| 25642 | ;;;*** | 25714 | ;;;*** |
| 25643 | 25715 | ||
| 25644 | ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" | 25716 | ;;;### (autoloads nil "srecode/srt-mode" "cedet/srecode/srt-mode.el" |
| 25645 | ;;;;;; (21607 54477 800124 118000)) | 25717 | ;;;;;; (21659 61733 202949 164000)) |
| 25646 | ;;; Generated autoloads from cedet/srecode/srt-mode.el | 25718 | ;;; Generated autoloads from cedet/srecode/srt-mode.el |
| 25647 | 25719 | ||
| 25648 | (autoload 'srecode-template-mode "srecode/srt-mode" "\ | 25720 | (autoload 'srecode-template-mode "srecode/srt-mode" "\ |
| @@ -25654,8 +25726,8 @@ Major-mode for writing SRecode macros. | |||
| 25654 | 25726 | ||
| 25655 | ;;;*** | 25727 | ;;;*** |
| 25656 | 25728 | ||
| 25657 | ;;;### (autoloads nil "starttls" "gnus/starttls.el" (21607 54478 | 25729 | ;;;### (autoloads nil "starttls" "gnus/starttls.el" (21604 48550 |
| 25658 | ;;;;;; 300138 641000)) | 25730 | ;;;;;; 121934 218000)) |
| 25659 | ;;; Generated autoloads from gnus/starttls.el | 25731 | ;;; Generated autoloads from gnus/starttls.el |
| 25660 | 25732 | ||
| 25661 | (autoload 'starttls-open-stream "starttls" "\ | 25733 | (autoload 'starttls-open-stream "starttls" "\ |
| @@ -25678,8 +25750,8 @@ GnuTLS requires a port number. | |||
| 25678 | 25750 | ||
| 25679 | ;;;*** | 25751 | ;;;*** |
| 25680 | 25752 | ||
| 25681 | ;;;### (autoloads nil "strokes" "strokes.el" (21607 54478 800121 | 25753 | ;;;### (autoloads nil "strokes" "strokes.el" (21604 48550 381934 |
| 25682 | ;;;;;; 42000)) | 25754 | ;;;;;; 228000)) |
| 25683 | ;;; Generated autoloads from strokes.el | 25755 | ;;; Generated autoloads from strokes.el |
| 25684 | 25756 | ||
| 25685 | (autoload 'strokes-global-set-stroke "strokes" "\ | 25757 | (autoload 'strokes-global-set-stroke "strokes" "\ |
| @@ -25792,8 +25864,8 @@ Read a complex stroke and insert its glyph into the current buffer. | |||
| 25792 | 25864 | ||
| 25793 | ;;;*** | 25865 | ;;;*** |
| 25794 | 25866 | ||
| 25795 | ;;;### (autoloads nil "studly" "play/studly.el" (21607 54478 800121 | 25867 | ;;;### (autoloads nil "studly" "play/studly.el" (21604 48550 305934 |
| 25796 | ;;;;;; 42000)) | 25868 | ;;;;;; 225000)) |
| 25797 | ;;; Generated autoloads from play/studly.el | 25869 | ;;; Generated autoloads from play/studly.el |
| 25798 | 25870 | ||
| 25799 | (autoload 'studlify-region "studly" "\ | 25871 | (autoload 'studlify-region "studly" "\ |
| @@ -25813,8 +25885,8 @@ Studlify-case the current buffer. | |||
| 25813 | 25885 | ||
| 25814 | ;;;*** | 25886 | ;;;*** |
| 25815 | 25887 | ||
| 25816 | ;;;### (autoloads nil "subword" "progmodes/subword.el" (21607 54478 | 25888 | ;;;### (autoloads nil "subword" "progmodes/subword.el" (21604 48550 |
| 25817 | ;;;;;; 800121 42000)) | 25889 | ;;;;;; 357934 227000)) |
| 25818 | ;;; Generated autoloads from progmodes/subword.el | 25890 | ;;; Generated autoloads from progmodes/subword.el |
| 25819 | 25891 | ||
| 25820 | (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1") | 25892 | (define-obsolete-function-alias 'capitalized-words-mode 'subword-mode "25.1") |
| @@ -25906,8 +25978,8 @@ See `superword-mode' for more information on Superword mode. | |||
| 25906 | 25978 | ||
| 25907 | ;;;*** | 25979 | ;;;*** |
| 25908 | 25980 | ||
| 25909 | ;;;### (autoloads nil "supercite" "mail/supercite.el" (21607 54478 | 25981 | ;;;### (autoloads nil "supercite" "mail/supercite.el" (21604 48550 |
| 25910 | ;;;;;; 300138 641000)) | 25982 | ;;;;;; 189934 221000)) |
| 25911 | ;;; Generated autoloads from mail/supercite.el | 25983 | ;;; Generated autoloads from mail/supercite.el |
| 25912 | 25984 | ||
| 25913 | (autoload 'sc-cite-original "supercite" "\ | 25985 | (autoload 'sc-cite-original "supercite" "\ |
| @@ -25939,8 +26011,8 @@ and `sc-post-hook' is run after the guts of this function. | |||
| 25939 | 26011 | ||
| 25940 | ;;;*** | 26012 | ;;;*** |
| 25941 | 26013 | ||
| 25942 | ;;;### (autoloads nil "t-mouse" "t-mouse.el" (21607 54478 800121 | 26014 | ;;;### (autoloads nil "t-mouse" "t-mouse.el" (21604 48550 385934 |
| 25943 | ;;;;;; 42000)) | 26015 | ;;;;;; 228000)) |
| 25944 | ;;; Generated autoloads from t-mouse.el | 26016 | ;;; Generated autoloads from t-mouse.el |
| 25945 | 26017 | ||
| 25946 | (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") | 26018 | (define-obsolete-function-alias 't-mouse-mode 'gpm-mouse-mode "23.1") |
| @@ -25968,7 +26040,7 @@ It relies on the `gpm' daemon being activated. | |||
| 25968 | 26040 | ||
| 25969 | ;;;*** | 26041 | ;;;*** |
| 25970 | 26042 | ||
| 25971 | ;;;### (autoloads nil "tabify" "tabify.el" (21607 54478 800121 42000)) | 26043 | ;;;### (autoloads nil "tabify" "tabify.el" (21604 48550 385934 228000)) |
| 25972 | ;;; Generated autoloads from tabify.el | 26044 | ;;; Generated autoloads from tabify.el |
| 25973 | 26045 | ||
| 25974 | (autoload 'untabify "tabify" "\ | 26046 | (autoload 'untabify "tabify" "\ |
| @@ -25997,8 +26069,8 @@ The variable `tab-width' controls the spacing of tab stops. | |||
| 25997 | 26069 | ||
| 25998 | ;;;*** | 26070 | ;;;*** |
| 25999 | 26071 | ||
| 26000 | ;;;### (autoloads nil "table" "textmodes/table.el" (21607 54478 800121 | 26072 | ;;;### (autoloads nil "table" "textmodes/table.el" (21604 48550 409934 |
| 26001 | ;;;;;; 42000)) | 26073 | ;;;;;; 229000)) |
| 26002 | ;;; Generated autoloads from textmodes/table.el | 26074 | ;;; Generated autoloads from textmodes/table.el |
| 26003 | 26075 | ||
| 26004 | (defvar table-cell-map-hook nil "\ | 26076 | (defvar table-cell-map-hook nil "\ |
| @@ -26590,7 +26662,7 @@ converts a table into plain text without frames. It is a companion to | |||
| 26590 | 26662 | ||
| 26591 | ;;;*** | 26663 | ;;;*** |
| 26592 | 26664 | ||
| 26593 | ;;;### (autoloads nil "talk" "talk.el" (21607 54478 800121 42000)) | 26665 | ;;;### (autoloads nil "talk" "talk.el" (21604 48550 385934 228000)) |
| 26594 | ;;; Generated autoloads from talk.el | 26666 | ;;; Generated autoloads from talk.el |
| 26595 | 26667 | ||
| 26596 | (autoload 'talk-connect "talk" "\ | 26668 | (autoload 'talk-connect "talk" "\ |
| @@ -26605,8 +26677,8 @@ Connect to the Emacs talk group from the current X display or tty frame. | |||
| 26605 | 26677 | ||
| 26606 | ;;;*** | 26678 | ;;;*** |
| 26607 | 26679 | ||
| 26608 | ;;;### (autoloads nil "tar-mode" "tar-mode.el" (21607 54478 800121 | 26680 | ;;;### (autoloads nil "tar-mode" "tar-mode.el" (21604 48550 385934 |
| 26609 | ;;;;;; 42000)) | 26681 | ;;;;;; 228000)) |
| 26610 | ;;; Generated autoloads from tar-mode.el | 26682 | ;;; Generated autoloads from tar-mode.el |
| 26611 | 26683 | ||
| 26612 | (autoload 'tar-mode "tar-mode" "\ | 26684 | (autoload 'tar-mode "tar-mode" "\ |
| @@ -26629,8 +26701,8 @@ See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. | |||
| 26629 | 26701 | ||
| 26630 | ;;;*** | 26702 | ;;;*** |
| 26631 | 26703 | ||
| 26632 | ;;;### (autoloads nil "tcl" "progmodes/tcl.el" (21607 54478 800121 | 26704 | ;;;### (autoloads nil "tcl" "progmodes/tcl.el" (21604 48550 357934 |
| 26633 | ;;;;;; 42000)) | 26705 | ;;;;;; 227000)) |
| 26634 | ;;; Generated autoloads from progmodes/tcl.el | 26706 | ;;; Generated autoloads from progmodes/tcl.el |
| 26635 | 26707 | ||
| 26636 | (autoload 'tcl-mode "tcl" "\ | 26708 | (autoload 'tcl-mode "tcl" "\ |
| @@ -26678,8 +26750,8 @@ Prefix argument means invert sense of `tcl-use-smart-word-finder'. | |||
| 26678 | 26750 | ||
| 26679 | ;;;*** | 26751 | ;;;*** |
| 26680 | 26752 | ||
| 26681 | ;;;### (autoloads nil "telnet" "net/telnet.el" (21607 54478 300138 | 26753 | ;;;### (autoloads nil "telnet" "net/telnet.el" (21604 48550 225934 |
| 26682 | ;;;;;; 641000)) | 26754 | ;;;;;; 222000)) |
| 26683 | ;;; Generated autoloads from net/telnet.el | 26755 | ;;; Generated autoloads from net/telnet.el |
| 26684 | 26756 | ||
| 26685 | (autoload 'telnet "telnet" "\ | 26757 | (autoload 'telnet "telnet" "\ |
| @@ -26704,7 +26776,7 @@ Normally input is edited in Emacs and sent a line at a time. | |||
| 26704 | 26776 | ||
| 26705 | ;;;*** | 26777 | ;;;*** |
| 26706 | 26778 | ||
| 26707 | ;;;### (autoloads nil "term" "term.el" (21607 54478 800121 42000)) | 26779 | ;;;### (autoloads nil "term" "term.el" (21604 48550 385934 228000)) |
| 26708 | ;;; Generated autoloads from term.el | 26780 | ;;; Generated autoloads from term.el |
| 26709 | 26781 | ||
| 26710 | (autoload 'make-term "term" "\ | 26782 | (autoload 'make-term "term" "\ |
| @@ -26746,8 +26818,8 @@ use in that buffer. | |||
| 26746 | 26818 | ||
| 26747 | ;;;*** | 26819 | ;;;*** |
| 26748 | 26820 | ||
| 26749 | ;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (21607 | 26821 | ;;;### (autoloads nil "testcover" "emacs-lisp/testcover.el" (21604 |
| 26750 | ;;;;;; 54477 800124 118000)) | 26822 | ;;;;;; 48550 25934 215000)) |
| 26751 | ;;; Generated autoloads from emacs-lisp/testcover.el | 26823 | ;;; Generated autoloads from emacs-lisp/testcover.el |
| 26752 | 26824 | ||
| 26753 | (autoload 'testcover-this-defun "testcover" "\ | 26825 | (autoload 'testcover-this-defun "testcover" "\ |
| @@ -26757,8 +26829,8 @@ Start coverage on function under point. | |||
| 26757 | 26829 | ||
| 26758 | ;;;*** | 26830 | ;;;*** |
| 26759 | 26831 | ||
| 26760 | ;;;### (autoloads nil "tetris" "play/tetris.el" (21607 54478 800121 | 26832 | ;;;### (autoloads nil "tetris" "play/tetris.el" (21604 48550 305934 |
| 26761 | ;;;;;; 42000)) | 26833 | ;;;;;; 225000)) |
| 26762 | ;;; Generated autoloads from play/tetris.el | 26834 | ;;; Generated autoloads from play/tetris.el |
| 26763 | (push (purecopy '(tetris 2 1)) package--builtin-versions) | 26835 | (push (purecopy '(tetris 2 1)) package--builtin-versions) |
| 26764 | 26836 | ||
| @@ -26783,8 +26855,8 @@ tetris-mode keybindings: | |||
| 26783 | 26855 | ||
| 26784 | ;;;*** | 26856 | ;;;*** |
| 26785 | 26857 | ||
| 26786 | ;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21611 10938 | 26858 | ;;;### (autoloads nil "tex-mode" "textmodes/tex-mode.el" (21647 39327 |
| 26787 | ;;;;;; 204397 226000)) | 26859 | ;;;;;; 896553 751000)) |
| 26788 | ;;; Generated autoloads from textmodes/tex-mode.el | 26860 | ;;; Generated autoloads from textmodes/tex-mode.el |
| 26789 | 26861 | ||
| 26790 | (defvar tex-shell-file-name nil "\ | 26862 | (defvar tex-shell-file-name nil "\ |
| @@ -27085,8 +27157,8 @@ Major mode to edit DocTeX files. | |||
| 27085 | 27157 | ||
| 27086 | ;;;*** | 27158 | ;;;*** |
| 27087 | 27159 | ||
| 27088 | ;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (21607 54478 | 27160 | ;;;### (autoloads nil "texinfmt" "textmodes/texinfmt.el" (21604 48550 |
| 27089 | ;;;;;; 800121 42000)) | 27161 | ;;;;;; 409934 229000)) |
| 27090 | ;;; Generated autoloads from textmodes/texinfmt.el | 27162 | ;;; Generated autoloads from textmodes/texinfmt.el |
| 27091 | 27163 | ||
| 27092 | (autoload 'texinfo-format-buffer "texinfmt" "\ | 27164 | (autoload 'texinfo-format-buffer "texinfmt" "\ |
| @@ -27125,8 +27197,8 @@ if large. You can use `Info-split' to do this manually. | |||
| 27125 | 27197 | ||
| 27126 | ;;;*** | 27198 | ;;;*** |
| 27127 | 27199 | ||
| 27128 | ;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (21607 54478 | 27200 | ;;;### (autoloads nil "texinfo" "textmodes/texinfo.el" (21604 48550 |
| 27129 | ;;;;;; 800121 42000)) | 27201 | ;;;;;; 409934 229000)) |
| 27130 | ;;; Generated autoloads from textmodes/texinfo.el | 27202 | ;;; Generated autoloads from textmodes/texinfo.el |
| 27131 | 27203 | ||
| 27132 | (defvar texinfo-open-quote (purecopy "``") "\ | 27204 | (defvar texinfo-open-quote (purecopy "``") "\ |
| @@ -27210,8 +27282,8 @@ value of `texinfo-mode-hook'. | |||
| 27210 | 27282 | ||
| 27211 | ;;;*** | 27283 | ;;;*** |
| 27212 | 27284 | ||
| 27213 | ;;;### (autoloads nil "thai-util" "language/thai-util.el" (21607 | 27285 | ;;;### (autoloads nil "thai-util" "language/thai-util.el" (21604 |
| 27214 | ;;;;;; 54478 300138 641000)) | 27286 | ;;;;;; 48550 153934 219000)) |
| 27215 | ;;; Generated autoloads from language/thai-util.el | 27287 | ;;; Generated autoloads from language/thai-util.el |
| 27216 | 27288 | ||
| 27217 | (autoload 'thai-compose-region "thai-util" "\ | 27289 | (autoload 'thai-compose-region "thai-util" "\ |
| @@ -27238,8 +27310,8 @@ Compose Thai characters in the current buffer. | |||
| 27238 | 27310 | ||
| 27239 | ;;;*** | 27311 | ;;;*** |
| 27240 | 27312 | ||
| 27241 | ;;;### (autoloads nil "thingatpt" "thingatpt.el" (21607 54478 800121 | 27313 | ;;;### (autoloads nil "thingatpt" "thingatpt.el" (21604 48550 413934 |
| 27242 | ;;;;;; 42000)) | 27314 | ;;;;;; 229000)) |
| 27243 | ;;; Generated autoloads from thingatpt.el | 27315 | ;;; Generated autoloads from thingatpt.el |
| 27244 | 27316 | ||
| 27245 | (autoload 'forward-thing "thingatpt" "\ | 27317 | (autoload 'forward-thing "thingatpt" "\ |
| @@ -27303,7 +27375,7 @@ Return the Lisp list at point, or nil if none is found. | |||
| 27303 | 27375 | ||
| 27304 | ;;;*** | 27376 | ;;;*** |
| 27305 | 27377 | ||
| 27306 | ;;;### (autoloads nil "thumbs" "thumbs.el" (21607 54478 800121 42000)) | 27378 | ;;;### (autoloads nil "thumbs" "thumbs.el" (21604 48550 413934 229000)) |
| 27307 | ;;; Generated autoloads from thumbs.el | 27379 | ;;; Generated autoloads from thumbs.el |
| 27308 | 27380 | ||
| 27309 | (autoload 'thumbs-find-thumb "thumbs" "\ | 27381 | (autoload 'thumbs-find-thumb "thumbs" "\ |
| @@ -27337,8 +27409,8 @@ In dired, call the setroot program on the image at point. | |||
| 27337 | 27409 | ||
| 27338 | ;;;*** | 27410 | ;;;*** |
| 27339 | 27411 | ||
| 27340 | ;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (21607 | 27412 | ;;;### (autoloads nil "tibet-util" "language/tibet-util.el" (21604 |
| 27341 | ;;;;;; 54478 300138 641000)) | 27413 | ;;;;;; 48550 157934 220000)) |
| 27342 | ;;; Generated autoloads from language/tibet-util.el | 27414 | ;;; Generated autoloads from language/tibet-util.el |
| 27343 | 27415 | ||
| 27344 | (autoload 'tibetan-char-p "tibet-util" "\ | 27416 | (autoload 'tibetan-char-p "tibet-util" "\ |
| @@ -27411,8 +27483,8 @@ See also docstring of the function tibetan-compose-region. | |||
| 27411 | 27483 | ||
| 27412 | ;;;*** | 27484 | ;;;*** |
| 27413 | 27485 | ||
| 27414 | ;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21611 10938 | 27486 | ;;;### (autoloads nil "tildify" "textmodes/tildify.el" (21631 35966 |
| 27415 | ;;;;;; 204397 226000)) | 27487 | ;;;;;; 919121 870000)) |
| 27416 | ;;; Generated autoloads from textmodes/tildify.el | 27488 | ;;; Generated autoloads from textmodes/tildify.el |
| 27417 | (push (purecopy '(tildify 4 5 7)) package--builtin-versions) | 27489 | (push (purecopy '(tildify 4 5 7)) package--builtin-versions) |
| 27418 | 27490 | ||
| @@ -27440,7 +27512,7 @@ won't be prompted for confirmation of each substitution. | |||
| 27440 | 27512 | ||
| 27441 | ;;;*** | 27513 | ;;;*** |
| 27442 | 27514 | ||
| 27443 | ;;;### (autoloads nil "time" "time.el" (21607 54478 800121 42000)) | 27515 | ;;;### (autoloads nil "time" "time.el" (21604 48550 413934 229000)) |
| 27444 | ;;; Generated autoloads from time.el | 27516 | ;;; Generated autoloads from time.el |
| 27445 | 27517 | ||
| 27446 | (defvar display-time-day-and-date nil "\ | 27518 | (defvar display-time-day-and-date nil "\ |
| @@ -27502,8 +27574,8 @@ Return a string giving the duration of the Emacs initialization. | |||
| 27502 | 27574 | ||
| 27503 | ;;;*** | 27575 | ;;;*** |
| 27504 | 27576 | ||
| 27505 | ;;;### (autoloads nil "time-date" "calendar/time-date.el" (21611 | 27577 | ;;;### (autoloads nil "time-date" "calendar/time-date.el" (21631 |
| 27506 | ;;;;;; 10937 700236 3000)) | 27578 | ;;;;;; 35966 803121 866000)) |
| 27507 | ;;; Generated autoloads from calendar/time-date.el | 27579 | ;;; Generated autoloads from calendar/time-date.el |
| 27508 | 27580 | ||
| 27509 | (autoload 'date-to-time "time-date" "\ | 27581 | (autoload 'date-to-time "time-date" "\ |
| @@ -27606,8 +27678,8 @@ Convert the time interval in seconds to a short string. | |||
| 27606 | 27678 | ||
| 27607 | ;;;*** | 27679 | ;;;*** |
| 27608 | 27680 | ||
| 27609 | ;;;### (autoloads nil "time-stamp" "time-stamp.el" (21607 54478 800121 | 27681 | ;;;### (autoloads nil "time-stamp" "time-stamp.el" (21604 48550 413934 |
| 27610 | ;;;;;; 42000)) | 27682 | ;;;;;; 229000)) |
| 27611 | ;;; Generated autoloads from time-stamp.el | 27683 | ;;; Generated autoloads from time-stamp.el |
| 27612 | (put 'time-stamp-format 'safe-local-variable 'stringp) | 27684 | (put 'time-stamp-format 'safe-local-variable 'stringp) |
| 27613 | (put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) | 27685 | (put 'time-stamp-time-zone 'safe-local-variable 'string-or-null-p) |
| @@ -27647,8 +27719,8 @@ With ARG, turn time stamping on if and only if arg is positive. | |||
| 27647 | 27719 | ||
| 27648 | ;;;*** | 27720 | ;;;*** |
| 27649 | 27721 | ||
| 27650 | ;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21607 | 27722 | ;;;### (autoloads nil "timeclock" "calendar/timeclock.el" (21604 |
| 27651 | ;;;;;; 54477 800124 118000)) | 27723 | ;;;;;; 48549 957934 212000)) |
| 27652 | ;;; Generated autoloads from calendar/timeclock.el | 27724 | ;;; Generated autoloads from calendar/timeclock.el |
| 27653 | (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) | 27725 | (push (purecopy '(timeclock 2 6 1)) package--builtin-versions) |
| 27654 | 27726 | ||
| @@ -27758,7 +27830,7 @@ relative only to the time worked today, and not to past time. | |||
| 27758 | ;;;*** | 27830 | ;;;*** |
| 27759 | 27831 | ||
| 27760 | ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" | 27832 | ;;;### (autoloads nil "titdic-cnv" "international/titdic-cnv.el" |
| 27761 | ;;;;;; (21607 54478 300138 641000)) | 27833 | ;;;;;; (21604 48550 141934 219000)) |
| 27762 | ;;; Generated autoloads from international/titdic-cnv.el | 27834 | ;;; Generated autoloads from international/titdic-cnv.el |
| 27763 | 27835 | ||
| 27764 | (autoload 'titdic-convert "titdic-cnv" "\ | 27836 | (autoload 'titdic-convert "titdic-cnv" "\ |
| @@ -27780,7 +27852,7 @@ To get complete usage, invoke \"emacs -batch -f batch-titdic-convert -h\". | |||
| 27780 | 27852 | ||
| 27781 | ;;;*** | 27853 | ;;;*** |
| 27782 | 27854 | ||
| 27783 | ;;;### (autoloads nil "tmm" "tmm.el" (21607 54478 800121 42000)) | 27855 | ;;;### (autoloads nil "tmm" "tmm.el" (21651 20707 188225 752000)) |
| 27784 | ;;; Generated autoloads from tmm.el | 27856 | ;;; Generated autoloads from tmm.el |
| 27785 | (define-key global-map "\M-`" 'tmm-menubar) | 27857 | (define-key global-map "\M-`" 'tmm-menubar) |
| 27786 | (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) | 27858 | (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) |
| @@ -27822,8 +27894,8 @@ Its value should be an event that has a binding in MENU. | |||
| 27822 | 27894 | ||
| 27823 | ;;;*** | 27895 | ;;;*** |
| 27824 | 27896 | ||
| 27825 | ;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (21625 | 27897 | ;;;### (autoloads nil "todo-mode" "calendar/todo-mode.el" (21631 |
| 27826 | ;;;;;; 43838 483701 627000)) | 27898 | ;;;;;; 35966 807121 866000)) |
| 27827 | ;;; Generated autoloads from calendar/todo-mode.el | 27899 | ;;; Generated autoloads from calendar/todo-mode.el |
| 27828 | 27900 | ||
| 27829 | (autoload 'todo-show "todo-mode" "\ | 27901 | (autoload 'todo-show "todo-mode" "\ |
| @@ -27890,8 +27962,8 @@ Mode for displaying and reprioritizing top priority Todo. | |||
| 27890 | 27962 | ||
| 27891 | ;;;*** | 27963 | ;;;*** |
| 27892 | 27964 | ||
| 27893 | ;;;### (autoloads nil "tool-bar" "tool-bar.el" (21607 54478 800121 | 27965 | ;;;### (autoloads nil "tool-bar" "tool-bar.el" (21604 48550 413934 |
| 27894 | ;;;;;; 42000)) | 27966 | ;;;;;; 229000)) |
| 27895 | ;;; Generated autoloads from tool-bar.el | 27967 | ;;; Generated autoloads from tool-bar.el |
| 27896 | 27968 | ||
| 27897 | (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ | 27969 | (autoload 'toggle-tool-bar-mode-from-frame "tool-bar" "\ |
| @@ -27961,8 +28033,8 @@ holds a keymap. | |||
| 27961 | 28033 | ||
| 27962 | ;;;*** | 28034 | ;;;*** |
| 27963 | 28035 | ||
| 27964 | ;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (21607 54477 800124 | 28036 | ;;;### (autoloads nil "tq" "emacs-lisp/tq.el" (21604 48550 25934 |
| 27965 | ;;;;;; 118000)) | 28037 | ;;;;;; 215000)) |
| 27966 | ;;; Generated autoloads from emacs-lisp/tq.el | 28038 | ;;; Generated autoloads from emacs-lisp/tq.el |
| 27967 | 28039 | ||
| 27968 | (autoload 'tq-create "tq" "\ | 28040 | (autoload 'tq-create "tq" "\ |
| @@ -27975,8 +28047,8 @@ to a tcp server on another machine. | |||
| 27975 | 28047 | ||
| 27976 | ;;;*** | 28048 | ;;;*** |
| 27977 | 28049 | ||
| 27978 | ;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (21607 54477 | 28050 | ;;;### (autoloads nil "trace" "emacs-lisp/trace.el" (21604 48550 |
| 27979 | ;;;;;; 800124 118000)) | 28051 | ;;;;;; 25934 215000)) |
| 27980 | ;;; Generated autoloads from emacs-lisp/trace.el | 28052 | ;;; Generated autoloads from emacs-lisp/trace.el |
| 27981 | 28053 | ||
| 27982 | (defvar trace-buffer "*trace-output*" "\ | 28054 | (defvar trace-buffer "*trace-output*" "\ |
| @@ -28021,8 +28093,8 @@ the output buffer or changing the window configuration. | |||
| 28021 | 28093 | ||
| 28022 | ;;;*** | 28094 | ;;;*** |
| 28023 | 28095 | ||
| 28024 | ;;;### (autoloads nil "tramp" "net/tramp.el" (21625 43838 483701 | 28096 | ;;;### (autoloads nil "tramp" "net/tramp.el" (21640 32530 974334 |
| 28025 | ;;;;;; 627000)) | 28097 | ;;;;;; 457000)) |
| 28026 | ;;; Generated autoloads from net/tramp.el | 28098 | ;;; Generated autoloads from net/tramp.el |
| 28027 | 28099 | ||
| 28028 | (defvar tramp-mode t "\ | 28100 | (defvar tramp-mode t "\ |
| @@ -28137,8 +28209,8 @@ Discard Tramp from loading remote files. | |||
| 28137 | 28209 | ||
| 28138 | ;;;*** | 28210 | ;;;*** |
| 28139 | 28211 | ||
| 28140 | ;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (21607 54478 | 28212 | ;;;### (autoloads nil "tramp-ftp" "net/tramp-ftp.el" (21604 48550 |
| 28141 | ;;;;;; 300138 641000)) | 28213 | ;;;;;; 225934 222000)) |
| 28142 | ;;; Generated autoloads from net/tramp-ftp.el | 28214 | ;;; Generated autoloads from net/tramp-ftp.el |
| 28143 | 28215 | ||
| 28144 | (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ | 28216 | (autoload 'tramp-ftp-enable-ange-ftp "tramp-ftp" "\ |
| @@ -28148,8 +28220,8 @@ Discard Tramp from loading remote files. | |||
| 28148 | 28220 | ||
| 28149 | ;;;*** | 28221 | ;;;*** |
| 28150 | 28222 | ||
| 28151 | ;;;### (autoloads nil "tutorial" "tutorial.el" (21607 54478 800121 | 28223 | ;;;### (autoloads nil "tutorial" "tutorial.el" (21604 48550 417934 |
| 28152 | ;;;;;; 42000)) | 28224 | ;;;;;; 229000)) |
| 28153 | ;;; Generated autoloads from tutorial.el | 28225 | ;;; Generated autoloads from tutorial.el |
| 28154 | 28226 | ||
| 28155 | (autoload 'help-with-tutorial "tutorial" "\ | 28227 | (autoload 'help-with-tutorial "tutorial" "\ |
| @@ -28173,8 +28245,8 @@ resumed later. | |||
| 28173 | 28245 | ||
| 28174 | ;;;*** | 28246 | ;;;*** |
| 28175 | 28247 | ||
| 28176 | ;;;### (autoloads nil "tv-util" "language/tv-util.el" (21607 54478 | 28248 | ;;;### (autoloads nil "tv-util" "language/tv-util.el" (21604 48550 |
| 28177 | ;;;;;; 300138 641000)) | 28249 | ;;;;;; 157934 220000)) |
| 28178 | ;;; Generated autoloads from language/tv-util.el | 28250 | ;;; Generated autoloads from language/tv-util.el |
| 28179 | 28251 | ||
| 28180 | (autoload 'tai-viet-composition-function "tv-util" "\ | 28252 | (autoload 'tai-viet-composition-function "tv-util" "\ |
| @@ -28184,8 +28256,8 @@ resumed later. | |||
| 28184 | 28256 | ||
| 28185 | ;;;*** | 28257 | ;;;*** |
| 28186 | 28258 | ||
| 28187 | ;;;### (autoloads nil "two-column" "textmodes/two-column.el" (21607 | 28259 | ;;;### (autoloads nil "two-column" "textmodes/two-column.el" (21604 |
| 28188 | ;;;;;; 54478 800121 42000)) | 28260 | ;;;;;; 48550 413934 229000)) |
| 28189 | ;;; Generated autoloads from textmodes/two-column.el | 28261 | ;;; Generated autoloads from textmodes/two-column.el |
| 28190 | (autoload '2C-command "two-column" () t 'keymap) | 28262 | (autoload '2C-command "two-column" () t 'keymap) |
| 28191 | (global-set-key "\C-x6" '2C-command) | 28263 | (global-set-key "\C-x6" '2C-command) |
| @@ -28232,8 +28304,8 @@ First column's text sSs Second column's text | |||
| 28232 | 28304 | ||
| 28233 | ;;;*** | 28305 | ;;;*** |
| 28234 | 28306 | ||
| 28235 | ;;;### (autoloads nil "type-break" "type-break.el" (21609 55608 852266 | 28307 | ;;;### (autoloads nil "type-break" "type-break.el" (21631 35966 919121 |
| 28236 | ;;;;;; 580000)) | 28308 | ;;;;;; 870000)) |
| 28237 | ;;; Generated autoloads from type-break.el | 28309 | ;;; Generated autoloads from type-break.el |
| 28238 | 28310 | ||
| 28239 | (defvar type-break-mode nil "\ | 28311 | (defvar type-break-mode nil "\ |
| @@ -28365,7 +28437,7 @@ FRAC should be the inverse of the fractional value; for example, a value of | |||
| 28365 | 28437 | ||
| 28366 | ;;;*** | 28438 | ;;;*** |
| 28367 | 28439 | ||
| 28368 | ;;;### (autoloads nil "uce" "mail/uce.el" (21607 54478 300138 641000)) | 28440 | ;;;### (autoloads nil "uce" "mail/uce.el" (21604 48550 189934 221000)) |
| 28369 | ;;; Generated autoloads from mail/uce.el | 28441 | ;;; Generated autoloads from mail/uce.el |
| 28370 | 28442 | ||
| 28371 | (autoload 'uce-reply-to-uce "uce" "\ | 28443 | (autoload 'uce-reply-to-uce "uce" "\ |
| @@ -28379,7 +28451,7 @@ You might need to set `uce-mail-reader' before using this. | |||
| 28379 | ;;;*** | 28451 | ;;;*** |
| 28380 | 28452 | ||
| 28381 | ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" | 28453 | ;;;### (autoloads nil "ucs-normalize" "international/ucs-normalize.el" |
| 28382 | ;;;;;; (21607 54478 300138 641000)) | 28454 | ;;;;;; (21604 48550 141934 219000)) |
| 28383 | ;;; Generated autoloads from international/ucs-normalize.el | 28455 | ;;; Generated autoloads from international/ucs-normalize.el |
| 28384 | 28456 | ||
| 28385 | (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ | 28457 | (autoload 'ucs-normalize-NFD-region "ucs-normalize" "\ |
| @@ -28444,8 +28516,8 @@ Normalize the string STR by the Unicode NFC and Mac OS's HFS Plus. | |||
| 28444 | 28516 | ||
| 28445 | ;;;*** | 28517 | ;;;*** |
| 28446 | 28518 | ||
| 28447 | ;;;### (autoloads nil "underline" "textmodes/underline.el" (21607 | 28519 | ;;;### (autoloads nil "underline" "textmodes/underline.el" (21604 |
| 28448 | ;;;;;; 54478 800121 42000)) | 28520 | ;;;;;; 48550 413934 229000)) |
| 28449 | ;;; Generated autoloads from textmodes/underline.el | 28521 | ;;; Generated autoloads from textmodes/underline.el |
| 28450 | 28522 | ||
| 28451 | (autoload 'underline-region "underline" "\ | 28523 | (autoload 'underline-region "underline" "\ |
| @@ -28465,8 +28537,8 @@ which specify the range to operate on. | |||
| 28465 | 28537 | ||
| 28466 | ;;;*** | 28538 | ;;;*** |
| 28467 | 28539 | ||
| 28468 | ;;;### (autoloads nil "unrmail" "mail/unrmail.el" (21607 54478 300138 | 28540 | ;;;### (autoloads nil "unrmail" "mail/unrmail.el" (21604 48550 189934 |
| 28469 | ;;;;;; 641000)) | 28541 | ;;;;;; 221000)) |
| 28470 | ;;; Generated autoloads from mail/unrmail.el | 28542 | ;;; Generated autoloads from mail/unrmail.el |
| 28471 | 28543 | ||
| 28472 | (autoload 'batch-unrmail "unrmail" "\ | 28544 | (autoload 'batch-unrmail "unrmail" "\ |
| @@ -28486,8 +28558,8 @@ The variable `unrmail-mbox-format' controls which mbox format to use. | |||
| 28486 | 28558 | ||
| 28487 | ;;;*** | 28559 | ;;;*** |
| 28488 | 28560 | ||
| 28489 | ;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (21607 54477 | 28561 | ;;;### (autoloads nil "unsafep" "emacs-lisp/unsafep.el" (21604 48550 |
| 28490 | ;;;;;; 800124 118000)) | 28562 | ;;;;;; 25934 215000)) |
| 28491 | ;;; Generated autoloads from emacs-lisp/unsafep.el | 28563 | ;;; Generated autoloads from emacs-lisp/unsafep.el |
| 28492 | 28564 | ||
| 28493 | (autoload 'unsafep "unsafep" "\ | 28565 | (autoload 'unsafep "unsafep" "\ |
| @@ -28499,7 +28571,7 @@ UNSAFEP-VARS is a list of symbols with local bindings. | |||
| 28499 | 28571 | ||
| 28500 | ;;;*** | 28572 | ;;;*** |
| 28501 | 28573 | ||
| 28502 | ;;;### (autoloads nil "url" "url/url.el" (21607 54478 800121 42000)) | 28574 | ;;;### (autoloads nil "url" "url/url.el" (21604 48550 421934 229000)) |
| 28503 | ;;; Generated autoloads from url/url.el | 28575 | ;;; Generated autoloads from url/url.el |
| 28504 | 28576 | ||
| 28505 | (autoload 'url-retrieve "url" "\ | 28577 | (autoload 'url-retrieve "url" "\ |
| @@ -28546,8 +28618,8 @@ no further processing). URL is either a string or a parsed URL. | |||
| 28546 | 28618 | ||
| 28547 | ;;;*** | 28619 | ;;;*** |
| 28548 | 28620 | ||
| 28549 | ;;;### (autoloads nil "url-auth" "url/url-auth.el" (21607 54478 800121 | 28621 | ;;;### (autoloads nil "url-auth" "url/url-auth.el" (21604 48550 417934 |
| 28550 | ;;;;;; 42000)) | 28622 | ;;;;;; 229000)) |
| 28551 | ;;; Generated autoloads from url/url-auth.el | 28623 | ;;; Generated autoloads from url/url-auth.el |
| 28552 | 28624 | ||
| 28553 | (autoload 'url-get-authentication "url-auth" "\ | 28625 | (autoload 'url-get-authentication "url-auth" "\ |
| @@ -28588,8 +28660,8 @@ RATING a rating between 1 and 10 of the strength of the authentication. | |||
| 28588 | 28660 | ||
| 28589 | ;;;*** | 28661 | ;;;*** |
| 28590 | 28662 | ||
| 28591 | ;;;### (autoloads nil "url-cache" "url/url-cache.el" (21607 54478 | 28663 | ;;;### (autoloads nil "url-cache" "url/url-cache.el" (21604 48550 |
| 28592 | ;;;;;; 800121 42000)) | 28664 | ;;;;;; 417934 229000)) |
| 28593 | ;;; Generated autoloads from url/url-cache.el | 28665 | ;;; Generated autoloads from url/url-cache.el |
| 28594 | 28666 | ||
| 28595 | (autoload 'url-store-in-cache "url-cache" "\ | 28667 | (autoload 'url-store-in-cache "url-cache" "\ |
| @@ -28610,8 +28682,8 @@ Extract FNAM from the local disk cache. | |||
| 28610 | 28682 | ||
| 28611 | ;;;*** | 28683 | ;;;*** |
| 28612 | 28684 | ||
| 28613 | ;;;### (autoloads nil "url-cid" "url/url-cid.el" (21607 54478 800121 | 28685 | ;;;### (autoloads nil "url-cid" "url/url-cid.el" (21604 48550 417934 |
| 28614 | ;;;;;; 42000)) | 28686 | ;;;;;; 229000)) |
| 28615 | ;;; Generated autoloads from url/url-cid.el | 28687 | ;;; Generated autoloads from url/url-cid.el |
| 28616 | 28688 | ||
| 28617 | (autoload 'url-cid "url-cid" "\ | 28689 | (autoload 'url-cid "url-cid" "\ |
| @@ -28621,8 +28693,8 @@ Extract FNAM from the local disk cache. | |||
| 28621 | 28693 | ||
| 28622 | ;;;*** | 28694 | ;;;*** |
| 28623 | 28695 | ||
| 28624 | ;;;### (autoloads nil "url-dav" "url/url-dav.el" (21607 54478 800121 | 28696 | ;;;### (autoloads nil "url-dav" "url/url-dav.el" (21637 50476 683217 |
| 28625 | ;;;;;; 42000)) | 28697 | ;;;;;; 122000)) |
| 28626 | ;;; Generated autoloads from url/url-dav.el | 28698 | ;;; Generated autoloads from url/url-dav.el |
| 28627 | 28699 | ||
| 28628 | (autoload 'url-dav-supported-p "url-dav" "\ | 28700 | (autoload 'url-dav-supported-p "url-dav" "\ |
| @@ -28656,8 +28728,8 @@ added to this list, so most requests can just pass in nil. | |||
| 28656 | 28728 | ||
| 28657 | ;;;*** | 28729 | ;;;*** |
| 28658 | 28730 | ||
| 28659 | ;;;### (autoloads nil "url-file" "url/url-file.el" (21607 54478 800121 | 28731 | ;;;### (autoloads nil "url-file" "url/url-file.el" (21604 48550 417934 |
| 28660 | ;;;;;; 42000)) | 28732 | ;;;;;; 229000)) |
| 28661 | ;;; Generated autoloads from url/url-file.el | 28733 | ;;; Generated autoloads from url/url-file.el |
| 28662 | 28734 | ||
| 28663 | (autoload 'url-file "url-file" "\ | 28735 | (autoload 'url-file "url-file" "\ |
| @@ -28667,8 +28739,8 @@ Handle file: and ftp: URLs. | |||
| 28667 | 28739 | ||
| 28668 | ;;;*** | 28740 | ;;;*** |
| 28669 | 28741 | ||
| 28670 | ;;;### (autoloads nil "url-gw" "url/url-gw.el" (21607 54478 800121 | 28742 | ;;;### (autoloads nil "url-gw" "url/url-gw.el" (21604 48550 417934 |
| 28671 | ;;;;;; 42000)) | 28743 | ;;;;;; 229000)) |
| 28672 | ;;; Generated autoloads from url/url-gw.el | 28744 | ;;; Generated autoloads from url/url-gw.el |
| 28673 | 28745 | ||
| 28674 | (autoload 'url-gateway-nslookup-host "url-gw" "\ | 28746 | (autoload 'url-gateway-nslookup-host "url-gw" "\ |
| @@ -28689,8 +28761,8 @@ overriding the value of `url-gateway-method'. | |||
| 28689 | 28761 | ||
| 28690 | ;;;*** | 28762 | ;;;*** |
| 28691 | 28763 | ||
| 28692 | ;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21607 | 28764 | ;;;### (autoloads nil "url-handlers" "url/url-handlers.el" (21604 |
| 28693 | ;;;;;; 54478 800121 42000)) | 28765 | ;;;;;; 48550 417934 229000)) |
| 28694 | ;;; Generated autoloads from url/url-handlers.el | 28766 | ;;; Generated autoloads from url/url-handlers.el |
| 28695 | 28767 | ||
| 28696 | (defvar url-handler-mode nil "\ | 28768 | (defvar url-handler-mode nil "\ |
| @@ -28744,8 +28816,8 @@ accessible. | |||
| 28744 | 28816 | ||
| 28745 | ;;;*** | 28817 | ;;;*** |
| 28746 | 28818 | ||
| 28747 | ;;;### (autoloads nil "url-http" "url/url-http.el" (21619 5051 260148 | 28819 | ;;;### (autoloads nil "url-http" "url/url-http.el" (21640 32530 998334 |
| 28748 | ;;;;;; 536000)) | 28820 | ;;;;;; 458000)) |
| 28749 | ;;; Generated autoloads from url/url-http.el | 28821 | ;;; Generated autoloads from url/url-http.el |
| 28750 | (autoload 'url-default-expander "url-expand") | 28822 | (autoload 'url-default-expander "url-expand") |
| 28751 | 28823 | ||
| @@ -28757,8 +28829,8 @@ accessible. | |||
| 28757 | 28829 | ||
| 28758 | ;;;*** | 28830 | ;;;*** |
| 28759 | 28831 | ||
| 28760 | ;;;### (autoloads nil "url-irc" "url/url-irc.el" (21607 54478 800121 | 28832 | ;;;### (autoloads nil "url-irc" "url/url-irc.el" (21604 48550 421934 |
| 28761 | ;;;;;; 42000)) | 28833 | ;;;;;; 229000)) |
| 28762 | ;;; Generated autoloads from url/url-irc.el | 28834 | ;;; Generated autoloads from url/url-irc.el |
| 28763 | 28835 | ||
| 28764 | (autoload 'url-irc "url-irc" "\ | 28836 | (autoload 'url-irc "url-irc" "\ |
| @@ -28768,8 +28840,8 @@ accessible. | |||
| 28768 | 28840 | ||
| 28769 | ;;;*** | 28841 | ;;;*** |
| 28770 | 28842 | ||
| 28771 | ;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (21607 54478 800121 | 28843 | ;;;### (autoloads nil "url-ldap" "url/url-ldap.el" (21604 48550 421934 |
| 28772 | ;;;;;; 42000)) | 28844 | ;;;;;; 229000)) |
| 28773 | ;;; Generated autoloads from url/url-ldap.el | 28845 | ;;; Generated autoloads from url/url-ldap.el |
| 28774 | 28846 | ||
| 28775 | (autoload 'url-ldap "url-ldap" "\ | 28847 | (autoload 'url-ldap "url-ldap" "\ |
| @@ -28782,8 +28854,8 @@ URL can be a URL string, or a URL vector of the type returned by | |||
| 28782 | 28854 | ||
| 28783 | ;;;*** | 28855 | ;;;*** |
| 28784 | 28856 | ||
| 28785 | ;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (21607 54478 | 28857 | ;;;### (autoloads nil "url-mailto" "url/url-mailto.el" (21604 48550 |
| 28786 | ;;;;;; 800121 42000)) | 28858 | ;;;;;; 421934 229000)) |
| 28787 | ;;; Generated autoloads from url/url-mailto.el | 28859 | ;;; Generated autoloads from url/url-mailto.el |
| 28788 | 28860 | ||
| 28789 | (autoload 'url-mail "url-mailto" "\ | 28861 | (autoload 'url-mail "url-mailto" "\ |
| @@ -28798,8 +28870,8 @@ Handle the mailto: URL syntax. | |||
| 28798 | 28870 | ||
| 28799 | ;;;*** | 28871 | ;;;*** |
| 28800 | 28872 | ||
| 28801 | ;;;### (autoloads nil "url-misc" "url/url-misc.el" (21607 54478 800121 | 28873 | ;;;### (autoloads nil "url-misc" "url/url-misc.el" (21604 48550 421934 |
| 28802 | ;;;;;; 42000)) | 28874 | ;;;;;; 229000)) |
| 28803 | ;;; Generated autoloads from url/url-misc.el | 28875 | ;;; Generated autoloads from url/url-misc.el |
| 28804 | 28876 | ||
| 28805 | (autoload 'url-man "url-misc" "\ | 28877 | (autoload 'url-man "url-misc" "\ |
| @@ -28830,8 +28902,8 @@ Fetch a data URL (RFC 2397). | |||
| 28830 | 28902 | ||
| 28831 | ;;;*** | 28903 | ;;;*** |
| 28832 | 28904 | ||
| 28833 | ;;;### (autoloads nil "url-news" "url/url-news.el" (21607 54478 800121 | 28905 | ;;;### (autoloads nil "url-news" "url/url-news.el" (21604 48550 421934 |
| 28834 | ;;;;;; 42000)) | 28906 | ;;;;;; 229000)) |
| 28835 | ;;; Generated autoloads from url/url-news.el | 28907 | ;;; Generated autoloads from url/url-news.el |
| 28836 | 28908 | ||
| 28837 | (autoload 'url-news "url-news" "\ | 28909 | (autoload 'url-news "url-news" "\ |
| @@ -28846,8 +28918,8 @@ Fetch a data URL (RFC 2397). | |||
| 28846 | 28918 | ||
| 28847 | ;;;*** | 28919 | ;;;*** |
| 28848 | 28920 | ||
| 28849 | ;;;### (autoloads nil "url-ns" "url/url-ns.el" (21607 54478 800121 | 28921 | ;;;### (autoloads nil "url-ns" "url/url-ns.el" (21604 48550 421934 |
| 28850 | ;;;;;; 42000)) | 28922 | ;;;;;; 229000)) |
| 28851 | ;;; Generated autoloads from url/url-ns.el | 28923 | ;;; Generated autoloads from url/url-ns.el |
| 28852 | 28924 | ||
| 28853 | (autoload 'isPlainHostName "url-ns" "\ | 28925 | (autoload 'isPlainHostName "url-ns" "\ |
| @@ -28887,8 +28959,8 @@ Fetch a data URL (RFC 2397). | |||
| 28887 | 28959 | ||
| 28888 | ;;;*** | 28960 | ;;;*** |
| 28889 | 28961 | ||
| 28890 | ;;;### (autoloads nil "url-parse" "url/url-parse.el" (21607 54478 | 28962 | ;;;### (autoloads nil "url-parse" "url/url-parse.el" (21604 48550 |
| 28891 | ;;;;;; 800121 42000)) | 28963 | ;;;;;; 421934 229000)) |
| 28892 | ;;; Generated autoloads from url/url-parse.el | 28964 | ;;; Generated autoloads from url/url-parse.el |
| 28893 | 28965 | ||
| 28894 | (autoload 'url-recreate-url "url-parse" "\ | 28966 | (autoload 'url-recreate-url "url-parse" "\ |
| @@ -28939,8 +29011,8 @@ parses to | |||
| 28939 | 29011 | ||
| 28940 | ;;;*** | 29012 | ;;;*** |
| 28941 | 29013 | ||
| 28942 | ;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (21607 54478 | 29014 | ;;;### (autoloads nil "url-privacy" "url/url-privacy.el" (21604 48550 |
| 28943 | ;;;;;; 800121 42000)) | 29015 | ;;;;;; 421934 229000)) |
| 28944 | ;;; Generated autoloads from url/url-privacy.el | 29016 | ;;; Generated autoloads from url/url-privacy.el |
| 28945 | 29017 | ||
| 28946 | (autoload 'url-setup-privacy-info "url-privacy" "\ | 29018 | (autoload 'url-setup-privacy-info "url-privacy" "\ |
| @@ -28950,8 +29022,8 @@ Setup variables that expose info about you and your system. | |||
| 28950 | 29022 | ||
| 28951 | ;;;*** | 29023 | ;;;*** |
| 28952 | 29024 | ||
| 28953 | ;;;### (autoloads nil "url-queue" "url/url-queue.el" (21619 5051 | 29025 | ;;;### (autoloads nil "url-queue" "url/url-queue.el" (21631 35966 |
| 28954 | ;;;;;; 260148 536000)) | 29026 | ;;;;;; 919121 870000)) |
| 28955 | ;;; Generated autoloads from url/url-queue.el | 29027 | ;;; Generated autoloads from url/url-queue.el |
| 28956 | 29028 | ||
| 28957 | (autoload 'url-queue-retrieve "url-queue" "\ | 29029 | (autoload 'url-queue-retrieve "url-queue" "\ |
| @@ -28965,8 +29037,8 @@ The variable `url-queue-timeout' sets a timeout. | |||
| 28965 | 29037 | ||
| 28966 | ;;;*** | 29038 | ;;;*** |
| 28967 | 29039 | ||
| 28968 | ;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (21607 54478 | 29040 | ;;;### (autoloads nil "url-tramp" "url/url-tramp.el" (21604 48550 |
| 28969 | ;;;;;; 800121 42000)) | 29041 | ;;;;;; 421934 229000)) |
| 28970 | ;;; Generated autoloads from url/url-tramp.el | 29042 | ;;; Generated autoloads from url/url-tramp.el |
| 28971 | 29043 | ||
| 28972 | (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\ | 29044 | (defvar url-tramp-protocols '("ftp" "ssh" "scp" "rsync" "telnet") "\ |
| @@ -28984,8 +29056,8 @@ would have been passed to OPERATION. | |||
| 28984 | 29056 | ||
| 28985 | ;;;*** | 29057 | ;;;*** |
| 28986 | 29058 | ||
| 28987 | ;;;### (autoloads nil "url-util" "url/url-util.el" (21607 54478 800121 | 29059 | ;;;### (autoloads nil "url-util" "url/url-util.el" (21604 48550 421934 |
| 28988 | ;;;;;; 42000)) | 29060 | ;;;;;; 229000)) |
| 28989 | ;;; Generated autoloads from url/url-util.el | 29061 | ;;; Generated autoloads from url/url-util.el |
| 28990 | 29062 | ||
| 28991 | (defvar url-debug nil "\ | 29063 | (defvar url-debug nil "\ |
| @@ -29153,8 +29225,8 @@ This uses `url-current-object', set locally to the buffer. | |||
| 29153 | 29225 | ||
| 29154 | ;;;*** | 29226 | ;;;*** |
| 29155 | 29227 | ||
| 29156 | ;;;### (autoloads nil "userlock" "userlock.el" (21607 54478 800121 | 29228 | ;;;### (autoloads nil "userlock" "userlock.el" (21604 48550 421934 |
| 29157 | ;;;;;; 42000)) | 29229 | ;;;;;; 229000)) |
| 29158 | ;;; Generated autoloads from userlock.el | 29230 | ;;; Generated autoloads from userlock.el |
| 29159 | 29231 | ||
| 29160 | (autoload 'ask-user-about-lock "userlock" "\ | 29232 | (autoload 'ask-user-about-lock "userlock" "\ |
| @@ -29182,8 +29254,8 @@ The buffer in question is current when this function is called. | |||
| 29182 | 29254 | ||
| 29183 | ;;;*** | 29255 | ;;;*** |
| 29184 | 29256 | ||
| 29185 | ;;;### (autoloads nil "utf-7" "international/utf-7.el" (21607 54478 | 29257 | ;;;### (autoloads nil "utf-7" "international/utf-7.el" (21604 48550 |
| 29186 | ;;;;;; 300138 641000)) | 29258 | ;;;;;; 141934 219000)) |
| 29187 | ;;; Generated autoloads from international/utf-7.el | 29259 | ;;; Generated autoloads from international/utf-7.el |
| 29188 | 29260 | ||
| 29189 | (autoload 'utf-7-post-read-conversion "utf-7" "\ | 29261 | (autoload 'utf-7-post-read-conversion "utf-7" "\ |
| @@ -29208,7 +29280,7 @@ The buffer in question is current when this function is called. | |||
| 29208 | 29280 | ||
| 29209 | ;;;*** | 29281 | ;;;*** |
| 29210 | 29282 | ||
| 29211 | ;;;### (autoloads nil "utf7" "gnus/utf7.el" (21607 54478 300138 641000)) | 29283 | ;;;### (autoloads nil "utf7" "gnus/utf7.el" (21604 48550 121934 218000)) |
| 29212 | ;;; Generated autoloads from gnus/utf7.el | 29284 | ;;; Generated autoloads from gnus/utf7.el |
| 29213 | 29285 | ||
| 29214 | (autoload 'utf7-encode "utf7" "\ | 29286 | (autoload 'utf7-encode "utf7" "\ |
| @@ -29218,8 +29290,8 @@ Encode UTF-7 STRING. Use IMAP modification if FOR-IMAP is non-nil. | |||
| 29218 | 29290 | ||
| 29219 | ;;;*** | 29291 | ;;;*** |
| 29220 | 29292 | ||
| 29221 | ;;;### (autoloads nil "uudecode" "mail/uudecode.el" (21607 54478 | 29293 | ;;;### (autoloads nil "uudecode" "mail/uudecode.el" (21604 48550 |
| 29222 | ;;;;;; 300138 641000)) | 29294 | ;;;;;; 189934 221000)) |
| 29223 | ;;; Generated autoloads from mail/uudecode.el | 29295 | ;;; Generated autoloads from mail/uudecode.el |
| 29224 | 29296 | ||
| 29225 | (autoload 'uudecode-decode-region-external "uudecode" "\ | 29297 | (autoload 'uudecode-decode-region-external "uudecode" "\ |
| @@ -29243,7 +29315,7 @@ If FILE-NAME is non-nil, save the result to FILE-NAME. | |||
| 29243 | 29315 | ||
| 29244 | ;;;*** | 29316 | ;;;*** |
| 29245 | 29317 | ||
| 29246 | ;;;### (autoloads nil "vc" "vc/vc.el" (21628 45530 160140 360000)) | 29318 | ;;;### (autoloads nil "vc" "vc/vc.el" (21649 1806 157181 933000)) |
| 29247 | ;;; Generated autoloads from vc/vc.el | 29319 | ;;; Generated autoloads from vc/vc.el |
| 29248 | 29320 | ||
| 29249 | (defvar vc-checkout-hook nil "\ | 29321 | (defvar vc-checkout-hook nil "\ |
| @@ -29282,8 +29354,7 @@ For old-style locking-based version control systems, like RCS: | |||
| 29282 | If every file is registered and unlocked, check out (lock) | 29354 | If every file is registered and unlocked, check out (lock) |
| 29283 | the file(s) for editing. | 29355 | the file(s) for editing. |
| 29284 | If every file is locked by you and has changes, pop up a | 29356 | If every file is locked by you and has changes, pop up a |
| 29285 | *vc-log* buffer to check in the changes. If the variable | 29357 | *vc-log* buffer to check in the changes. Leave a |
| 29286 | `vc-keep-workfiles' is non-nil (the default), leave a | ||
| 29287 | read-only copy of each changed file after checking in. | 29358 | read-only copy of each changed file after checking in. |
| 29288 | If every file is locked by you and unchanged, unlock them. | 29359 | If every file is locked by you and unchanged, unlock them. |
| 29289 | If every file is locked by someone else, offer to steal the lock. | 29360 | If every file is locked by someone else, offer to steal the lock. |
| @@ -29453,13 +29524,6 @@ to the working revision (except for keyword expansion). | |||
| 29453 | 29524 | ||
| 29454 | \(fn)" t nil) | 29525 | \(fn)" t nil) |
| 29455 | 29526 | ||
| 29456 | (autoload 'vc-rollback "vc" "\ | ||
| 29457 | Roll back (remove) the most recent changeset committed to the repository. | ||
| 29458 | This may be either a file-level or a repository-level operation, | ||
| 29459 | depending on the underlying version-control system. | ||
| 29460 | |||
| 29461 | \(fn)" t nil) | ||
| 29462 | |||
| 29463 | (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1") | 29527 | (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1") |
| 29464 | 29528 | ||
| 29465 | (autoload 'vc-pull "vc" "\ | 29529 | (autoload 'vc-pull "vc" "\ |
| @@ -29538,8 +29602,8 @@ Return the branch part of a revision number REV. | |||
| 29538 | 29602 | ||
| 29539 | ;;;*** | 29603 | ;;;*** |
| 29540 | 29604 | ||
| 29541 | ;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21607 54478 | 29605 | ;;;### (autoloads nil "vc-annotate" "vc/vc-annotate.el" (21604 48550 |
| 29542 | ;;;;;; 800121 42000)) | 29606 | ;;;;;; 433934 230000)) |
| 29543 | ;;; Generated autoloads from vc/vc-annotate.el | 29607 | ;;; Generated autoloads from vc/vc-annotate.el |
| 29544 | 29608 | ||
| 29545 | (autoload 'vc-annotate "vc-annotate" "\ | 29609 | (autoload 'vc-annotate "vc-annotate" "\ |
| @@ -29578,19 +29642,8 @@ should be applied to the background or to the foreground. | |||
| 29578 | 29642 | ||
| 29579 | ;;;*** | 29643 | ;;;*** |
| 29580 | 29644 | ||
| 29581 | ;;;### (autoloads nil "vc-arch" "vc/vc-arch.el" (21628 43483 380149 | 29645 | ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21645 25875 825189 |
| 29582 | ;;;;;; 771000)) | 29646 | ;;;;;; 881000)) |
| 29583 | ;;; Generated autoloads from vc/vc-arch.el | ||
| 29584 | (defun vc-arch-registered (file) | ||
| 29585 | (if (vc-find-root file "{arch}/=tagging-method") | ||
| 29586 | (progn | ||
| 29587 | (load "vc-arch" nil t) | ||
| 29588 | (vc-arch-registered file)))) | ||
| 29589 | |||
| 29590 | ;;;*** | ||
| 29591 | |||
| 29592 | ;;;### (autoloads nil "vc-bzr" "vc/vc-bzr.el" (21628 43483 380149 | ||
| 29593 | ;;;;;; 771000)) | ||
| 29594 | ;;; Generated autoloads from vc/vc-bzr.el | 29647 | ;;; Generated autoloads from vc/vc-bzr.el |
| 29595 | 29648 | ||
| 29596 | (defconst vc-bzr-admin-dirname ".bzr" "\ | 29649 | (defconst vc-bzr-admin-dirname ".bzr" "\ |
| @@ -29606,8 +29659,8 @@ Name of the format file in a .bzr directory.") | |||
| 29606 | 29659 | ||
| 29607 | ;;;*** | 29660 | ;;;*** |
| 29608 | 29661 | ||
| 29609 | ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (21628 43483 380149 | 29662 | ;;;### (autoloads nil "vc-cvs" "vc/vc-cvs.el" (21645 25875 825189 |
| 29610 | ;;;;;; 771000)) | 29663 | ;;;;;; 881000)) |
| 29611 | ;;; Generated autoloads from vc/vc-cvs.el | 29664 | ;;; Generated autoloads from vc/vc-cvs.el |
| 29612 | (defun vc-cvs-registered (f) | 29665 | (defun vc-cvs-registered (f) |
| 29613 | "Return non-nil if file F is registered with CVS." | 29666 | "Return non-nil if file F is registered with CVS." |
| @@ -29618,8 +29671,8 @@ Name of the format file in a .bzr directory.") | |||
| 29618 | 29671 | ||
| 29619 | ;;;*** | 29672 | ;;;*** |
| 29620 | 29673 | ||
| 29621 | ;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21607 54478 800121 | 29674 | ;;;### (autoloads nil "vc-dir" "vc/vc-dir.el" (21645 25761 817186 |
| 29622 | ;;;;;; 42000)) | 29675 | ;;;;;; 828000)) |
| 29623 | ;;; Generated autoloads from vc/vc-dir.el | 29676 | ;;; Generated autoloads from vc/vc-dir.el |
| 29624 | 29677 | ||
| 29625 | (autoload 'vc-dir "vc-dir" "\ | 29678 | (autoload 'vc-dir "vc-dir" "\ |
| @@ -29643,8 +29696,8 @@ These are the commands available for use in the file status buffer: | |||
| 29643 | 29696 | ||
| 29644 | ;;;*** | 29697 | ;;;*** |
| 29645 | 29698 | ||
| 29646 | ;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21607 | 29699 | ;;;### (autoloads nil "vc-dispatcher" "vc/vc-dispatcher.el" (21645 |
| 29647 | ;;;;;; 54478 800121 42000)) | 29700 | ;;;;;; 25761 817186 828000)) |
| 29648 | ;;; Generated autoloads from vc/vc-dispatcher.el | 29701 | ;;; Generated autoloads from vc/vc-dispatcher.el |
| 29649 | 29702 | ||
| 29650 | (autoload 'vc-do-command "vc-dispatcher" "\ | 29703 | (autoload 'vc-do-command "vc-dispatcher" "\ |
| @@ -29667,8 +29720,7 @@ case, and the process object in the asynchronous case. | |||
| 29667 | 29720 | ||
| 29668 | ;;;*** | 29721 | ;;;*** |
| 29669 | 29722 | ||
| 29670 | ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21628 45530 160140 | 29723 | ;;;### (autoloads nil "vc-git" "vc/vc-git.el" (21649 1521 25174 297000)) |
| 29671 | ;;;;;; 360000)) | ||
| 29672 | ;;; Generated autoloads from vc/vc-git.el | 29724 | ;;; Generated autoloads from vc/vc-git.el |
| 29673 | (defun vc-git-registered (file) | 29725 | (defun vc-git-registered (file) |
| 29674 | "Return non-nil if FILE is registered with git." | 29726 | "Return non-nil if FILE is registered with git." |
| @@ -29679,7 +29731,7 @@ case, and the process object in the asynchronous case. | |||
| 29679 | 29731 | ||
| 29680 | ;;;*** | 29732 | ;;;*** |
| 29681 | 29733 | ||
| 29682 | ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21628 43483 380149 771000)) | 29734 | ;;;### (autoloads nil "vc-hg" "vc/vc-hg.el" (21645 25875 841189 882000)) |
| 29683 | ;;; Generated autoloads from vc/vc-hg.el | 29735 | ;;; Generated autoloads from vc/vc-hg.el |
| 29684 | (defun vc-hg-registered (file) | 29736 | (defun vc-hg-registered (file) |
| 29685 | "Return non-nil if FILE is registered with hg." | 29737 | "Return non-nil if FILE is registered with hg." |
| @@ -29690,8 +29742,8 @@ case, and the process object in the asynchronous case. | |||
| 29690 | 29742 | ||
| 29691 | ;;;*** | 29743 | ;;;*** |
| 29692 | 29744 | ||
| 29693 | ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (21628 43483 380149 | 29745 | ;;;### (autoloads nil "vc-mtn" "vc/vc-mtn.el" (21645 25875 841189 |
| 29694 | ;;;;;; 771000)) | 29746 | ;;;;;; 882000)) |
| 29695 | ;;; Generated autoloads from vc/vc-mtn.el | 29747 | ;;; Generated autoloads from vc/vc-mtn.el |
| 29696 | 29748 | ||
| 29697 | (defconst vc-mtn-admin-dir "_MTN" "\ | 29749 | (defconst vc-mtn-admin-dir "_MTN" "\ |
| @@ -29707,8 +29759,8 @@ Name of the monotone directory's format file.") | |||
| 29707 | 29759 | ||
| 29708 | ;;;*** | 29760 | ;;;*** |
| 29709 | 29761 | ||
| 29710 | ;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (21628 43483 380149 | 29762 | ;;;### (autoloads nil "vc-rcs" "vc/vc-rcs.el" (21645 25875 841189 |
| 29711 | ;;;;;; 771000)) | 29763 | ;;;;;; 882000)) |
| 29712 | ;;; Generated autoloads from vc/vc-rcs.el | 29764 | ;;; Generated autoloads from vc/vc-rcs.el |
| 29713 | 29765 | ||
| 29714 | (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ | 29766 | (defvar vc-rcs-master-templates (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")) "\ |
| @@ -29721,8 +29773,8 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 29721 | 29773 | ||
| 29722 | ;;;*** | 29774 | ;;;*** |
| 29723 | 29775 | ||
| 29724 | ;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (21628 43483 380149 | 29776 | ;;;### (autoloads nil "vc-sccs" "vc/vc-sccs.el" (21645 25875 837189 |
| 29725 | ;;;;;; 771000)) | 29777 | ;;;;;; 882000)) |
| 29726 | ;;; Generated autoloads from vc/vc-sccs.el | 29778 | ;;; Generated autoloads from vc/vc-sccs.el |
| 29727 | 29779 | ||
| 29728 | (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ | 29780 | (defvar vc-sccs-master-templates (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)) "\ |
| @@ -29740,8 +29792,8 @@ find any project directory." (let ((project-dir (getenv "PROJECTDIR")) dirs dir) | |||
| 29740 | 29792 | ||
| 29741 | ;;;*** | 29793 | ;;;*** |
| 29742 | 29794 | ||
| 29743 | ;;;### (autoloads nil "vc-src" "vc/vc-src.el" (21628 43483 380149 | 29795 | ;;;### (autoloads nil "vc-src" "vc/vc-src.el" (21645 25875 837189 |
| 29744 | ;;;;;; 771000)) | 29796 | ;;;;;; 882000)) |
| 29745 | ;;; Generated autoloads from vc/vc-src.el | 29797 | ;;; Generated autoloads from vc/vc-src.el |
| 29746 | 29798 | ||
| 29747 | (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\ | 29799 | (defvar vc-src-master-templates (purecopy '("%s.src/%s,v")) "\ |
| @@ -29754,8 +29806,8 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 29754 | 29806 | ||
| 29755 | ;;;*** | 29807 | ;;;*** |
| 29756 | 29808 | ||
| 29757 | ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (21628 43483 380149 | 29809 | ;;;### (autoloads nil "vc-svn" "vc/vc-svn.el" (21650 56624 523745 |
| 29758 | ;;;;;; 771000)) | 29810 | ;;;;;; 975000)) |
| 29759 | ;;; Generated autoloads from vc/vc-svn.el | 29811 | ;;; Generated autoloads from vc/vc-svn.el |
| 29760 | (defun vc-svn-registered (f) | 29812 | (defun vc-svn-registered (f) |
| 29761 | (let ((admin-dir (cond ((and (eq system-type 'windows-nt) | 29813 | (let ((admin-dir (cond ((and (eq system-type 'windows-nt) |
| @@ -29768,8 +29820,8 @@ For a description of possible values, see `vc-check-master-templates'.") | |||
| 29768 | 29820 | ||
| 29769 | ;;;*** | 29821 | ;;;*** |
| 29770 | 29822 | ||
| 29771 | ;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (21607 | 29823 | ;;;### (autoloads nil "vera-mode" "progmodes/vera-mode.el" (21604 |
| 29772 | ;;;;;; 54478 800121 42000)) | 29824 | ;;;;;; 48550 361934 227000)) |
| 29773 | ;;; Generated autoloads from progmodes/vera-mode.el | 29825 | ;;; Generated autoloads from progmodes/vera-mode.el |
| 29774 | (push (purecopy '(vera-mode 2 28)) package--builtin-versions) | 29826 | (push (purecopy '(vera-mode 2 28)) package--builtin-versions) |
| 29775 | (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) | 29827 | (add-to-list 'auto-mode-alist (cons (purecopy "\\.vr[hi]?\\'") 'vera-mode)) |
| @@ -29828,7 +29880,7 @@ Key bindings: | |||
| 29828 | ;;;*** | 29880 | ;;;*** |
| 29829 | 29881 | ||
| 29830 | ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" | 29882 | ;;;### (autoloads nil "verilog-mode" "progmodes/verilog-mode.el" |
| 29831 | ;;;;;; (21607 54478 800121 42000)) | 29883 | ;;;;;; (21645 25761 813186 828000)) |
| 29832 | ;;; Generated autoloads from progmodes/verilog-mode.el | 29884 | ;;; Generated autoloads from progmodes/verilog-mode.el |
| 29833 | 29885 | ||
| 29834 | (autoload 'verilog-mode "verilog-mode" "\ | 29886 | (autoload 'verilog-mode "verilog-mode" "\ |
| @@ -29967,8 +30019,8 @@ Key bindings specific to `verilog-mode-map' are: | |||
| 29967 | 30019 | ||
| 29968 | ;;;*** | 30020 | ;;;*** |
| 29969 | 30021 | ||
| 29970 | ;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21607 | 30022 | ;;;### (autoloads nil "vhdl-mode" "progmodes/vhdl-mode.el" (21640 |
| 29971 | ;;;;;; 54478 800121 42000)) | 30023 | ;;;;;; 32530 994334 458000)) |
| 29972 | ;;; Generated autoloads from progmodes/vhdl-mode.el | 30024 | ;;; Generated autoloads from progmodes/vhdl-mode.el |
| 29973 | 30025 | ||
| 29974 | (autoload 'vhdl-mode "vhdl-mode" "\ | 30026 | (autoload 'vhdl-mode "vhdl-mode" "\ |
| @@ -30522,8 +30574,8 @@ Key bindings: | |||
| 30522 | 30574 | ||
| 30523 | ;;;*** | 30575 | ;;;*** |
| 30524 | 30576 | ||
| 30525 | ;;;### (autoloads nil "viet-util" "language/viet-util.el" (21607 | 30577 | ;;;### (autoloads nil "viet-util" "language/viet-util.el" (21604 |
| 30526 | ;;;;;; 54478 300138 641000)) | 30578 | ;;;;;; 48550 157934 220000)) |
| 30527 | ;;; Generated autoloads from language/viet-util.el | 30579 | ;;; Generated autoloads from language/viet-util.el |
| 30528 | 30580 | ||
| 30529 | (autoload 'viet-encode-viscii-char "viet-util" "\ | 30581 | (autoload 'viet-encode-viscii-char "viet-util" "\ |
| @@ -30567,7 +30619,7 @@ Convert Vietnamese characters of the current buffer to `VIQR' mnemonics. | |||
| 30567 | 30619 | ||
| 30568 | ;;;*** | 30620 | ;;;*** |
| 30569 | 30621 | ||
| 30570 | ;;;### (autoloads nil "view" "view.el" (21607 54478 800121 42000)) | 30622 | ;;;### (autoloads nil "view" "view.el" (21604 48550 437934 230000)) |
| 30571 | ;;; Generated autoloads from view.el | 30623 | ;;; Generated autoloads from view.el |
| 30572 | 30624 | ||
| 30573 | (defvar view-remove-frame-by-deleting t "\ | 30625 | (defvar view-remove-frame-by-deleting t "\ |
| @@ -30823,8 +30875,8 @@ Exit View mode and make the current buffer editable. | |||
| 30823 | 30875 | ||
| 30824 | ;;;*** | 30876 | ;;;*** |
| 30825 | 30877 | ||
| 30826 | ;;;### (autoloads nil "viper" "emulation/viper.el" (21607 54478 300138 | 30878 | ;;;### (autoloads nil "viper" "emulation/viper.el" (21604 48550 33934 |
| 30827 | ;;;;;; 641000)) | 30879 | ;;;;;; 215000)) |
| 30828 | ;;; Generated autoloads from emulation/viper.el | 30880 | ;;; Generated autoloads from emulation/viper.el |
| 30829 | (push (purecopy '(viper 3 14 1)) package--builtin-versions) | 30881 | (push (purecopy '(viper 3 14 1)) package--builtin-versions) |
| 30830 | 30882 | ||
| @@ -30841,8 +30893,8 @@ Turn on Viper emulation of Vi in Emacs. See Info node `(viper)Top'. | |||
| 30841 | 30893 | ||
| 30842 | ;;;*** | 30894 | ;;;*** |
| 30843 | 30895 | ||
| 30844 | ;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (21607 | 30896 | ;;;### (autoloads nil "warnings" "emacs-lisp/warnings.el" (21604 |
| 30845 | ;;;;;; 54477 800124 118000)) | 30897 | ;;;;;; 48550 25934 215000)) |
| 30846 | ;;; Generated autoloads from emacs-lisp/warnings.el | 30898 | ;;; Generated autoloads from emacs-lisp/warnings.el |
| 30847 | 30899 | ||
| 30848 | (defvar warning-prefix-function nil "\ | 30900 | (defvar warning-prefix-function nil "\ |
| @@ -30932,7 +30984,7 @@ this is equivalent to `display-warning', using | |||
| 30932 | 30984 | ||
| 30933 | ;;;*** | 30985 | ;;;*** |
| 30934 | 30986 | ||
| 30935 | ;;;### (autoloads nil "wdired" "wdired.el" (21607 54478 800121 42000)) | 30987 | ;;;### (autoloads nil "wdired" "wdired.el" (21604 48550 441934 230000)) |
| 30936 | ;;; Generated autoloads from wdired.el | 30988 | ;;; Generated autoloads from wdired.el |
| 30937 | (push (purecopy '(wdired 2 0)) package--builtin-versions) | 30989 | (push (purecopy '(wdired 2 0)) package--builtin-versions) |
| 30938 | 30990 | ||
| @@ -30950,8 +31002,8 @@ See `wdired-mode'. | |||
| 30950 | 31002 | ||
| 30951 | ;;;*** | 31003 | ;;;*** |
| 30952 | 31004 | ||
| 30953 | ;;;### (autoloads nil "webjump" "net/webjump.el" (21607 54478 300138 | 31005 | ;;;### (autoloads nil "webjump" "net/webjump.el" (21604 48550 233934 |
| 30954 | ;;;;;; 641000)) | 31006 | ;;;;;; 222000)) |
| 30955 | ;;; Generated autoloads from net/webjump.el | 31007 | ;;; Generated autoloads from net/webjump.el |
| 30956 | 31008 | ||
| 30957 | (autoload 'webjump "webjump" "\ | 31009 | (autoload 'webjump "webjump" "\ |
| @@ -30967,8 +31019,8 @@ Please submit bug reports and other feedback to the author, Neil W. Van Dyke | |||
| 30967 | 31019 | ||
| 30968 | ;;;*** | 31020 | ;;;*** |
| 30969 | 31021 | ||
| 30970 | ;;;### (autoloads nil "which-func" "progmodes/which-func.el" (21607 | 31022 | ;;;### (autoloads nil "which-func" "progmodes/which-func.el" (21604 |
| 30971 | ;;;;;; 54478 800121 42000)) | 31023 | ;;;;;; 48550 365934 227000)) |
| 30972 | ;;; Generated autoloads from progmodes/which-func.el | 31024 | ;;; Generated autoloads from progmodes/which-func.el |
| 30973 | (put 'which-func-format 'risky-local-variable t) | 31025 | (put 'which-func-format 'risky-local-variable t) |
| 30974 | (put 'which-func-current 'risky-local-variable t) | 31026 | (put 'which-func-current 'risky-local-variable t) |
| @@ -30998,8 +31050,8 @@ in certain major modes. | |||
| 30998 | 31050 | ||
| 30999 | ;;;*** | 31051 | ;;;*** |
| 31000 | 31052 | ||
| 31001 | ;;;### (autoloads nil "whitespace" "whitespace.el" (21607 54478 800121 | 31053 | ;;;### (autoloads nil "whitespace" "whitespace.el" (21631 35966 927121 |
| 31002 | ;;;;;; 42000)) | 31054 | ;;;;;; 870000)) |
| 31003 | ;;; Generated autoloads from whitespace.el | 31055 | ;;; Generated autoloads from whitespace.el |
| 31004 | (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) | 31056 | (push (purecopy '(whitespace 13 2 2)) package--builtin-versions) |
| 31005 | 31057 | ||
| @@ -31367,8 +31419,8 @@ cleaning up these problems. | |||
| 31367 | 31419 | ||
| 31368 | ;;;*** | 31420 | ;;;*** |
| 31369 | 31421 | ||
| 31370 | ;;;### (autoloads nil "wid-browse" "wid-browse.el" (21607 54478 800121 | 31422 | ;;;### (autoloads nil "wid-browse" "wid-browse.el" (21604 48550 441934 |
| 31371 | ;;;;;; 42000)) | 31423 | ;;;;;; 230000)) |
| 31372 | ;;; Generated autoloads from wid-browse.el | 31424 | ;;; Generated autoloads from wid-browse.el |
| 31373 | 31425 | ||
| 31374 | (autoload 'widget-browse-at "wid-browse" "\ | 31426 | (autoload 'widget-browse-at "wid-browse" "\ |
| @@ -31396,8 +31448,8 @@ if ARG is omitted or nil. | |||
| 31396 | 31448 | ||
| 31397 | ;;;*** | 31449 | ;;;*** |
| 31398 | 31450 | ||
| 31399 | ;;;### (autoloads nil "wid-edit" "wid-edit.el" (21607 54478 800121 | 31451 | ;;;### (autoloads nil "wid-edit" "wid-edit.el" (21637 50476 687217 |
| 31400 | ;;;;;; 42000)) | 31452 | ;;;;;; 122000)) |
| 31401 | ;;; Generated autoloads from wid-edit.el | 31453 | ;;; Generated autoloads from wid-edit.el |
| 31402 | 31454 | ||
| 31403 | (autoload 'widgetp "wid-edit" "\ | 31455 | (autoload 'widgetp "wid-edit" "\ |
| @@ -31439,8 +31491,8 @@ Setup current buffer so editing string widgets works. | |||
| 31439 | 31491 | ||
| 31440 | ;;;*** | 31492 | ;;;*** |
| 31441 | 31493 | ||
| 31442 | ;;;### (autoloads nil "windmove" "windmove.el" (21607 54478 800121 | 31494 | ;;;### (autoloads nil "windmove" "windmove.el" (21604 48550 441934 |
| 31443 | ;;;;;; 42000)) | 31495 | ;;;;;; 230000)) |
| 31444 | ;;; Generated autoloads from windmove.el | 31496 | ;;; Generated autoloads from windmove.el |
| 31445 | 31497 | ||
| 31446 | (autoload 'windmove-left "windmove" "\ | 31498 | (autoload 'windmove-left "windmove" "\ |
| @@ -31492,7 +31544,7 @@ Default MODIFIER is 'shift. | |||
| 31492 | 31544 | ||
| 31493 | ;;;*** | 31545 | ;;;*** |
| 31494 | 31546 | ||
| 31495 | ;;;### (autoloads nil "winner" "winner.el" (21607 54478 800121 42000)) | 31547 | ;;;### (autoloads nil "winner" "winner.el" (21604 48550 445934 230000)) |
| 31496 | ;;; Generated autoloads from winner.el | 31548 | ;;; Generated autoloads from winner.el |
| 31497 | 31549 | ||
| 31498 | (defvar winner-mode nil "\ | 31550 | (defvar winner-mode nil "\ |
| @@ -31515,7 +31567,7 @@ the mode if ARG is omitted or nil, and toggle it if ARG is `toggle'. | |||
| 31515 | 31567 | ||
| 31516 | ;;;*** | 31568 | ;;;*** |
| 31517 | 31569 | ||
| 31518 | ;;;### (autoloads nil "woman" "woman.el" (21607 54478 800121 42000)) | 31570 | ;;;### (autoloads nil "woman" "woman.el" (21604 48550 445934 230000)) |
| 31519 | ;;; Generated autoloads from woman.el | 31571 | ;;; Generated autoloads from woman.el |
| 31520 | (push (purecopy '(woman 0 551)) package--builtin-versions) | 31572 | (push (purecopy '(woman 0 551)) package--builtin-versions) |
| 31521 | 31573 | ||
| @@ -31564,7 +31616,7 @@ Default bookmark handler for Woman buffers. | |||
| 31564 | 31616 | ||
| 31565 | ;;;*** | 31617 | ;;;*** |
| 31566 | 31618 | ||
| 31567 | ;;;### (autoloads nil "xml" "xml.el" (21607 54478 800121 42000)) | 31619 | ;;;### (autoloads nil "xml" "xml.el" (21604 48550 445934 230000)) |
| 31568 | ;;; Generated autoloads from xml.el | 31620 | ;;; Generated autoloads from xml.el |
| 31569 | 31621 | ||
| 31570 | (autoload 'xml-parse-file "xml" "\ | 31622 | (autoload 'xml-parse-file "xml" "\ |
| @@ -31620,8 +31672,8 @@ Both features can be combined by providing a cons cell | |||
| 31620 | 31672 | ||
| 31621 | ;;;*** | 31673 | ;;;*** |
| 31622 | 31674 | ||
| 31623 | ;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (21607 54478 300138 | 31675 | ;;;### (autoloads nil "xmltok" "nxml/xmltok.el" (21604 48550 241934 |
| 31624 | ;;;;;; 641000)) | 31676 | ;;;;;; 223000)) |
| 31625 | ;;; Generated autoloads from nxml/xmltok.el | 31677 | ;;; Generated autoloads from nxml/xmltok.el |
| 31626 | 31678 | ||
| 31627 | (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ | 31679 | (autoload 'xmltok-get-declared-encoding-position "xmltok" "\ |
| @@ -31639,8 +31691,52 @@ If LIMIT is non-nil, then do not consider characters beyond LIMIT. | |||
| 31639 | 31691 | ||
| 31640 | ;;;*** | 31692 | ;;;*** |
| 31641 | 31693 | ||
| 31642 | ;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21607 54478 800121 | 31694 | ;;;### (autoloads nil "xref" "progmodes/xref.el" (21660 28432 372929 |
| 31643 | ;;;;;; 42000)) | 31695 | ;;;;;; 801000)) |
| 31696 | ;;; Generated autoloads from progmodes/xref.el | ||
| 31697 | |||
| 31698 | (autoload 'xref-pop-marker-stack "xref" "\ | ||
| 31699 | Pop back to where \\[xref-find-definitions] was last invoked. | ||
| 31700 | |||
| 31701 | \(fn)" t nil) | ||
| 31702 | |||
| 31703 | (autoload 'xref-find-definitions "xref" "\ | ||
| 31704 | Find the definition of the identifier at point. | ||
| 31705 | With prefix argument, prompt for the identifier. | ||
| 31706 | |||
| 31707 | \(fn IDENTIFIER)" t nil) | ||
| 31708 | |||
| 31709 | (autoload 'xref-find-definitions-other-window "xref" "\ | ||
| 31710 | Like `xref-find-definitions' but switch to the other window. | ||
| 31711 | |||
| 31712 | \(fn IDENTIFIER)" t nil) | ||
| 31713 | |||
| 31714 | (autoload 'xref-find-definitions-other-frame "xref" "\ | ||
| 31715 | Like `xref-find-definitions' but switch to the other frame. | ||
| 31716 | |||
| 31717 | \(fn IDENTIFIER)" t nil) | ||
| 31718 | |||
| 31719 | (autoload 'xref-find-references "xref" "\ | ||
| 31720 | Find references to the identifier at point. | ||
| 31721 | With prefix argument, prompt for the identifier. | ||
| 31722 | |||
| 31723 | \(fn IDENTIFIER)" t nil) | ||
| 31724 | |||
| 31725 | (autoload 'xref-find-apropos "xref" "\ | ||
| 31726 | Find all meaningful symbols that match PATTERN. | ||
| 31727 | The argument has the same meaning as in `apropos'. | ||
| 31728 | |||
| 31729 | \(fn PATTERN)" t nil) | ||
| 31730 | (define-key esc-map "." #'xref-find-definitions) | ||
| 31731 | (define-key esc-map "," #'xref-pop-marker-stack) | ||
| 31732 | (define-key esc-map [?\C-.] #'xref-find-apropos) | ||
| 31733 | (define-key ctl-x-4-map "." #'xref-find-definitions-other-window) | ||
| 31734 | (define-key ctl-x-5-map "." #'xref-find-definitions-other-frame) | ||
| 31735 | |||
| 31736 | ;;;*** | ||
| 31737 | |||
| 31738 | ;;;### (autoloads nil "xt-mouse" "xt-mouse.el" (21604 48550 445934 | ||
| 31739 | ;;;;;; 230000)) | ||
| 31644 | ;;; Generated autoloads from xt-mouse.el | 31740 | ;;; Generated autoloads from xt-mouse.el |
| 31645 | 31741 | ||
| 31646 | (defvar xterm-mouse-mode nil "\ | 31742 | (defvar xterm-mouse-mode nil "\ |
| @@ -31669,7 +31765,7 @@ down the SHIFT key while pressing the mouse button. | |||
| 31669 | 31765 | ||
| 31670 | ;;;*** | 31766 | ;;;*** |
| 31671 | 31767 | ||
| 31672 | ;;;### (autoloads nil "yenc" "gnus/yenc.el" (21607 54478 300138 641000)) | 31768 | ;;;### (autoloads nil "yenc" "gnus/yenc.el" (21604 48550 121934 218000)) |
| 31673 | ;;; Generated autoloads from gnus/yenc.el | 31769 | ;;; Generated autoloads from gnus/yenc.el |
| 31674 | 31770 | ||
| 31675 | (autoload 'yenc-decode-region "yenc" "\ | 31771 | (autoload 'yenc-decode-region "yenc" "\ |
| @@ -31684,7 +31780,7 @@ Extract file name from an yenc header. | |||
| 31684 | 31780 | ||
| 31685 | ;;;*** | 31781 | ;;;*** |
| 31686 | 31782 | ||
| 31687 | ;;;### (autoloads nil "zone" "play/zone.el" (21607 54478 800121 42000)) | 31783 | ;;;### (autoloads nil "zone" "play/zone.el" (21604 48550 309934 225000)) |
| 31688 | ;;; Generated autoloads from play/zone.el | 31784 | ;;; Generated autoloads from play/zone.el |
| 31689 | 31785 | ||
| 31690 | (autoload 'zone "zone" "\ | 31786 | (autoload 'zone "zone" "\ |
| @@ -31730,9 +31826,11 @@ Zone out, completely. | |||
| 31730 | ;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/semantic/analyze.el" | 31826 | ;;;;;; "cedet/ede/system.el" "cedet/ede/util.el" "cedet/semantic/analyze.el" |
| 31731 | ;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" | 31827 | ;;;;;; "cedet/semantic/analyze/complete.el" "cedet/semantic/analyze/debug.el" |
| 31732 | ;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" | 31828 | ;;;;;; "cedet/semantic/analyze/fcn.el" "cedet/semantic/analyze/refs.el" |
| 31733 | ;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" | 31829 | ;;;;;; "cedet/semantic/bovine.el" "cedet/semantic/bovine/c-by.el" |
| 31830 | ;;;;;; "cedet/semantic/bovine/c.el" "cedet/semantic/bovine/debug.el" | ||
| 31734 | ;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" | 31831 | ;;;;;; "cedet/semantic/bovine/el.el" "cedet/semantic/bovine/gcc.el" |
| 31735 | ;;;;;; "cedet/semantic/bovine/make.el" "cedet/semantic/bovine/scm.el" | 31832 | ;;;;;; "cedet/semantic/bovine/make-by.el" "cedet/semantic/bovine/make.el" |
| 31833 | ;;;;;; "cedet/semantic/bovine/scm-by.el" "cedet/semantic/bovine/scm.el" | ||
| 31736 | ;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" | 31834 | ;;;;;; "cedet/semantic/chart.el" "cedet/semantic/complete.el" "cedet/semantic/ctxt.el" |
| 31737 | ;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" | 31835 | ;;;;;; "cedet/semantic/db-debug.el" "cedet/semantic/db-ebrowse.el" |
| 31738 | ;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" | 31836 | ;;;;;; "cedet/semantic/db-el.el" "cedet/semantic/db-file.el" "cedet/semantic/db-find.el" |
| @@ -31755,38 +31853,41 @@ Zone out, completely. | |||
| 31755 | ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" | 31853 | ;;;;;; "cedet/semantic/tag.el" "cedet/semantic/texi.el" "cedet/semantic/util-modes.el" |
| 31756 | ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" | 31854 | ;;;;;; "cedet/semantic/util.el" "cedet/semantic/wisent.el" "cedet/semantic/wisent/comp.el" |
| 31757 | ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" | 31855 | ;;;;;; "cedet/semantic/wisent/java-tags.el" "cedet/semantic/wisent/javascript.el" |
| 31758 | ;;;;;; "cedet/semantic/wisent/python.el" "cedet/semantic/wisent/wisent.el" | 31856 | ;;;;;; "cedet/semantic/wisent/javat-wy.el" "cedet/semantic/wisent/js-wy.el" |
| 31759 | ;;;;;; "cedet/srecode/args.el" "cedet/srecode/compile.el" "cedet/srecode/cpp.el" | 31857 | ;;;;;; "cedet/semantic/wisent/python-wy.el" "cedet/semantic/wisent/python.el" |
| 31760 | ;;;;;; "cedet/srecode/ctxt.el" "cedet/srecode/dictionary.el" "cedet/srecode/document.el" | 31858 | ;;;;;; "cedet/semantic/wisent/wisent.el" "cedet/srecode/args.el" |
| 31859 | ;;;;;; "cedet/srecode/compile.el" "cedet/srecode/cpp.el" "cedet/srecode/ctxt.el" | ||
| 31860 | ;;;;;; "cedet/srecode/dictionary.el" "cedet/srecode/document.el" | ||
| 31761 | ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" | 31861 | ;;;;;; "cedet/srecode/el.el" "cedet/srecode/expandproto.el" "cedet/srecode/extract.el" |
| 31762 | ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" | 31862 | ;;;;;; "cedet/srecode/fields.el" "cedet/srecode/filters.el" "cedet/srecode/find.el" |
| 31763 | ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" | 31863 | ;;;;;; "cedet/srecode/getset.el" "cedet/srecode/insert.el" "cedet/srecode/java.el" |
| 31764 | ;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" | 31864 | ;;;;;; "cedet/srecode/loaddefs.el" "cedet/srecode/map.el" "cedet/srecode/mode.el" |
| 31765 | ;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt.el" "cedet/srecode/table.el" | 31865 | ;;;;;; "cedet/srecode/semantic.el" "cedet/srecode/srt-wy.el" "cedet/srecode/srt.el" |
| 31766 | ;;;;;; "cedet/srecode/template.el" "cedet/srecode/texi.el" "cus-dep.el" | 31866 | ;;;;;; "cedet/srecode/table.el" "cedet/srecode/template.el" "cedet/srecode/texi.el" |
| 31767 | ;;;;;; "dframe.el" "dired-aux.el" "dired-x.el" "dom.el" "dos-fns.el" | 31867 | ;;;;;; "cus-dep.el" "cus-load.el" "dframe.el" "dired-aux.el" "dired-x.el" |
| 31768 | ;;;;;; "dos-vars.el" "dos-w32.el" "dynamic-setting.el" "emacs-lisp/avl-tree.el" | 31868 | ;;;;;; "dom.el" "dos-fns.el" "dos-vars.el" "dos-w32.el" "dynamic-setting.el" |
| 31769 | ;;;;;; "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" "emacs-lisp/cl-extra.el" | 31869 | ;;;;;; "emacs-lisp/avl-tree.el" "emacs-lisp/bindat.el" "emacs-lisp/byte-opt.el" |
| 31770 | ;;;;;; "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" "emacs-lisp/cl-seq.el" | 31870 | ;;;;;; "emacs-lisp/cl-extra.el" "emacs-lisp/cl-loaddefs.el" "emacs-lisp/cl-macs.el" |
| 31771 | ;;;;;; "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" "emacs-lisp/eieio-custom.el" | 31871 | ;;;;;; "emacs-lisp/cl-seq.el" "emacs-lisp/cl.el" "emacs-lisp/eieio-base.el" |
| 31772 | ;;;;;; "emacs-lisp/eieio-datadebug.el" "emacs-lisp/eieio-opt.el" | 31872 | ;;;;;; "emacs-lisp/eieio-custom.el" "emacs-lisp/eieio-datadebug.el" |
| 31773 | ;;;;;; "emacs-lisp/eieio-speedbar.el" "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" | 31873 | ;;;;;; "emacs-lisp/eieio-opt.el" "emacs-lisp/eieio-speedbar.el" |
| 31774 | ;;;;;; "emacs-lisp/smie.el" "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" | 31874 | ;;;;;; "emacs-lisp/lisp-mnt.el" "emacs-lisp/package-x.el" "emacs-lisp/smie.el" |
| 31775 | ;;;;;; "emacs-lisp/tcover-unsafep.el" "emulation/cua-gmrk.el" "emulation/edt-lk201.el" | 31875 | ;;;;;; "emacs-lisp/subr-x.el" "emacs-lisp/tcover-ses.el" "emacs-lisp/tcover-unsafep.el" |
| 31776 | ;;;;;; "emulation/edt-mapper.el" "emulation/edt-pc.el" "emulation/edt-vt100.el" | 31876 | ;;;;;; "emulation/cua-gmrk.el" "emulation/edt-lk201.el" "emulation/edt-mapper.el" |
| 31777 | ;;;;;; "emulation/viper-cmd.el" "emulation/viper-ex.el" "emulation/viper-init.el" | 31877 | ;;;;;; "emulation/edt-pc.el" "emulation/edt-vt100.el" "emulation/viper-cmd.el" |
| 31778 | ;;;;;; "emulation/viper-keym.el" "emulation/viper-macs.el" "emulation/viper-mous.el" | 31878 | ;;;;;; "emulation/viper-ex.el" "emulation/viper-init.el" "emulation/viper-keym.el" |
| 31779 | ;;;;;; "emulation/viper-util.el" "erc/erc-backend.el" "erc/erc-goodies.el" | 31879 | ;;;;;; "emulation/viper-macs.el" "emulation/viper-mous.el" "emulation/viper-util.el" |
| 31780 | ;;;;;; "erc/erc-ibuffer.el" "erc/erc-lang.el" "eshell/em-alias.el" | 31880 | ;;;;;; "erc/erc-backend.el" "erc/erc-goodies.el" "erc/erc-ibuffer.el" |
| 31781 | ;;;;;; "eshell/em-banner.el" "eshell/em-basic.el" "eshell/em-cmpl.el" | 31881 | ;;;;;; "erc/erc-lang.el" "eshell/em-alias.el" "eshell/em-banner.el" |
| 31782 | ;;;;;; "eshell/em-dirs.el" "eshell/em-glob.el" "eshell/em-hist.el" | 31882 | ;;;;;; "eshell/em-basic.el" "eshell/em-cmpl.el" "eshell/em-dirs.el" |
| 31783 | ;;;;;; "eshell/em-ls.el" "eshell/em-pred.el" "eshell/em-prompt.el" | 31883 | ;;;;;; "eshell/em-glob.el" "eshell/em-hist.el" "eshell/em-ls.el" |
| 31784 | ;;;;;; "eshell/em-rebind.el" "eshell/em-script.el" "eshell/em-smart.el" | 31884 | ;;;;;; "eshell/em-pred.el" "eshell/em-prompt.el" "eshell/em-rebind.el" |
| 31785 | ;;;;;; "eshell/em-term.el" "eshell/em-tramp.el" "eshell/em-unix.el" | 31885 | ;;;;;; "eshell/em-script.el" "eshell/em-smart.el" "eshell/em-term.el" |
| 31786 | ;;;;;; "eshell/em-xtra.el" "eshell/esh-arg.el" "eshell/esh-cmd.el" | 31886 | ;;;;;; "eshell/em-tramp.el" "eshell/em-unix.el" "eshell/em-xtra.el" |
| 31787 | ;;;;;; "eshell/esh-ext.el" "eshell/esh-groups.el" "eshell/esh-io.el" | 31887 | ;;;;;; "eshell/esh-arg.el" "eshell/esh-cmd.el" "eshell/esh-ext.el" |
| 31788 | ;;;;;; "eshell/esh-module.el" "eshell/esh-opt.el" "eshell/esh-proc.el" | 31888 | ;;;;;; "eshell/esh-groups.el" "eshell/esh-io.el" "eshell/esh-module.el" |
| 31789 | ;;;;;; "eshell/esh-util.el" "eshell/esh-var.el" "ezimage.el" "format-spec.el" | 31889 | ;;;;;; "eshell/esh-opt.el" "eshell/esh-proc.el" "eshell/esh-util.el" |
| 31890 | ;;;;;; "eshell/esh-var.el" "ezimage.el" "finder-inf.el" "format-spec.el" | ||
| 31790 | ;;;;;; "fringe.el" "generic-x.el" "gnus/compface.el" "gnus/gnus-async.el" | 31891 | ;;;;;; "fringe.el" "generic-x.el" "gnus/compface.el" "gnus/gnus-async.el" |
| 31791 | ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cloud.el" | 31892 | ;;;;;; "gnus/gnus-bcklg.el" "gnus/gnus-cite.el" "gnus/gnus-cloud.el" |
| 31792 | ;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el" | 31893 | ;;;;;; "gnus/gnus-cus.el" "gnus/gnus-demon.el" "gnus/gnus-dup.el" |
| @@ -31810,28 +31911,42 @@ Zone out, completely. | |||
| 31810 | ;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" | 31911 | ;;;;;; "gnus/smime.el" "gnus/spam-stat.el" "gnus/spam-wash.el" "hex-util.el" |
| 31811 | ;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/cp51932.el" "international/eucjp-ms.el" | 31912 | ;;;;;; "hfy-cmap.el" "ibuf-ext.el" "international/cp51932.el" "international/eucjp-ms.el" |
| 31812 | ;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" | 31913 | ;;;;;; "international/fontset.el" "international/iso-ascii.el" "international/ja-dic-cnv.el" |
| 31813 | ;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "kermit.el" | 31914 | ;;;;;; "international/ja-dic-utl.el" "international/ogonek.el" "international/uni-bidi.el" |
| 31814 | ;;;;;; "language/hanja-util.el" "language/thai-word.el" "ldefs-boot.el" | 31915 | ;;;;;; "international/uni-brackets.el" "international/uni-category.el" |
| 31815 | ;;;;;; "leim/quail/arabic.el" "leim/quail/croatian.el" "leim/quail/cyril-jis.el" | 31916 | ;;;;;; "international/uni-combining.el" "international/uni-comment.el" |
| 31816 | ;;;;;; "leim/quail/cyrillic.el" "leim/quail/czech.el" "leim/quail/ethiopic.el" | 31917 | ;;;;;; "international/uni-decimal.el" "international/uni-decomposition.el" |
| 31817 | ;;;;;; "leim/quail/georgian.el" "leim/quail/greek.el" "leim/quail/hanja-jis.el" | 31918 | ;;;;;; "international/uni-digit.el" "international/uni-lowercase.el" |
| 31818 | ;;;;;; "leim/quail/hanja.el" "leim/quail/hanja3.el" "leim/quail/hebrew.el" | 31919 | ;;;;;; "international/uni-mirrored.el" "international/uni-name.el" |
| 31819 | ;;;;;; "leim/quail/indian.el" "leim/quail/ipa-praat.el" "leim/quail/ipa.el" | 31920 | ;;;;;; "international/uni-numeric.el" "international/uni-old-name.el" |
| 31820 | ;;;;;; "leim/quail/japanese.el" "leim/quail/lao.el" "leim/quail/latin-alt.el" | 31921 | ;;;;;; "international/uni-titlecase.el" "international/uni-uppercase.el" |
| 31821 | ;;;;;; "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" "leim/quail/latin-pre.el" | 31922 | ;;;;;; "kermit.el" "language/hanja-util.el" "language/thai-word.el" |
| 31822 | ;;;;;; "leim/quail/lrt.el" "leim/quail/persian.el" "leim/quail/py-punct.el" | 31923 | ;;;;;; "ldefs-boot.el" "leim/ja-dic/ja-dic.el" "leim/quail/4Corner.el" |
| 31823 | ;;;;;; "leim/quail/pypunct-b5.el" "leim/quail/rfc1345.el" "leim/quail/sgml-input.el" | 31924 | ;;;;;; "leim/quail/ARRAY30.el" "leim/quail/CCDOSPY.el" "leim/quail/CTLau-b5.el" |
| 31925 | ;;;;;; "leim/quail/CTLau.el" "leim/quail/ECDICT.el" "leim/quail/ETZY.el" | ||
| 31926 | ;;;;;; "leim/quail/PY-b5.el" "leim/quail/PY.el" "leim/quail/Punct-b5.el" | ||
| 31927 | ;;;;;; "leim/quail/Punct.el" "leim/quail/QJ-b5.el" "leim/quail/QJ.el" | ||
| 31928 | ;;;;;; "leim/quail/SW.el" "leim/quail/TONEPY.el" "leim/quail/ZIRANMA.el" | ||
| 31929 | ;;;;;; "leim/quail/ZOZY.el" "leim/quail/arabic.el" "leim/quail/croatian.el" | ||
| 31930 | ;;;;;; "leim/quail/cyril-jis.el" "leim/quail/cyrillic.el" "leim/quail/czech.el" | ||
| 31931 | ;;;;;; "leim/quail/ethiopic.el" "leim/quail/georgian.el" "leim/quail/greek.el" | ||
| 31932 | ;;;;;; "leim/quail/hanja-jis.el" "leim/quail/hanja.el" "leim/quail/hanja3.el" | ||
| 31933 | ;;;;;; "leim/quail/hebrew.el" "leim/quail/indian.el" "leim/quail/ipa-praat.el" | ||
| 31934 | ;;;;;; "leim/quail/ipa.el" "leim/quail/japanese.el" "leim/quail/lao.el" | ||
| 31935 | ;;;;;; "leim/quail/latin-alt.el" "leim/quail/latin-ltx.el" "leim/quail/latin-post.el" | ||
| 31936 | ;;;;;; "leim/quail/latin-pre.el" "leim/quail/lrt.el" "leim/quail/persian.el" | ||
| 31937 | ;;;;;; "leim/quail/py-punct.el" "leim/quail/pypunct-b5.el" "leim/quail/quick-b5.el" | ||
| 31938 | ;;;;;; "leim/quail/quick-cns.el" "leim/quail/rfc1345.el" "leim/quail/sgml-input.el" | ||
| 31824 | ;;;;;; "leim/quail/sisheng.el" "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" | 31939 | ;;;;;; "leim/quail/sisheng.el" "leim/quail/slovak.el" "leim/quail/symbol-ksc.el" |
| 31825 | ;;;;;; "leim/quail/thai.el" "leim/quail/tibetan.el" "leim/quail/viqr.el" | 31940 | ;;;;;; "leim/quail/thai.el" "leim/quail/tibetan.el" "leim/quail/tsang-b5.el" |
| 31826 | ;;;;;; "leim/quail/vntelex.el" "leim/quail/vnvni.el" "leim/quail/welsh.el" | 31941 | ;;;;;; "leim/quail/tsang-cns.el" "leim/quail/viqr.el" "leim/quail/vntelex.el" |
| 31827 | ;;;;;; "loadup.el" "mail/blessmail.el" "mail/mailheader.el" "mail/mspools.el" | 31942 | ;;;;;; "leim/quail/vnvni.el" "leim/quail/welsh.el" "loadup.el" "mail/blessmail.el" |
| 31828 | ;;;;;; "mail/rfc2368.el" "mail/rfc822.el" "mail/rmail-spam-filter.el" | 31943 | ;;;;;; "mail/mailheader.el" "mail/mspools.el" "mail/rfc2368.el" |
| 31829 | ;;;;;; "mail/rmailedit.el" "mail/rmailkwd.el" "mail/rmailmm.el" | 31944 | ;;;;;; "mail/rfc822.el" "mail/rmail-spam-filter.el" "mail/rmailedit.el" |
| 31830 | ;;;;;; "mail/rmailmsc.el" "mail/rmailsort.el" "mail/rmailsum.el" | 31945 | ;;;;;; "mail/rmailkwd.el" "mail/rmailmm.el" "mail/rmailmsc.el" "mail/rmailsort.el" |
| 31831 | ;;;;;; "mail/undigest.el" "mh-e/mh-acros.el" "mh-e/mh-alias.el" | 31946 | ;;;;;; "mail/rmailsum.el" "mail/undigest.el" "mh-e/mh-acros.el" |
| 31832 | ;;;;;; "mh-e/mh-buffers.el" "mh-e/mh-compat.el" "mh-e/mh-funcs.el" | 31947 | ;;;;;; "mh-e/mh-alias.el" "mh-e/mh-buffers.el" "mh-e/mh-compat.el" |
| 31833 | ;;;;;; "mh-e/mh-gnus.el" "mh-e/mh-identity.el" "mh-e/mh-inc.el" | 31948 | ;;;;;; "mh-e/mh-funcs.el" "mh-e/mh-gnus.el" "mh-e/mh-identity.el" |
| 31834 | ;;;;;; "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" | 31949 | ;;;;;; "mh-e/mh-inc.el" "mh-e/mh-junk.el" "mh-e/mh-letter.el" "mh-e/mh-limit.el" |
| 31835 | ;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" | 31950 | ;;;;;; "mh-e/mh-loaddefs.el" "mh-e/mh-mime.el" "mh-e/mh-print.el" |
| 31836 | ;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" | 31951 | ;;;;;; "mh-e/mh-scan.el" "mh-e/mh-search.el" "mh-e/mh-seq.el" "mh-e/mh-show.el" |
| 31837 | ;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" | 31952 | ;;;;;; "mh-e/mh-speed.el" "mh-e/mh-thread.el" "mh-e/mh-tool-bar.el" |
| @@ -31900,8 +32015,8 @@ Zone out, completely. | |||
| 31900 | ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" | 32015 | ;;;;;; "vc/ediff-ptch.el" "vc/ediff-vers.el" "vc/ediff-wind.el" |
| 31901 | ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" | 32016 | ;;;;;; "vc/pcvs-info.el" "vc/pcvs-parse.el" "vc/pcvs-util.el" "vc/vc-dav.el" |
| 31902 | ;;;;;; "vc/vc-filewise.el" "vcursor.el" "vt-control.el" "vt100-led.el" | 32017 | ;;;;;; "vc/vc-filewise.el" "vcursor.el" "vt-control.el" "vt100-led.el" |
| 31903 | ;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (21628 46363 926675 | 32018 | ;;;;;; "w32-fns.el" "w32-vars.el" "x-dnd.el") (21660 28703 181624 |
| 31904 | ;;;;;; 999000)) | 32019 | ;;;;;; 391000)) |
| 31905 | 32020 | ||
| 31906 | ;;;*** | 32021 | ;;;*** |
| 31907 | 32022 | ||
diff --git a/lisp/let-alist.el b/lisp/let-alist.el index 7271e391f47..d2145287c85 100644 --- a/lisp/let-alist.el +++ b/lisp/let-alist.el | |||
| @@ -77,7 +77,7 @@ symbol, and each cdr is the same symbol without the `.'." | |||
| 77 | (mapcar #'let-alist--deep-dot-search data))))) | 77 | (mapcar #'let-alist--deep-dot-search data))))) |
| 78 | 78 | ||
| 79 | (defun let-alist--access-sexp (symbol variable) | 79 | (defun let-alist--access-sexp (symbol variable) |
| 80 | "Return a sexp used to acess SYMBOL inside VARIABLE." | 80 | "Return a sexp used to access SYMBOL inside VARIABLE." |
| 81 | (let* ((clean (let-alist--remove-dot symbol)) | 81 | (let* ((clean (let-alist--remove-dot symbol)) |
| 82 | (name (symbol-name clean))) | 82 | (name (symbol-name clean))) |
| 83 | (if (string-match "\\`\\." name) | 83 | (if (string-match "\\`\\." name) |
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index ba70f903b4b..ef619f0899a 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el | |||
| @@ -227,10 +227,15 @@ Blank lines separate paragraphs. Semicolons start comments. | |||
| 227 | 227 | ||
| 228 | \\{emacs-lisp-mode-map}" | 228 | \\{emacs-lisp-mode-map}" |
| 229 | :group 'lisp | 229 | :group 'lisp |
| 230 | (defvar xref-find-function) | ||
| 231 | (defvar xref-identifier-completion-table-function) | ||
| 230 | (lisp-mode-variables nil nil 'elisp) | 232 | (lisp-mode-variables nil nil 'elisp) |
| 231 | (setq imenu-case-fold-search nil) | 233 | (setq imenu-case-fold-search nil) |
| 232 | (setq-local eldoc-documentation-function | 234 | (setq-local eldoc-documentation-function |
| 233 | #'elisp-eldoc-documentation-function) | 235 | #'elisp-eldoc-documentation-function) |
| 236 | (setq-local xref-find-function #'elisp-xref-find) | ||
| 237 | (setq-local xref-identifier-completion-table-function | ||
| 238 | #'elisp--xref-identifier-completion-table) | ||
| 234 | (add-hook 'completion-at-point-functions | 239 | (add-hook 'completion-at-point-functions |
| 235 | #'elisp-completion-at-point nil 'local)) | 240 | #'elisp-completion-at-point nil 'local)) |
| 236 | 241 | ||
| @@ -414,17 +419,39 @@ It can be quoted, or be inside a quoted form." | |||
| 414 | 419 | ||
| 415 | (declare-function find-library-name "find-func" (library)) | 420 | (declare-function find-library-name "find-func" (library)) |
| 416 | 421 | ||
| 422 | (defvar elisp--identifier-types '(defun defvar feature defface)) | ||
| 423 | |||
| 424 | (defun elisp--identifier-location (type sym) | ||
| 425 | (pcase (cons type sym) | ||
| 426 | (`(defun . ,(pred fboundp)) | ||
| 427 | (find-definition-noselect sym nil)) | ||
| 428 | (`(defvar . ,(pred boundp)) | ||
| 429 | (find-definition-noselect sym 'defvar)) | ||
| 430 | (`(defface . ,(pred facep)) | ||
| 431 | (find-definition-noselect sym 'defface)) | ||
| 432 | (`(feature . ,(pred featurep)) | ||
| 433 | (require 'find-func) | ||
| 434 | (cons (find-file-noselect (find-library-name | ||
| 435 | (symbol-name sym))) | ||
| 436 | 1)))) | ||
| 437 | |||
| 417 | (defun elisp--company-location (str) | 438 | (defun elisp--company-location (str) |
| 418 | (let ((sym (intern-soft str))) | 439 | (catch 'res |
| 419 | (cond | 440 | (let ((sym (intern-soft str))) |
| 420 | ((fboundp sym) (find-definition-noselect sym nil)) | 441 | (when sym |
| 421 | ((boundp sym) (find-definition-noselect sym 'defvar)) | 442 | (dolist (type elisp--identifier-types) |
| 422 | ((featurep sym) | 443 | (let ((loc (elisp--identifier-location type sym))) |
| 423 | (require 'find-func) | 444 | (and loc (throw 'res loc)))))))) |
| 424 | (cons (find-file-noselect (find-library-name | 445 | |
| 425 | (symbol-name sym))) | 446 | (defvar elisp--identifier-completion-table |
| 426 | 0)) | 447 | (apply-partially #'completion-table-with-predicate |
| 427 | ((facep sym) (find-definition-noselect sym 'defface))))) | 448 | obarray |
| 449 | (lambda (sym) | ||
| 450 | (or (boundp sym) | ||
| 451 | (fboundp sym) | ||
| 452 | (featurep sym) | ||
| 453 | (symbol-plist sym))) | ||
| 454 | 'strict)) | ||
| 428 | 455 | ||
| 429 | (defun elisp-completion-at-point () | 456 | (defun elisp-completion-at-point () |
| 430 | "Function used for `completion-at-point-functions' in `emacs-lisp-mode'." | 457 | "Function used for `completion-at-point-functions' in `emacs-lisp-mode'." |
| @@ -466,13 +493,8 @@ It can be quoted, or be inside a quoted form." | |||
| 466 | :company-docsig #'elisp--company-doc-string | 493 | :company-docsig #'elisp--company-doc-string |
| 467 | :company-location #'elisp--company-location)) | 494 | :company-location #'elisp--company-location)) |
| 468 | ((elisp--form-quoted-p beg) | 495 | ((elisp--form-quoted-p beg) |
| 469 | (list nil obarray | 496 | ;; Don't include all symbols (bug#16646). |
| 470 | ;; Don't include all symbols | 497 | (list nil elisp--identifier-completion-table |
| 471 | ;; (bug#16646). | ||
| 472 | :predicate (lambda (sym) | ||
| 473 | (or (boundp sym) | ||
| 474 | (fboundp sym) | ||
| 475 | (symbol-plist sym))) | ||
| 476 | :annotation-function | 498 | :annotation-function |
| 477 | (lambda (str) (if (fboundp (intern-soft str)) " <f>")) | 499 | (lambda (str) (if (fboundp (intern-soft str)) " <f>")) |
| 478 | :company-doc-buffer #'elisp--company-doc-buffer | 500 | :company-doc-buffer #'elisp--company-doc-buffer |
| @@ -548,6 +570,50 @@ It can be quoted, or be inside a quoted form." | |||
| 548 | (define-obsolete-function-alias | 570 | (define-obsolete-function-alias |
| 549 | 'lisp-completion-at-point 'elisp-completion-at-point "25.1") | 571 | 'lisp-completion-at-point 'elisp-completion-at-point "25.1") |
| 550 | 572 | ||
| 573 | ;;; Xref backend | ||
| 574 | |||
| 575 | (declare-function xref-make-buffer-location "xref" (buffer position)) | ||
| 576 | (declare-function xref-make-bogus-location "xref" (message)) | ||
| 577 | (declare-function xref-make "xref" (description location)) | ||
| 578 | |||
| 579 | (defun elisp-xref-find (action id) | ||
| 580 | (pcase action | ||
| 581 | (`definitions | ||
| 582 | (let ((sym (intern-soft id))) | ||
| 583 | (when sym | ||
| 584 | (elisp--xref-find-definitions sym)))) | ||
| 585 | (`apropos | ||
| 586 | (elisp--xref-find-apropos id)))) | ||
| 587 | |||
| 588 | (defun elisp--xref-find-definitions (symbol) | ||
| 589 | (save-excursion | ||
| 590 | (let (lst) | ||
| 591 | (dolist (type elisp--identifier-types) | ||
| 592 | (let ((loc | ||
| 593 | (condition-case err | ||
| 594 | (let ((buf-pos (elisp--identifier-location type symbol))) | ||
| 595 | (when buf-pos | ||
| 596 | (xref-make-buffer-location (car buf-pos) | ||
| 597 | (or (cdr buf-pos) 1)))) | ||
| 598 | (error | ||
| 599 | (xref-make-bogus-location (error-message-string err)))))) | ||
| 600 | (when loc | ||
| 601 | (push | ||
| 602 | (xref-make (format "(%s %s)" type symbol) | ||
| 603 | loc) | ||
| 604 | lst)))) | ||
| 605 | lst))) | ||
| 606 | |||
| 607 | (defun elisp--xref-find-apropos (regexp) | ||
| 608 | (apply #'nconc | ||
| 609 | (let (lst) | ||
| 610 | (dolist (sym (apropos-internal regexp)) | ||
| 611 | (push (elisp--xref-find-definitions sym) lst)) | ||
| 612 | (nreverse lst)))) | ||
| 613 | |||
| 614 | (defun elisp--xref-identifier-completion-table () | ||
| 615 | elisp--identifier-completion-table) | ||
| 616 | |||
| 551 | ;;; Elisp Interaction mode | 617 | ;;; Elisp Interaction mode |
| 552 | 618 | ||
| 553 | (defvar lisp-interaction-mode-map | 619 | (defvar lisp-interaction-mode-map |
diff --git a/lisp/progmodes/etags.el b/lisp/progmodes/etags.el index b89b4cf0fe5..0be99794356 100644 --- a/lisp/progmodes/etags.el +++ b/lisp/progmodes/etags.el | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | 28 | ||
| 29 | (require 'ring) | 29 | (require 'ring) |
| 30 | (require 'button) | 30 | (require 'button) |
| 31 | (require 'xref) | ||
| 31 | 32 | ||
| 32 | ;;;###autoload | 33 | ;;;###autoload |
| 33 | (defvar tags-file-name nil | 34 | (defvar tags-file-name nil |
| @@ -141,11 +142,8 @@ Otherwise, `find-tag-default' is used." | |||
| 141 | :group 'etags | 142 | :group 'etags |
| 142 | :type '(choice (const nil) function)) | 143 | :type '(choice (const nil) function)) |
| 143 | 144 | ||
| 144 | (defcustom find-tag-marker-ring-length 16 | 145 | (define-obsolete-variable-alias 'find-tag-marker-ring-length |
| 145 | "Length of marker rings `find-tag-marker-ring' and `tags-location-ring'." | 146 | 'xref-marker-ring-length "25.1") |
| 146 | :group 'etags | ||
| 147 | :type 'integer | ||
| 148 | :version "20.3") | ||
| 149 | 147 | ||
| 150 | (defcustom tags-tag-face 'default | 148 | (defcustom tags-tag-face 'default |
| 151 | "Face for tags in the output of `tags-apropos'." | 149 | "Face for tags in the output of `tags-apropos'." |
| @@ -182,15 +180,18 @@ Example value: | |||
| 182 | (sexp :tag "Tags to search"))) | 180 | (sexp :tag "Tags to search"))) |
| 183 | :version "21.1") | 181 | :version "21.1") |
| 184 | 182 | ||
| 185 | (defvar find-tag-marker-ring (make-ring find-tag-marker-ring-length) | 183 | (defvaralias 'find-tag-marker-ring 'xref--marker-ring) |
| 186 | "Ring of markers which are locations from which \\[find-tag] was invoked.") | 184 | (make-obsolete-variable |
| 185 | 'find-tag-marker-ring | ||
| 186 | "use `xref-push-marker-stack' or `xref-pop-marker-stack' instead." | ||
| 187 | "25.1") | ||
| 187 | 188 | ||
| 188 | (defvar default-tags-table-function nil | 189 | (defvar default-tags-table-function nil |
| 189 | "If non-nil, a function to choose a default tags file for a buffer. | 190 | "If non-nil, a function to choose a default tags file for a buffer. |
| 190 | This function receives no arguments and should return the default | 191 | This function receives no arguments and should return the default |
| 191 | tags table file to use for the current buffer.") | 192 | tags table file to use for the current buffer.") |
| 192 | 193 | ||
| 193 | (defvar tags-location-ring (make-ring find-tag-marker-ring-length) | 194 | (defvar tags-location-ring (make-ring xref-marker-ring-length) |
| 194 | "Ring of markers which are locations visited by \\[find-tag]. | 195 | "Ring of markers which are locations visited by \\[find-tag]. |
| 195 | Pop back to the last location with \\[negative-argument] \\[find-tag].") | 196 | Pop back to the last location with \\[negative-argument] \\[find-tag].") |
| 196 | 197 | ||
| @@ -713,15 +714,13 @@ Returns t if it visits a tags table, or nil if there are no more in the list." | |||
| 713 | (interactive) | 714 | (interactive) |
| 714 | ;; Clear out the markers we are throwing away. | 715 | ;; Clear out the markers we are throwing away. |
| 715 | (let ((i 0)) | 716 | (let ((i 0)) |
| 716 | (while (< i find-tag-marker-ring-length) | 717 | (while (< i xref-marker-ring-length) |
| 717 | (if (aref (cddr tags-location-ring) i) | 718 | (if (aref (cddr tags-location-ring) i) |
| 718 | (set-marker (aref (cddr tags-location-ring) i) nil)) | 719 | (set-marker (aref (cddr tags-location-ring) i) nil)) |
| 719 | (if (aref (cddr find-tag-marker-ring) i) | ||
| 720 | (set-marker (aref (cddr find-tag-marker-ring) i) nil)) | ||
| 721 | (setq i (1+ i)))) | 720 | (setq i (1+ i)))) |
| 721 | (xref-clear-marker-stack) | ||
| 722 | (setq tags-file-name nil | 722 | (setq tags-file-name nil |
| 723 | tags-location-ring (make-ring find-tag-marker-ring-length) | 723 | tags-location-ring (make-ring xref-marker-ring-length) |
| 724 | find-tag-marker-ring (make-ring find-tag-marker-ring-length) | ||
| 725 | tags-table-list nil | 724 | tags-table-list nil |
| 726 | tags-table-computed-list nil | 725 | tags-table-computed-list nil |
| 727 | tags-table-computed-list-for nil | 726 | tags-table-computed-list-for nil |
| @@ -780,6 +779,7 @@ tags table and its (recursively) included tags tables." | |||
| 780 | (quit (message "Tags completion table construction aborted.") | 779 | (quit (message "Tags completion table construction aborted.") |
| 781 | (setq tags-completion-table nil))))) | 780 | (setq tags-completion-table nil))))) |
| 782 | 781 | ||
| 782 | ;;;###autoload | ||
| 783 | (defun tags-lazy-completion-table () | 783 | (defun tags-lazy-completion-table () |
| 784 | (let ((buf (current-buffer))) | 784 | (let ((buf (current-buffer))) |
| 785 | (lambda (string pred action) | 785 | (lambda (string pred action) |
| @@ -898,7 +898,7 @@ See documentation of variable `tags-file-name'." | |||
| 898 | ;; Run the user's hook. Do we really want to do this for pop? | 898 | ;; Run the user's hook. Do we really want to do this for pop? |
| 899 | (run-hooks 'local-find-tag-hook)))) | 899 | (run-hooks 'local-find-tag-hook)))) |
| 900 | ;; Record whence we came. | 900 | ;; Record whence we came. |
| 901 | (ring-insert find-tag-marker-ring (point-marker)) | 901 | (xref-push-marker-stack) |
| 902 | (if (and next-p last-tag) | 902 | (if (and next-p last-tag) |
| 903 | ;; Find the same table we last used. | 903 | ;; Find the same table we last used. |
| 904 | (visit-tags-table-buffer 'same) | 904 | (visit-tags-table-buffer 'same) |
| @@ -954,7 +954,6 @@ See documentation of variable `tags-file-name'." | |||
| 954 | (switch-to-buffer buf) | 954 | (switch-to-buffer buf) |
| 955 | (error (pop-to-buffer buf))) | 955 | (error (pop-to-buffer buf))) |
| 956 | (goto-char pos))) | 956 | (goto-char pos))) |
| 957 | ;;;###autoload (define-key esc-map "." 'find-tag) | ||
| 958 | 957 | ||
| 959 | ;;;###autoload | 958 | ;;;###autoload |
| 960 | (defun find-tag-other-window (tagname &optional next-p regexp-p) | 959 | (defun find-tag-other-window (tagname &optional next-p regexp-p) |
| @@ -995,7 +994,6 @@ See documentation of variable `tags-file-name'." | |||
| 995 | ;; the window's point from the buffer. | 994 | ;; the window's point from the buffer. |
| 996 | (set-window-point (selected-window) tagpoint)) | 995 | (set-window-point (selected-window) tagpoint)) |
| 997 | window-point))) | 996 | window-point))) |
| 998 | ;;;###autoload (define-key ctl-x-4-map "." 'find-tag-other-window) | ||
| 999 | 997 | ||
| 1000 | ;;;###autoload | 998 | ;;;###autoload |
| 1001 | (defun find-tag-other-frame (tagname &optional next-p) | 999 | (defun find-tag-other-frame (tagname &optional next-p) |
| @@ -1020,7 +1018,6 @@ See documentation of variable `tags-file-name'." | |||
| 1020 | (interactive (find-tag-interactive "Find tag other frame: ")) | 1018 | (interactive (find-tag-interactive "Find tag other frame: ")) |
| 1021 | (let ((pop-up-frames t)) | 1019 | (let ((pop-up-frames t)) |
| 1022 | (find-tag-other-window tagname next-p))) | 1020 | (find-tag-other-window tagname next-p))) |
| 1023 | ;;;###autoload (define-key ctl-x-5-map "." 'find-tag-other-frame) | ||
| 1024 | 1021 | ||
| 1025 | ;;;###autoload | 1022 | ;;;###autoload |
| 1026 | (defun find-tag-regexp (regexp &optional next-p other-window) | 1023 | (defun find-tag-regexp (regexp &optional next-p other-window) |
| @@ -1044,25 +1041,10 @@ See documentation of variable `tags-file-name'." | |||
| 1044 | ;; We go through find-tag-other-window to do all the display hair there. | 1041 | ;; We go through find-tag-other-window to do all the display hair there. |
| 1045 | (funcall (if other-window 'find-tag-other-window 'find-tag) | 1042 | (funcall (if other-window 'find-tag-other-window 'find-tag) |
| 1046 | regexp next-p t)) | 1043 | regexp next-p t)) |
| 1047 | ;;;###autoload (define-key esc-map [?\C-.] 'find-tag-regexp) | ||
| 1048 | |||
| 1049 | ;;;###autoload (define-key esc-map "*" 'pop-tag-mark) | ||
| 1050 | 1044 | ||
| 1051 | ;;;###autoload | 1045 | ;;;###autoload |
| 1052 | (defun pop-tag-mark () | 1046 | (defalias 'pop-tag-mark 'xref-pop-marker-stack) |
| 1053 | "Pop back to where \\[find-tag] was last invoked. | ||
| 1054 | 1047 | ||
| 1055 | This is distinct from invoking \\[find-tag] with a negative argument | ||
| 1056 | since that pops a stack of markers at which tags were found, not from | ||
| 1057 | where they were found." | ||
| 1058 | (interactive) | ||
| 1059 | (if (ring-empty-p find-tag-marker-ring) | ||
| 1060 | (error "No previous locations for find-tag invocation")) | ||
| 1061 | (let ((marker (ring-remove find-tag-marker-ring 0))) | ||
| 1062 | (switch-to-buffer (or (marker-buffer marker) | ||
| 1063 | (error "The marked buffer has been deleted"))) | ||
| 1064 | (goto-char (marker-position marker)) | ||
| 1065 | (set-marker marker nil nil))) | ||
| 1066 | 1048 | ||
| 1067 | (defvar tag-lines-already-matched nil | 1049 | (defvar tag-lines-already-matched nil |
| 1068 | "Matches remembered between calls.") ; Doc string: calls to what? | 1050 | "Matches remembered between calls.") ; Doc string: calls to what? |
| @@ -1859,7 +1841,6 @@ nil, we exit; otherwise we scan the next file." | |||
| 1859 | (and messaged | 1841 | (and messaged |
| 1860 | (null tags-loop-operate) | 1842 | (null tags-loop-operate) |
| 1861 | (message "Scanning file %s...found" buffer-file-name)))) | 1843 | (message "Scanning file %s...found" buffer-file-name)))) |
| 1862 | ;;;###autoload (define-key esc-map "," 'tags-loop-continue) | ||
| 1863 | 1844 | ||
| 1864 | ;;;###autoload | 1845 | ;;;###autoload |
| 1865 | (defun tags-search (regexp &optional file-list-form) | 1846 | (defun tags-search (regexp &optional file-list-form) |
| @@ -2077,6 +2058,54 @@ for \\[find-tag] (which see)." | |||
| 2077 | (completion-in-region (car comp-data) (cadr comp-data) | 2058 | (completion-in-region (car comp-data) (cadr comp-data) |
| 2078 | (nth 2 comp-data) | 2059 | (nth 2 comp-data) |
| 2079 | (plist-get (nthcdr 3 comp-data) :predicate))))) | 2060 | (plist-get (nthcdr 3 comp-data) :predicate))))) |
| 2061 | |||
| 2062 | |||
| 2063 | ;;; Xref backend | ||
| 2064 | |||
| 2065 | ;; Stop searching if we find more than xref-limit matches, as the xref | ||
| 2066 | ;; infrastructure is not designed to handle very long lists. | ||
| 2067 | ;; Switching to some kind of lazy list might be better, but hopefully | ||
| 2068 | ;; we hit the limit rarely. | ||
| 2069 | (defconst etags--xref-limit 1000) | ||
| 2070 | |||
| 2071 | ;;;###autoload | ||
| 2072 | (defun etags-xref-find (action id) | ||
| 2073 | (pcase action | ||
| 2074 | (`definitions (etags--xref-find-definitions id)) | ||
| 2075 | (`apropos (etags--xref-find-definitions id t)))) | ||
| 2076 | |||
| 2077 | (defun etags--xref-find-definitions (pattern &optional regexp?) | ||
| 2078 | ;; This emulates the behaviour of `find-tag-in-order' but instead of | ||
| 2079 | ;; returning one match at a time all matches are returned as list. | ||
| 2080 | ;; NOTE: find-tag-tag-order is typically a buffer-local variable. | ||
| 2081 | (let* ((xrefs '()) | ||
| 2082 | (first-time t) | ||
| 2083 | (search-fun (if regexp? #'re-search-forward #'search-forward)) | ||
| 2084 | (marks (make-hash-table :test 'equal)) | ||
| 2085 | (case-fold-search (if (memq tags-case-fold-search '(nil t)) | ||
| 2086 | tags-case-fold-search | ||
| 2087 | case-fold-search))) | ||
| 2088 | (save-excursion | ||
| 2089 | (while (visit-tags-table-buffer (not first-time)) | ||
| 2090 | (setq first-time nil) | ||
| 2091 | (dolist (order-fun (cond (regexp? find-tag-regexp-tag-order) | ||
| 2092 | (t find-tag-tag-order))) | ||
| 2093 | (goto-char (point-min)) | ||
| 2094 | (while (and (funcall search-fun pattern nil t) | ||
| 2095 | (< (hash-table-count marks) etags--xref-limit)) | ||
| 2096 | (when (funcall order-fun pattern) | ||
| 2097 | (beginning-of-line) | ||
| 2098 | (cl-destructuring-bind (hint line &rest pos) (etags-snarf-tag) | ||
| 2099 | (unless (eq hint t) ; hint==t if we are in a filename line | ||
| 2100 | (let* ((file (file-of-tag)) | ||
| 2101 | (mark-key (cons file line))) | ||
| 2102 | (unless (gethash mark-key marks) | ||
| 2103 | (let ((loc (xref-make-file-location | ||
| 2104 | (expand-file-name file) line 0))) | ||
| 2105 | (push (xref-make hint loc) xrefs) | ||
| 2106 | (puthash mark-key t marks))))))))))) | ||
| 2107 | (nreverse xrefs))) | ||
| 2108 | |||
| 2080 | 2109 | ||
| 2081 | (provide 'etags) | 2110 | (provide 'etags) |
| 2082 | 2111 | ||
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index c2c45aa4ef8..45074d338d3 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el | |||
| @@ -1637,12 +1637,29 @@ This performs fontification according to `js--class-styles'." | |||
| 1637 | js--font-lock-keywords-3) | 1637 | js--font-lock-keywords-3) |
| 1638 | "Font lock keywords for `js-mode'. See `font-lock-keywords'.") | 1638 | "Font lock keywords for `js-mode'. See `font-lock-keywords'.") |
| 1639 | 1639 | ||
| 1640 | (defconst js--syntax-propertize-regexp-syntax-table | ||
| 1641 | (let ((st (make-char-table 'syntax-table (string-to-syntax ".")))) | ||
| 1642 | (modify-syntax-entry ?\[ "(]" st) | ||
| 1643 | (modify-syntax-entry ?\] ")[" st) | ||
| 1644 | (modify-syntax-entry ?\\ "\\" st) | ||
| 1645 | st)) | ||
| 1646 | |||
| 1640 | (defun js-syntax-propertize-regexp (end) | 1647 | (defun js-syntax-propertize-regexp (end) |
| 1641 | (when (eq (nth 3 (syntax-ppss)) ?/) | 1648 | (let ((ppss (syntax-ppss))) |
| 1642 | ;; A /.../ regexp. | 1649 | (when (eq (nth 3 ppss) ?/) |
| 1643 | (when (re-search-forward "\\(?:\\=\\|[^\\]\\)\\(?:\\\\\\\\\\)*/" end 'move) | 1650 | ;; A /.../ regexp. |
| 1644 | (put-text-property (1- (point)) (point) | 1651 | (while |
| 1645 | 'syntax-table (string-to-syntax "\"/"))))) | 1652 | (when (re-search-forward "\\(?:\\=\\|[^\\]\\)\\(?:\\\\\\\\\\)*/" |
| 1653 | end 'move) | ||
| 1654 | (if (nth 1 (with-syntax-table | ||
| 1655 | js--syntax-propertize-regexp-syntax-table | ||
| 1656 | (let ((parse-sexp-lookup-properties nil)) | ||
| 1657 | (parse-partial-sexp (nth 8 ppss) (point))))) | ||
| 1658 | ;; A / within a character class is not the end of a regexp. | ||
| 1659 | t | ||
| 1660 | (put-text-property (1- (point)) (point) | ||
| 1661 | 'syntax-table (string-to-syntax "\"/")) | ||
| 1662 | nil)))))) | ||
| 1646 | 1663 | ||
| 1647 | (defun js-syntax-propertize (start end) | 1664 | (defun js-syntax-propertize (start end) |
| 1648 | ;; Javascript allows immediate regular expression objects, written /.../. | 1665 | ;; Javascript allows immediate regular expression objects, written /.../. |
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el new file mode 100644 index 00000000000..21c0d6aa6a4 --- /dev/null +++ b/lisp/progmodes/xref.el | |||
| @@ -0,0 +1,499 @@ | |||
| 1 | ;; xref.el --- Cross-referencing commands -*-lexical-binding:t-*- | ||
| 2 | |||
| 3 | ;; Copyright (C) 2014 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | ;; This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | ;; GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | ;; it under the terms of the GNU General Public License as published by | ||
| 9 | ;; the Free Software Foundation, either version 3 of the License, or | ||
| 10 | ;; (at your option) any later version. | ||
| 11 | |||
| 12 | ;; GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | ;; GNU General Public License for more details. | ||
| 16 | |||
| 17 | ;; You should have received a copy of the GNU General Public License | ||
| 18 | ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | ||
| 19 | |||
| 20 | ;;; Commentary: | ||
| 21 | |||
| 22 | ;; This file provides a somewhat generic infrastructure for cross | ||
| 23 | ;; referencing commands, in particular "find-definition". | ||
| 24 | ;; | ||
| 25 | ;; Some part of the functionality must be implemented in a language | ||
| 26 | ;; dependent way and that's done by defining `xref-find-function', | ||
| 27 | ;; `xref-identifier-at-point-function' and | ||
| 28 | ;; `xref-identifier-completion-table-function', which see. | ||
| 29 | ;; | ||
| 30 | ;; A major mode should make these variables buffer-local first. | ||
| 31 | ;; | ||
| 32 | ;; `xref-find-function' can be called in several ways, see its | ||
| 33 | ;; description. It has to operate with "xref" and "location" values. | ||
| 34 | ;; | ||
| 35 | ;; One would usually call `make-xref' and `xref-make-file-location', | ||
| 36 | ;; `xref-make-buffer-location' or `xref-make-bogus-location' to create | ||
| 37 | ;; them. | ||
| 38 | ;; | ||
| 39 | ;; Each identifier must be represented as a string. Implementers can | ||
| 40 | ;; use string properties to store additional information about the | ||
| 41 | ;; identifier, but they should keep in mind that values returned from | ||
| 42 | ;; `xref-identifier-completion-table-function' should still be | ||
| 43 | ;; distinct, because the user can't see the properties when making the | ||
| 44 | ;; choice. | ||
| 45 | ;; | ||
| 46 | ;; See the functions `etags-xref-find' and `elisp-xref-find' for full | ||
| 47 | ;; examples. | ||
| 48 | |||
| 49 | ;;; Code: | ||
| 50 | |||
| 51 | (require 'cl-lib) | ||
| 52 | (require 'eieio) | ||
| 53 | (require 'ring) | ||
| 54 | |||
| 55 | (defgroup xref nil "Cross-referencing commands" | ||
| 56 | :group 'tools) | ||
| 57 | |||
| 58 | |||
| 59 | ;;; Locations | ||
| 60 | |||
| 61 | (defclass xref-location () () | ||
| 62 | :documentation "A location represents a position in a file or buffer.") | ||
| 63 | |||
| 64 | ;; If a backend decides to subclass xref-location it can provide | ||
| 65 | ;; methods for some of the following functions: | ||
| 66 | (defgeneric xref-location-marker (location) | ||
| 67 | "Return the marker for LOCATION.") | ||
| 68 | |||
| 69 | (defgeneric xref-location-group (location) | ||
| 70 | "Return a string used to group a set of locations. | ||
| 71 | This is typically the filename.") | ||
| 72 | |||
| 73 | ;;;; Commonly needed location classes are defined here: | ||
| 74 | |||
| 75 | ;; FIXME: might be useful to have an optional "hint" i.e. a string to | ||
| 76 | ;; search for in case the line number is sightly out of date. | ||
| 77 | (defclass xref-file-location (xref-location) | ||
| 78 | ((file :type string :initarg :file) | ||
| 79 | (line :type fixnum :initarg :line) | ||
| 80 | (column :type fixnum :initarg :column)) | ||
| 81 | :documentation "A file location is a file/line/column triple. | ||
| 82 | Line numbers start from 1 and columns from 0.") | ||
| 83 | |||
| 84 | (defun xref-make-file-location (file line column) | ||
| 85 | "Create and return a new xref-file-location." | ||
| 86 | (make-instance 'xref-file-location :file file :line line :column column)) | ||
| 87 | |||
| 88 | (defmethod xref-location-marker ((l xref-file-location)) | ||
| 89 | (with-slots (file line column) l | ||
| 90 | (with-current-buffer | ||
| 91 | (or (get-file-buffer file) | ||
| 92 | (let ((find-file-suppress-same-file-warnings t)) | ||
| 93 | (find-file-noselect file))) | ||
| 94 | (save-restriction | ||
| 95 | (widen) | ||
| 96 | (save-excursion | ||
| 97 | (goto-char (point-min)) | ||
| 98 | (beginning-of-line line) | ||
| 99 | (move-to-column column) | ||
| 100 | (point-marker)))))) | ||
| 101 | |||
| 102 | (defmethod xref-location-group ((l xref-file-location)) | ||
| 103 | (oref l :file)) | ||
| 104 | |||
| 105 | (defclass xref-buffer-location (xref-location) | ||
| 106 | ((buffer :type buffer :initarg :buffer) | ||
| 107 | (position :type fixnum :initarg :position))) | ||
| 108 | |||
| 109 | (defun xref-make-buffer-location (buffer position) | ||
| 110 | "Create and return a new xref-buffer-location." | ||
| 111 | (make-instance 'xref-buffer-location :buffer buffer :position position)) | ||
| 112 | |||
| 113 | (defmethod xref-location-marker ((l xref-buffer-location)) | ||
| 114 | (with-slots (buffer position) l | ||
| 115 | (let ((m (make-marker))) | ||
| 116 | (move-marker m position buffer)))) | ||
| 117 | |||
| 118 | (defmethod xref-location-group ((l xref-buffer-location)) | ||
| 119 | (with-slots (buffer) l | ||
| 120 | (or (buffer-file-name buffer) | ||
| 121 | (format "(buffer %s)" (buffer-name buffer))))) | ||
| 122 | |||
| 123 | (defclass xref-bogus-location (xref-location) | ||
| 124 | ((message :type string :initarg :message | ||
| 125 | :reader xref-bogus-location-message)) | ||
| 126 | :documentation "Bogus locations are sometimes useful to | ||
| 127 | indicate errors, e.g. when we know that a function exists but the | ||
| 128 | actual location is not known.") | ||
| 129 | |||
| 130 | (defun xref-make-bogus-location (message) | ||
| 131 | "Create and return a new xref-bogus-location." | ||
| 132 | (make-instance 'xref-bogus-location :message message)) | ||
| 133 | |||
| 134 | (defmethod xref-location-marker ((l xref-bogus-location)) | ||
| 135 | (user-error "%s" (oref l :message))) | ||
| 136 | |||
| 137 | (defmethod xref-location-group ((_ xref-bogus-location)) "(No location)") | ||
| 138 | |||
| 139 | |||
| 140 | ;;; Cross-reference | ||
| 141 | |||
| 142 | (defclass xref--xref () | ||
| 143 | ((description :type string :initarg :description | ||
| 144 | :reader xref--xref-description) | ||
| 145 | (location :type xref-location :initarg :location | ||
| 146 | :reader xref--xref-location)) | ||
| 147 | :comment "An xref is used to display and locate constructs like | ||
| 148 | variables or functions.") | ||
| 149 | |||
| 150 | (defun xref-make (description location) | ||
| 151 | "Create and return a new xref. | ||
| 152 | DESCRIPTION is a short string to describe the xref. | ||
| 153 | LOCATION is an `xref-location'." | ||
| 154 | (make-instance 'xref--xref :description description :location location)) | ||
| 155 | |||
| 156 | |||
| 157 | ;;; API | ||
| 158 | |||
| 159 | (declare-function etags-xref-find "etags" (action id)) | ||
| 160 | (declare-function tags-lazy-completion-table "etags" ()) | ||
| 161 | |||
| 162 | ;; For now, make the etags backend the default. | ||
| 163 | (defvar xref-find-function #'etags-xref-find | ||
| 164 | "Function to look for cross-references. | ||
| 165 | It can be called in several ways: | ||
| 166 | |||
| 167 | (definitions IDENTIFIER): Find definitions of IDENTIFIER. The | ||
| 168 | result must be a list of xref objects. If no definitions can be | ||
| 169 | found, return nil. | ||
| 170 | |||
| 171 | (references IDENTIFIER): Find references of IDENTIFIER. The | ||
| 172 | result must be a list of xref objects. If no references can be | ||
| 173 | found, return nil. | ||
| 174 | |||
| 175 | (apropos PATTERN): Find all symbols that match PATTERN. PATTERN | ||
| 176 | is a regexp. | ||
| 177 | |||
| 178 | IDENTIFIER can be any string returned by | ||
| 179 | `xref-identifier-at-point-function', or from the table returned | ||
| 180 | by `xref-identifier-completion-table-function'. | ||
| 181 | |||
| 182 | To create an xref object, call `xref-make'.") | ||
| 183 | |||
| 184 | (defvar xref-identifier-at-point-function #'xref-default-identifier-at-point | ||
| 185 | "Function to get the relevant identifier at point. | ||
| 186 | |||
| 187 | The return value must be a string or nil. nil means no | ||
| 188 | identifier at point found. | ||
| 189 | |||
| 190 | If it's hard to determine the identifier precisely (e.g., because | ||
| 191 | it's a method call on unknown type), the implementation can | ||
| 192 | return a simple string (such as symbol at point) marked with a | ||
| 193 | special text property which `xref-find-function' would recognize | ||
| 194 | and then delegate the work to an external process.") | ||
| 195 | |||
| 196 | (defvar xref-identifier-completion-table-function #'tags-lazy-completion-table | ||
| 197 | "Function that returns the completion table for identifiers.") | ||
| 198 | |||
| 199 | (defun xref-default-identifier-at-point () | ||
| 200 | (let ((thing (thing-at-point 'symbol))) | ||
| 201 | (and thing (substring-no-properties thing)))) | ||
| 202 | |||
| 203 | |||
| 204 | ;;; misc utilities | ||
| 205 | (defun xref--alistify (list key test) | ||
| 206 | "Partition the elements of LIST into an alist. | ||
| 207 | KEY extracts the key from an element and TEST is used to compare | ||
| 208 | keys." | ||
| 209 | (let ((alist '())) | ||
| 210 | (dolist (e list) | ||
| 211 | (let* ((k (funcall key e)) | ||
| 212 | (probe (cl-assoc k alist :test test))) | ||
| 213 | (if probe | ||
| 214 | (setcdr probe (cons e (cdr probe))) | ||
| 215 | (push (cons k (list e)) alist)))) | ||
| 216 | ;; Put them back in order. | ||
| 217 | (cl-loop for (key . value) in (reverse alist) | ||
| 218 | collect (cons key (reverse value))))) | ||
| 219 | |||
| 220 | (defun xref--insert-propertized (props &rest strings) | ||
| 221 | "Insert STRINGS with text properties PROPS." | ||
| 222 | (let ((start (point))) | ||
| 223 | (apply #'insert strings) | ||
| 224 | (add-text-properties start (point) props))) | ||
| 225 | |||
| 226 | (defun xref--search-property (property &optional backward) | ||
| 227 | "Search the next text range where text property PROPERTY is non-nil. | ||
| 228 | Return the value of PROPERTY. If BACKWARD is non-nil, search | ||
| 229 | backward." | ||
| 230 | (let ((next (if backward | ||
| 231 | #'previous-single-char-property-change | ||
| 232 | #'next-single-char-property-change)) | ||
| 233 | (start (point)) | ||
| 234 | (value nil)) | ||
| 235 | (while (progn | ||
| 236 | (goto-char (funcall next (point) property)) | ||
| 237 | (not (or (setq value (get-text-property (point) property)) | ||
| 238 | (eobp) | ||
| 239 | (bobp))))) | ||
| 240 | (cond (value) | ||
| 241 | (t (goto-char start) nil)))) | ||
| 242 | |||
| 243 | |||
| 244 | ;;; Marker stack (M-. pushes, M-, pops) | ||
| 245 | |||
| 246 | (defcustom xref-marker-ring-length 16 | ||
| 247 | "Length of the xref marker ring." | ||
| 248 | :type 'integer | ||
| 249 | :version "25.1") | ||
| 250 | |||
| 251 | (defvar xref--marker-ring (make-ring xref-marker-ring-length) | ||
| 252 | "Ring of markers to implement the marker stack.") | ||
| 253 | |||
| 254 | (defun xref-push-marker-stack () | ||
| 255 | "Add point to the marker stack." | ||
| 256 | (ring-insert xref--marker-ring (point-marker))) | ||
| 257 | |||
| 258 | ;;;###autoload | ||
| 259 | (defun xref-pop-marker-stack () | ||
| 260 | "Pop back to where \\[xref-find-definitions] was last invoked." | ||
| 261 | (interactive) | ||
| 262 | (let ((ring xref--marker-ring)) | ||
| 263 | (when (ring-empty-p ring) | ||
| 264 | (error "Marker stack is empty")) | ||
| 265 | (let ((marker (ring-remove ring 0))) | ||
| 266 | (switch-to-buffer (or (marker-buffer marker) | ||
| 267 | (error "The marked buffer has been deleted"))) | ||
| 268 | (goto-char (marker-position marker)) | ||
| 269 | (set-marker marker nil nil)))) | ||
| 270 | |||
| 271 | ;; etags.el needs this | ||
| 272 | (defun xref-clear-marker-stack () | ||
| 273 | "Discard all markers from the marker stack." | ||
| 274 | (let ((ring xref--marker-ring)) | ||
| 275 | (while (not (ring-empty-p ring)) | ||
| 276 | (let ((marker (ring-remove ring))) | ||
| 277 | (set-marker marker nil nil))))) | ||
| 278 | |||
| 279 | |||
| 280 | (defun xref--goto-location (location) | ||
| 281 | "Set buffer and point according to xref-location LOCATION." | ||
| 282 | (let ((marker (xref-location-marker location))) | ||
| 283 | (set-buffer (marker-buffer marker)) | ||
| 284 | (cond ((and (<= (point-min) marker) (<= marker (point-max)))) | ||
| 285 | (widen-automatically (widen)) | ||
| 286 | (t (error "Location is outside accessible part of buffer"))) | ||
| 287 | (goto-char marker))) | ||
| 288 | |||
| 289 | (defun xref--pop-to-location (location &optional window) | ||
| 290 | "Goto xref-location LOCATION and display the buffer. | ||
| 291 | WINDOW controls how the buffer is displayed: | ||
| 292 | nil -- switch-to-buffer | ||
| 293 | 'window -- pop-to-buffer (other window) | ||
| 294 | 'frame -- pop-to-buffer (other frame)" | ||
| 295 | (xref--goto-location location) | ||
| 296 | (cl-ecase window | ||
| 297 | ((nil) (switch-to-buffer (current-buffer))) | ||
| 298 | (window (pop-to-buffer (current-buffer) t)) | ||
| 299 | (frame (let ((pop-up-frames t)) (pop-to-buffer (current-buffer) t))))) | ||
| 300 | |||
| 301 | |||
| 302 | ;;; XREF buffer (part of the UI) | ||
| 303 | |||
| 304 | ;; The xref buffer is used to display a set of xrefs. | ||
| 305 | |||
| 306 | (defun xref--display-position (pos other-window recenter-arg) | ||
| 307 | ;; show the location, but don't hijack focus. | ||
| 308 | (with-selected-window (display-buffer (current-buffer) other-window) | ||
| 309 | (goto-char pos) | ||
| 310 | (recenter recenter-arg))) | ||
| 311 | |||
| 312 | (defun xref--show-location (location) | ||
| 313 | (condition-case err | ||
| 314 | (progn | ||
| 315 | (xref--goto-location location) | ||
| 316 | (xref--display-position (point) t 1)) | ||
| 317 | (user-error (message (error-message-string err))))) | ||
| 318 | |||
| 319 | (defun xref--next-line (backward) | ||
| 320 | (let ((loc (xref--search-property 'xref-location backward))) | ||
| 321 | (when loc | ||
| 322 | (save-window-excursion | ||
| 323 | (xref--show-location loc) | ||
| 324 | (sit-for most-positive-fixnum))))) | ||
| 325 | |||
| 326 | (defun xref-next-line () | ||
| 327 | "Move to the next xref and display its source in the other window." | ||
| 328 | (interactive) | ||
| 329 | (xref--next-line nil)) | ||
| 330 | |||
| 331 | (defun xref-prev-line () | ||
| 332 | "Move to the previous xref and display its source in the other window." | ||
| 333 | (interactive) | ||
| 334 | (xref--next-line t)) | ||
| 335 | |||
| 336 | (defun xref--location-at-point () | ||
| 337 | (or (get-text-property (point) 'xref-location) | ||
| 338 | (error "No reference at point"))) | ||
| 339 | |||
| 340 | (defvar-local xref--window nil) | ||
| 341 | |||
| 342 | (defun xref-goto-xref () | ||
| 343 | "Jump to the xref at point and bury the xref buffer." | ||
| 344 | (interactive) | ||
| 345 | (let ((loc (xref--location-at-point)) | ||
| 346 | (window xref--window)) | ||
| 347 | (quit-window) | ||
| 348 | (xref--pop-to-location loc window))) | ||
| 349 | |||
| 350 | (define-derived-mode xref--xref-buffer-mode fundamental-mode "XREF" | ||
| 351 | "Mode for displaying cross-references." | ||
| 352 | (setq buffer-read-only t)) | ||
| 353 | |||
| 354 | (let ((map xref--xref-buffer-mode-map)) | ||
| 355 | (define-key map (kbd "q") #'quit-window) | ||
| 356 | (define-key map [remap next-line] #'xref-next-line) | ||
| 357 | (define-key map [remap previous-line] #'xref-prev-line) | ||
| 358 | (define-key map (kbd "RET") #'xref-goto-xref) | ||
| 359 | |||
| 360 | ;; suggested by Johan Claesson "to further reduce finger movement": | ||
| 361 | (define-key map (kbd ".") #'xref-next-line) | ||
| 362 | (define-key map (kbd ",") #'xref-prev-line)) | ||
| 363 | |||
| 364 | (defconst xref-buffer-name "*xref*" | ||
| 365 | "The name of the buffer to show xrefs.") | ||
| 366 | |||
| 367 | (defun xref--insert-xrefs (xref-alist) | ||
| 368 | "Insert XREF-ALIST in the current-buffer. | ||
| 369 | XREF-ALIST is of the form ((GROUP . (XREF ...)) ...). Where | ||
| 370 | GROUP is a string for decoration purposes and XREF is an | ||
| 371 | `xref--xref' object." | ||
| 372 | (cl-loop for ((group . xrefs) . more1) on xref-alist do | ||
| 373 | (xref--insert-propertized '(face bold) group "\n") | ||
| 374 | (cl-loop for (xref . more2) on xrefs do | ||
| 375 | (insert " ") | ||
| 376 | (with-slots (description location) xref | ||
| 377 | (xref--insert-propertized | ||
| 378 | (list 'xref-location location | ||
| 379 | 'face 'font-lock-keyword-face) | ||
| 380 | description)) | ||
| 381 | (when (or more1 more2) | ||
| 382 | (insert "\n"))))) | ||
| 383 | |||
| 384 | (defun xref--analyze (xrefs) | ||
| 385 | "Find common filenames in XREFS. | ||
| 386 | Return an alist of the form ((FILENAME . (XREF ...)) ...)." | ||
| 387 | (xref--alistify xrefs | ||
| 388 | (lambda (x) | ||
| 389 | (xref-location-group (xref--xref-location x))) | ||
| 390 | #'equal)) | ||
| 391 | |||
| 392 | (defun xref--show-xref-buffer (xrefs window) | ||
| 393 | (let ((xref-alist (xref--analyze xrefs))) | ||
| 394 | (with-current-buffer (get-buffer-create xref-buffer-name) | ||
| 395 | (let ((inhibit-read-only t)) | ||
| 396 | (erase-buffer) | ||
| 397 | (xref--insert-xrefs xref-alist) | ||
| 398 | (xref--xref-buffer-mode) | ||
| 399 | (pop-to-buffer (current-buffer)) | ||
| 400 | (goto-char (point-min)) | ||
| 401 | (setq xref--window window) | ||
| 402 | (current-buffer))))) | ||
| 403 | |||
| 404 | |||
| 405 | ;; This part of the UI seems fairly uncontroversial: it reads the | ||
| 406 | ;; identifier and deals with the single definition case. | ||
| 407 | ;; | ||
| 408 | ;; The controversial multiple definitions case is handed off to | ||
| 409 | ;; xref-show-xrefs-function. | ||
| 410 | |||
| 411 | (defvar xref-show-xrefs-function 'xref--show-xref-buffer | ||
| 412 | "Function to display a list of xrefs.") | ||
| 413 | |||
| 414 | (defun xref--show-xrefs (id kind xrefs window) | ||
| 415 | (cond | ||
| 416 | ((null xrefs) | ||
| 417 | (user-error "No known %s for: %s" kind id)) | ||
| 418 | ((not (cdr xrefs)) | ||
| 419 | (xref-push-marker-stack) | ||
| 420 | (xref--pop-to-location (xref--xref-location (car xrefs)) window)) | ||
| 421 | (t | ||
| 422 | (xref-push-marker-stack) | ||
| 423 | (funcall xref-show-xrefs-function xrefs window)))) | ||
| 424 | |||
| 425 | (defun xref--read-identifier (prompt) | ||
| 426 | "Return the identifier at point or read it from the minibuffer." | ||
| 427 | (let ((id (funcall xref-identifier-at-point-function))) | ||
| 428 | (cond ((or current-prefix-arg (not id)) | ||
| 429 | (completing-read prompt | ||
| 430 | (funcall xref-identifier-completion-table-function) | ||
| 431 | nil t id)) | ||
| 432 | (t id)))) | ||
| 433 | |||
| 434 | |||
| 435 | ;;; Commands | ||
| 436 | |||
| 437 | (defun xref--find-definitions (id window) | ||
| 438 | (xref--show-xrefs id "definitions" | ||
| 439 | (funcall xref-find-function 'definitions id) | ||
| 440 | window)) | ||
| 441 | |||
| 442 | ;;;###autoload | ||
| 443 | (defun xref-find-definitions (identifier) | ||
| 444 | "Find the definition of the identifier at point. | ||
| 445 | With prefix argument, prompt for the identifier." | ||
| 446 | (interactive (list (xref--read-identifier "Find definitions of: "))) | ||
| 447 | (xref--find-definitions identifier nil)) | ||
| 448 | |||
| 449 | ;;;###autoload | ||
| 450 | (defun xref-find-definitions-other-window (identifier) | ||
| 451 | "Like `xref-find-definitions' but switch to the other window." | ||
| 452 | (interactive (list (xref--read-identifier "Find definitions of: "))) | ||
| 453 | (xref--find-definitions identifier 'window)) | ||
| 454 | |||
| 455 | ;;;###autoload | ||
| 456 | (defun xref-find-definitions-other-frame (identifier) | ||
| 457 | "Like `xref-find-definitions' but switch to the other frame." | ||
| 458 | (interactive (list (xref--read-identifier "Find definitions of: "))) | ||
| 459 | (xref--find-definitions identifier 'frame)) | ||
| 460 | |||
| 461 | ;;;###autoload | ||
| 462 | (defun xref-find-references (identifier) | ||
| 463 | "Find references to the identifier at point. | ||
| 464 | With prefix argument, prompt for the identifier." | ||
| 465 | (interactive (list (xref--read-identifier "Find references of: "))) | ||
| 466 | (xref--show-xrefs identifier "references" | ||
| 467 | (funcall xref-find-function 'references identifier) | ||
| 468 | nil)) | ||
| 469 | |||
| 470 | ;;;###autoload | ||
| 471 | (defun xref-find-apropos (pattern) | ||
| 472 | "Find all meaningful symbols that match PATTERN. | ||
| 473 | The argument has the same meaning as in `apropos'." | ||
| 474 | (interactive (list (read-from-minibuffer | ||
| 475 | "Search for pattern (word list or regexp): "))) | ||
| 476 | (require 'apropos) | ||
| 477 | (xref--show-xrefs pattern "apropos" | ||
| 478 | (funcall xref-find-function 'apropos | ||
| 479 | (apropos-parse-pattern | ||
| 480 | (if (string-equal (regexp-quote pattern) pattern) | ||
| 481 | ;; Split into words | ||
| 482 | (or (split-string pattern "[ \t]+" t) | ||
| 483 | (user-error "No word list given")) | ||
| 484 | pattern))) | ||
| 485 | nil)) | ||
| 486 | |||
| 487 | |||
| 488 | ;;; Key bindings | ||
| 489 | |||
| 490 | ;;;###autoload (define-key esc-map "." #'xref-find-definitions) | ||
| 491 | ;;;###autoload (define-key esc-map "," #'xref-pop-marker-stack) | ||
| 492 | ;;;###autoload (define-key esc-map [?\C-.] #'xref-find-apropos) | ||
| 493 | ;;;###autoload (define-key ctl-x-4-map "." #'xref-find-definitions-other-window) | ||
| 494 | ;;;###autoload (define-key ctl-x-5-map "." #'xref-find-definitions-other-frame) | ||
| 495 | |||
| 496 | |||
| 497 | (provide 'xref) | ||
| 498 | |||
| 499 | ;;; xref.el ends here | ||
diff --git a/lisp/shell.el b/lisp/shell.el index 506f944094b..480d04a03eb 100644 --- a/lisp/shell.el +++ b/lisp/shell.el | |||
| @@ -308,6 +308,13 @@ for Shell mode only." | |||
| 308 | (const :tag "on" t)) | 308 | (const :tag "on" t)) |
| 309 | :group 'shell) | 309 | :group 'shell) |
| 310 | 310 | ||
| 311 | (defcustom shell-display-buffer-actions display-buffer-base-action | ||
| 312 | "The `display-buffer' actions for the `*shell*' buffer." | ||
| 313 | :type display-buffer--action-custom-type | ||
| 314 | :risky t | ||
| 315 | :version "25.1" | ||
| 316 | :group 'shell) | ||
| 317 | |||
| 311 | (defvar shell-dirstack nil | 318 | (defvar shell-dirstack nil |
| 312 | "List of directories saved by pushd in this buffer's shell. | 319 | "List of directories saved by pushd in this buffer's shell. |
| 313 | Thus, this does not include the shell's current directory.") | 320 | Thus, this does not include the shell's current directory.") |
| @@ -718,7 +725,7 @@ Otherwise, one argument `-i' is passed to the shell. | |||
| 718 | 725 | ||
| 719 | ;; The buffer's window must be correctly set when we call comint (so | 726 | ;; The buffer's window must be correctly set when we call comint (so |
| 720 | ;; that comint sets the COLUMNS env var properly). | 727 | ;; that comint sets the COLUMNS env var properly). |
| 721 | (pop-to-buffer-same-window buffer) | 728 | (pop-to-buffer buffer shell-display-buffer-actions) |
| 722 | (unless (comint-check-proc buffer) | 729 | (unless (comint-check-proc buffer) |
| 723 | (let* ((prog (or explicit-shell-file-name | 730 | (let* ((prog (or explicit-shell-file-name |
| 724 | (getenv "ESHELL") shell-file-name)) | 731 | (getenv "ESHELL") shell-file-name)) |
diff --git a/lisp/startup.el b/lisp/startup.el index c04b16c43c4..8e981bbc64a 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1463,9 +1463,7 @@ Each element in the list should be a list of strings or pairs | |||
| 1463 | (goto-char (point-min)))) | 1463 | (goto-char (point-min)))) |
| 1464 | "\tMany people have contributed code included in GNU Emacs\n" | 1464 | "\tMany people have contributed code included in GNU Emacs\n" |
| 1465 | :link ("Contributing" | 1465 | :link ("Contributing" |
| 1466 | ,(lambda (_button) | 1466 | ,(lambda (_button) (info "(emacs)Contributing"))) |
| 1467 | (view-file (expand-file-name "CONTRIBUTE" data-directory)) | ||
| 1468 | (goto-char (point-min)))) | ||
| 1469 | "\tHow to contribute improvements to Emacs\n" | 1467 | "\tHow to contribute improvements to Emacs\n" |
| 1470 | "\n" | 1468 | "\n" |
| 1471 | :link ("GNU and Freedom" ,(lambda (_button) (describe-gnu-project))) | 1469 | :link ("GNU and Freedom" ,(lambda (_button) (describe-gnu-project))) |
| @@ -2039,9 +2037,7 @@ Type \\[describe-distribution] for information on ")) | |||
| 2039 | 2037 | ||
| 2040 | (insert-button "Contributing" | 2038 | (insert-button "Contributing" |
| 2041 | 'action | 2039 | 'action |
| 2042 | (lambda (_button) | 2040 | (lambda (_button) (info "(emacs)Contributing")) |
| 2043 | (view-file (expand-file-name "CONTRIBUTE" data-directory)) | ||
| 2044 | (goto-char (point-min))) | ||
| 2045 | 'follow-link t) | 2041 | 'follow-link t) |
| 2046 | (insert "\tHow to contribute improvements to Emacs\n\n") | 2042 | (insert "\tHow to contribute improvements to Emacs\n\n") |
| 2047 | 2043 | ||
diff --git a/lisp/window.el b/lisp/window.el index c95b0d6d418..2b593c35a54 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -7798,6 +7798,9 @@ With arg N, put point N/10 of the way from the true end." | |||
| 7798 | (defvar mouse-autoselect-window-timer nil | 7798 | (defvar mouse-autoselect-window-timer nil |
| 7799 | "Timer used by delayed window autoselection.") | 7799 | "Timer used by delayed window autoselection.") |
| 7800 | 7800 | ||
| 7801 | (defvar mouse-autoselect-window-position-1 nil | ||
| 7802 | "First mouse position recorded by delayed window autoselection.") | ||
| 7803 | |||
| 7801 | (defvar mouse-autoselect-window-position nil | 7804 | (defvar mouse-autoselect-window-position nil |
| 7802 | "Last mouse position recorded by delayed window autoselection.") | 7805 | "Last mouse position recorded by delayed window autoselection.") |
| 7803 | 7806 | ||
| @@ -7822,6 +7825,7 @@ Optional argument FORCE means cancel unconditionally." | |||
| 7822 | (memq (nth 4 (event-end last-input-event)) | 7825 | (memq (nth 4 (event-end last-input-event)) |
| 7823 | '(handle end-scroll))))) | 7826 | '(handle end-scroll))))) |
| 7824 | (setq mouse-autoselect-window-state nil) | 7827 | (setq mouse-autoselect-window-state nil) |
| 7828 | (setq mouse-autoselect-window-position-1 nil) | ||
| 7825 | (when (timerp mouse-autoselect-window-timer) | 7829 | (when (timerp mouse-autoselect-window-timer) |
| 7826 | (cancel-timer mouse-autoselect-window-timer)) | 7830 | (cancel-timer mouse-autoselect-window-timer)) |
| 7827 | (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel))) | 7831 | (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel))) |
| @@ -7863,21 +7867,32 @@ is active. This function is run by `mouse-autoselect-window-timer'." | |||
| 7863 | ;; A menu / popup dialog is active or the mouse is not on the | 7867 | ;; A menu / popup dialog is active or the mouse is not on the |
| 7864 | ;; text region of WINDOW: Suspend autoselection temporarily. | 7868 | ;; text region of WINDOW: Suspend autoselection temporarily. |
| 7865 | (mouse-autoselect-window-start mouse-position nil t)) | 7869 | (mouse-autoselect-window-start mouse-position nil t)) |
| 7866 | ((eq mouse-autoselect-window-state 'suspend) | 7870 | ((or (eq mouse-autoselect-window-state 'suspend) |
| 7871 | ;; When the mouse is at its first recorded position, restart | ||
| 7872 | ;; delayed autoselection. This works around a scenario with | ||
| 7873 | ;; two two-window frames with identical dimensions: select the | ||
| 7874 | ;; first window of the first frame, switch to the second | ||
| 7875 | ;; frame, move the mouse to its second window, minimize the | ||
| 7876 | ;; second frame. Now the second window of the first frame | ||
| 7877 | ;; gets selected although the mouse never really "moved" into | ||
| 7878 | ;; that window. | ||
| 7879 | (and (numberp mouse-autoselect-window) | ||
| 7880 | (equal (mouse-position) mouse-autoselect-window-position-1))) | ||
| 7867 | ;; Delayed autoselection was temporarily suspended, reenable it. | 7881 | ;; Delayed autoselection was temporarily suspended, reenable it. |
| 7868 | (mouse-autoselect-window-start mouse-position)) | 7882 | (mouse-autoselect-window-start mouse-position)) |
| 7869 | ((and window (not (eq window (selected-window))) | 7883 | ((and window (not (eq window (selected-window))) |
| 7870 | (or (not (numberp mouse-autoselect-window)) | 7884 | (or (not (numberp mouse-autoselect-window)) |
| 7871 | (and (> mouse-autoselect-window 0) | 7885 | (and (>= mouse-autoselect-window 0) |
| 7872 | ;; If `mouse-autoselect-window' is positive, select | 7886 | ;; If `mouse-autoselect-window' is non-negative, |
| 7873 | ;; window if the window is the same as before. | 7887 | ;; select window if it's the same as before. |
| 7874 | (eq window mouse-autoselect-window-window)) | 7888 | (eq window mouse-autoselect-window-window)) |
| 7875 | ;; Otherwise select window if the mouse is at the same | 7889 | ;; Otherwise select window iff the mouse is at the same |
| 7876 | ;; position as before. Observe that the first test after | 7890 | ;; position as before. Observe that the first test |
| 7877 | ;; starting autoselection usually fails since the value of | 7891 | ;; after starting autoselection usually fails since the |
| 7878 | ;; `mouse-autoselect-window-position' recorded there is the | 7892 | ;; value of `mouse-autoselect-window-position' recorded |
| 7879 | ;; position where the mouse has entered the new window and | 7893 | ;; there is the position where the mouse has entered the |
| 7880 | ;; not necessarily where the mouse has stopped moving. | 7894 | ;; new window and not necessarily where the mouse has |
| 7895 | ;; stopped moving. | ||
| 7881 | (equal mouse-position mouse-autoselect-window-position)) | 7896 | (equal mouse-position mouse-autoselect-window-position)) |
| 7882 | ;; The minibuffer is a candidate window if it's active. | 7897 | ;; The minibuffer is a candidate window if it's active. |
| 7883 | (or (not (window-minibuffer-p window)) | 7898 | (or (not (window-minibuffer-p window)) |
| @@ -7921,14 +7936,14 @@ is active. This function is run by `mouse-autoselect-window-timer'." | |||
| 7921 | (not (minibuffer-window-active-p window))) | 7936 | (not (minibuffer-window-active-p window))) |
| 7922 | ;; Don't switch when autoselection shall be delayed. | 7937 | ;; Don't switch when autoselection shall be delayed. |
| 7923 | (and (numberp mouse-autoselect-window) | 7938 | (and (numberp mouse-autoselect-window) |
| 7924 | (not (zerop mouse-autoselect-window)) | ||
| 7925 | (not (eq mouse-autoselect-window-state 'select)) | 7939 | (not (eq mouse-autoselect-window-state 'select)) |
| 7926 | (progn | 7940 | (let ((position (mouse-position))) |
| 7927 | ;; Cancel any delayed autoselection. | 7941 | ;; Cancel any delayed autoselection. |
| 7928 | (mouse-autoselect-window-cancel t) | 7942 | (mouse-autoselect-window-cancel t) |
| 7929 | ;; Start delayed autoselection from current mouse | 7943 | ;; Start delayed autoselection from current mouse |
| 7930 | ;; position and window. | 7944 | ;; position and window. |
| 7931 | (mouse-autoselect-window-start (mouse-position) window) | 7945 | (setq mouse-autoselect-window-position-1 position) |
| 7946 | (mouse-autoselect-window-start position window) | ||
| 7932 | ;; Executing a command cancels delayed autoselection. | 7947 | ;; Executing a command cancels delayed autoselection. |
| 7933 | (add-hook | 7948 | (add-hook |
| 7934 | 'pre-command-hook 'mouse-autoselect-window-cancel)))) | 7949 | 'pre-command-hook 'mouse-autoselect-window-cancel)))) |
diff --git a/lwlib/xlwmenu.c b/lwlib/xlwmenu.c index 6f4db562e0b..2d2d4093808 100644 --- a/lwlib/xlwmenu.c +++ b/lwlib/xlwmenu.c | |||
| @@ -439,10 +439,9 @@ resource_widget_value (XlwMenuWidget mw, widget_value *val) | |||
| 439 | int complete_length = | 439 | int complete_length = |
| 440 | strlen (resourced_name) + strlen (val->value) + 2; | 440 | strlen (resourced_name) + strlen (val->value) + 2; |
| 441 | complete_name = XtMalloc (complete_length); | 441 | complete_name = XtMalloc (complete_length); |
| 442 | *complete_name = 0; | 442 | char *z = stpcpy (complete_name, resourced_name); |
| 443 | strcat (complete_name, resourced_name); | 443 | *z++ = ' '; |
| 444 | strcat (complete_name, " "); | 444 | strcpy (z, val->value); |
| 445 | strcat (complete_name, val->value); | ||
| 446 | } | 445 | } |
| 447 | 446 | ||
| 448 | val->toolkit_data = complete_name; | 447 | val->toolkit_data = complete_name; |
diff --git a/m4/gnulib-comp.m4 b/m4/gnulib-comp.m4 index 39ec8ae00e6..49fdf5ef199 100644 --- a/m4/gnulib-comp.m4 +++ b/m4/gnulib-comp.m4 | |||
| @@ -123,6 +123,7 @@ AC_DEFUN([gl_EARLY], | |||
| 123 | # Code from module stdint: | 123 | # Code from module stdint: |
| 124 | # Code from module stdio: | 124 | # Code from module stdio: |
| 125 | # Code from module stdlib: | 125 | # Code from module stdlib: |
| 126 | # Code from module stpcpy: | ||
| 126 | # Code from module strftime: | 127 | # Code from module strftime: |
| 127 | # Code from module string: | 128 | # Code from module string: |
| 128 | # Code from module strtoimax: | 129 | # Code from module strtoimax: |
| @@ -341,6 +342,12 @@ AC_DEFUN([gl_INIT], | |||
| 341 | gl_STDINT_H | 342 | gl_STDINT_H |
| 342 | gl_STDIO_H | 343 | gl_STDIO_H |
| 343 | gl_STDLIB_H | 344 | gl_STDLIB_H |
| 345 | gl_FUNC_STPCPY | ||
| 346 | if test $HAVE_STPCPY = 0; then | ||
| 347 | AC_LIBOBJ([stpcpy]) | ||
| 348 | gl_PREREQ_STPCPY | ||
| 349 | fi | ||
| 350 | gl_STRING_MODULE_INDICATOR([stpcpy]) | ||
| 344 | gl_FUNC_GNU_STRFTIME | 351 | gl_FUNC_GNU_STRFTIME |
| 345 | gl_HEADER_STRING_H | 352 | gl_HEADER_STRING_H |
| 346 | gl_FUNC_STRTOIMAX | 353 | gl_FUNC_STRTOIMAX |
| @@ -889,6 +896,7 @@ AC_DEFUN([gl_FILE_LIST], [ | |||
| 889 | lib/stdint.in.h | 896 | lib/stdint.in.h |
| 890 | lib/stdio.in.h | 897 | lib/stdio.in.h |
| 891 | lib/stdlib.in.h | 898 | lib/stdlib.in.h |
| 899 | lib/stpcpy.c | ||
| 892 | lib/strftime.c | 900 | lib/strftime.c |
| 893 | lib/strftime.h | 901 | lib/strftime.h |
| 894 | lib/string.in.h | 902 | lib/string.in.h |
| @@ -995,6 +1003,7 @@ AC_DEFUN([gl_FILE_LIST], [ | |||
| 995 | m4/stdint.m4 | 1003 | m4/stdint.m4 |
| 996 | m4/stdio_h.m4 | 1004 | m4/stdio_h.m4 |
| 997 | m4/stdlib_h.m4 | 1005 | m4/stdlib_h.m4 |
| 1006 | m4/stpcpy.m4 | ||
| 998 | m4/strftime.m4 | 1007 | m4/strftime.m4 |
| 999 | m4/string_h.m4 | 1008 | m4/string_h.m4 |
| 1000 | m4/strtoimax.m4 | 1009 | m4/strtoimax.m4 |
diff --git a/m4/stpcpy.m4 b/m4/stpcpy.m4 new file mode 100644 index 00000000000..966ba951f52 --- /dev/null +++ b/m4/stpcpy.m4 | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | # stpcpy.m4 serial 8 | ||
| 2 | dnl Copyright (C) 2002, 2007, 2009-2014 Free Software Foundation, Inc. | ||
| 3 | dnl This file is free software; the Free Software Foundation | ||
| 4 | dnl gives unlimited permission to copy and/or distribute it, | ||
| 5 | dnl with or without modifications, as long as this notice is preserved. | ||
| 6 | |||
| 7 | AC_DEFUN([gl_FUNC_STPCPY], | ||
| 8 | [ | ||
| 9 | dnl Persuade glibc <string.h> to declare stpcpy(). | ||
| 10 | AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) | ||
| 11 | |||
| 12 | dnl The stpcpy() declaration in lib/string.in.h uses 'restrict'. | ||
| 13 | AC_REQUIRE([AC_C_RESTRICT]) | ||
| 14 | |||
| 15 | AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) | ||
| 16 | AC_CHECK_FUNCS([stpcpy]) | ||
| 17 | if test $ac_cv_func_stpcpy = no; then | ||
| 18 | HAVE_STPCPY=0 | ||
| 19 | fi | ||
| 20 | ]) | ||
| 21 | |||
| 22 | # Prerequisites of lib/stpcpy.c. | ||
| 23 | AC_DEFUN([gl_PREREQ_STPCPY], [ | ||
| 24 | : | ||
| 25 | ]) | ||
diff --git a/nt/ChangeLog b/nt/ChangeLog index 1edfda0ffd2..2467e64bbef 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-12-26 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * gnulib.mk (stpcpy, string): Sync with the latest change in | ||
| 4 | lib/gnulib.mk. | ||
| 5 | |||
| 1 | 2014-12-13 Eli Zaretskii <eliz@gnu.org> | 6 | 2014-12-13 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * gnulib.mk (stddef.h): Sync with the latest change in lib/gnulib.mk. | 8 | * gnulib.mk (stddef.h): Sync with the latest change in lib/gnulib.mk. |
diff --git a/nt/gnulib.mk b/nt/gnulib.mk index 273f52293cc..a5dca96850f 100644 --- a/nt/gnulib.mk +++ b/nt/gnulib.mk | |||
| @@ -43,7 +43,7 @@ | |||
| 43 | # the same distribution terms as the rest of that program. | 43 | # the same distribution terms as the rest of that program. |
| 44 | # | 44 | # |
| 45 | # Generated by gnulib-tool. | 45 | # Generated by gnulib-tool. |
| 46 | # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --avoid=close --avoid=dup --avoid=fchdir --avoid=fstat --avoid=malloc-posix --avoid=msvc-inval --avoid=msvc-nothrow --avoid=open --avoid=openat-die --avoid=opendir --avoid=raise --avoid=save-cwd --avoid=select --avoid=sigprocmask --avoid=stdarg --avoid=stdbool --avoid=threadlib --makefile-name=gnulib.mk --conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files alloca-opt binary-io byteswap c-ctype c-strcase careadlinkat close-stream count-one-bits count-trailing-zeros crypto/md5 crypto/sha1 crypto/sha256 crypto/sha512 dtoastr dtotimespec dup2 environ execinfo faccessat fcntl fcntl-h fdatasync fdopendir filemode fstatat fsync getloadavg getopt-gnu gettime gettimeofday intprops largefile lstat manywarnings memrchr mkostemp mktime pipe2 pselect pthread_sigmask putenv qacl readlink readlinkat sig2str socklen stat-time stdalign stdio strftime strtoimax strtoumax symlink sys_stat sys_time time timer-time timespec-add timespec-sub unsetenv update-copyright utimens vla warnings | 46 | # Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --avoid=close --avoid=dup --avoid=fchdir --avoid=fstat --avoid=malloc-posix --avoid=msvc-inval --avoid=msvc-nothrow --avoid=open --avoid=openat-die --avoid=opendir --avoid=raise --avoid=save-cwd --avoid=select --avoid=sigprocmask --avoid=stdarg --avoid=stdbool --avoid=threadlib --makefile-name=gnulib.mk --conditional-dependencies --no-libtool --macro-prefix=gl --no-vc-files alloca-opt binary-io byteswap c-ctype c-strcase careadlinkat close-stream count-one-bits count-trailing-zeros crypto/md5 crypto/sha1 crypto/sha256 crypto/sha512 dtoastr dtotimespec dup2 environ execinfo faccessat fcntl fcntl-h fdatasync fdopendir filemode fstatat fsync getloadavg getopt-gnu gettime gettimeofday intprops largefile lstat manywarnings memrchr mkostemp mktime pipe2 pselect pthread_sigmask putenv qacl readlink readlinkat sig2str socklen stat-time stdalign stddef stdio stpcpy strftime strtoimax strtoumax symlink sys_stat sys_time time time_r timer-time timespec-add timespec-sub unsetenv update-copyright utimens vla warnings |
| 47 | 47 | ||
| 48 | 48 | ||
| 49 | MOSTLYCLEANFILES += core *.stackdump | 49 | MOSTLYCLEANFILES += core *.stackdump |
| @@ -771,6 +771,15 @@ EXTRA_DIST += stdint.in.h | |||
| 771 | 771 | ||
| 772 | ## end gnulib module stdint | 772 | ## end gnulib module stdint |
| 773 | 773 | ||
| 774 | ## begin gnulib module stpcpy | ||
| 775 | |||
| 776 | |||
| 777 | EXTRA_DIST += stpcpy.c | ||
| 778 | |||
| 779 | EXTRA_libgnu_a_SOURCES += stpcpy.c | ||
| 780 | |||
| 781 | ## end gnulib module stpcpy | ||
| 782 | |||
| 774 | ## begin gnulib module strftime | 783 | ## begin gnulib module strftime |
| 775 | 784 | ||
| 776 | libgnu_a_SOURCES += strftime.c | 785 | libgnu_a_SOURCES += strftime.c |
| @@ -779,6 +788,106 @@ EXTRA_DIST += strftime.h | |||
| 779 | 788 | ||
| 780 | ## end gnulib module strftime | 789 | ## end gnulib module strftime |
| 781 | 790 | ||
| 791 | ## begin gnulib module string | ||
| 792 | |||
| 793 | BUILT_SOURCES += string.h | ||
| 794 | |||
| 795 | # We need the following in order to create <string.h> when the system | ||
| 796 | # doesn't have one that works with the given compiler. | ||
| 797 | string.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) | ||
| 798 | $(AM_V_GEN)rm -f $@-t $@ && \ | ||
| 799 | { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ | ||
| 800 | sed -e 's|@''GUARD_PREFIX''@|GL|g' \ | ||
| 801 | -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ | ||
| 802 | -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ | ||
| 803 | -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ | ||
| 804 | -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \ | ||
| 805 | -e 's/@''GNULIB_FFSL''@/$(GNULIB_FFSL)/g' \ | ||
| 806 | -e 's/@''GNULIB_FFSLL''@/$(GNULIB_FFSLL)/g' \ | ||
| 807 | -e 's/@''GNULIB_MBSLEN''@/$(GNULIB_MBSLEN)/g' \ | ||
| 808 | -e 's/@''GNULIB_MBSNLEN''@/$(GNULIB_MBSNLEN)/g' \ | ||
| 809 | -e 's/@''GNULIB_MBSCHR''@/$(GNULIB_MBSCHR)/g' \ | ||
| 810 | -e 's/@''GNULIB_MBSRCHR''@/$(GNULIB_MBSRCHR)/g' \ | ||
| 811 | -e 's/@''GNULIB_MBSSTR''@/$(GNULIB_MBSSTR)/g' \ | ||
| 812 | -e 's/@''GNULIB_MBSCASECMP''@/$(GNULIB_MBSCASECMP)/g' \ | ||
| 813 | -e 's/@''GNULIB_MBSNCASECMP''@/$(GNULIB_MBSNCASECMP)/g' \ | ||
| 814 | -e 's/@''GNULIB_MBSPCASECMP''@/$(GNULIB_MBSPCASECMP)/g' \ | ||
| 815 | -e 's/@''GNULIB_MBSCASESTR''@/$(GNULIB_MBSCASESTR)/g' \ | ||
| 816 | -e 's/@''GNULIB_MBSCSPN''@/$(GNULIB_MBSCSPN)/g' \ | ||
| 817 | -e 's/@''GNULIB_MBSPBRK''@/$(GNULIB_MBSPBRK)/g' \ | ||
| 818 | -e 's/@''GNULIB_MBSSPN''@/$(GNULIB_MBSSPN)/g' \ | ||
| 819 | -e 's/@''GNULIB_MBSSEP''@/$(GNULIB_MBSSEP)/g' \ | ||
| 820 | -e 's/@''GNULIB_MBSTOK_R''@/$(GNULIB_MBSTOK_R)/g' \ | ||
| 821 | -e 's/@''GNULIB_MEMCHR''@/$(GNULIB_MEMCHR)/g' \ | ||
| 822 | -e 's/@''GNULIB_MEMMEM''@/$(GNULIB_MEMMEM)/g' \ | ||
| 823 | -e 's/@''GNULIB_MEMPCPY''@/$(GNULIB_MEMPCPY)/g' \ | ||
| 824 | -e 's/@''GNULIB_MEMRCHR''@/$(GNULIB_MEMRCHR)/g' \ | ||
| 825 | -e 's/@''GNULIB_RAWMEMCHR''@/$(GNULIB_RAWMEMCHR)/g' \ | ||
| 826 | -e 's/@''GNULIB_STPCPY''@/$(GNULIB_STPCPY)/g' \ | ||
| 827 | -e 's/@''GNULIB_STPNCPY''@/$(GNULIB_STPNCPY)/g' \ | ||
| 828 | -e 's/@''GNULIB_STRCHRNUL''@/$(GNULIB_STRCHRNUL)/g' \ | ||
| 829 | -e 's/@''GNULIB_STRDUP''@/$(GNULIB_STRDUP)/g' \ | ||
| 830 | -e 's/@''GNULIB_STRNCAT''@/$(GNULIB_STRNCAT)/g' \ | ||
| 831 | -e 's/@''GNULIB_STRNDUP''@/$(GNULIB_STRNDUP)/g' \ | ||
| 832 | -e 's/@''GNULIB_STRNLEN''@/$(GNULIB_STRNLEN)/g' \ | ||
| 833 | -e 's/@''GNULIB_STRPBRK''@/$(GNULIB_STRPBRK)/g' \ | ||
| 834 | -e 's/@''GNULIB_STRSEP''@/$(GNULIB_STRSEP)/g' \ | ||
| 835 | -e 's/@''GNULIB_STRSTR''@/$(GNULIB_STRSTR)/g' \ | ||
| 836 | -e 's/@''GNULIB_STRCASESTR''@/$(GNULIB_STRCASESTR)/g' \ | ||
| 837 | -e 's/@''GNULIB_STRTOK_R''@/$(GNULIB_STRTOK_R)/g' \ | ||
| 838 | -e 's/@''GNULIB_STRERROR''@/$(GNULIB_STRERROR)/g' \ | ||
| 839 | -e 's/@''GNULIB_STRERROR_R''@/$(GNULIB_STRERROR_R)/g' \ | ||
| 840 | -e 's/@''GNULIB_STRSIGNAL''@/$(GNULIB_STRSIGNAL)/g' \ | ||
| 841 | -e 's/@''GNULIB_STRVERSCMP''@/$(GNULIB_STRVERSCMP)/g' \ | ||
| 842 | < $(srcdir)/string.in.h | \ | ||
| 843 | sed -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \ | ||
| 844 | -e 's|@''HAVE_FFSLL''@|$(HAVE_FFSLL)|g' \ | ||
| 845 | -e 's|@''HAVE_MBSLEN''@|$(HAVE_MBSLEN)|g' \ | ||
| 846 | -e 's|@''HAVE_MEMCHR''@|$(HAVE_MEMCHR)|g' \ | ||
| 847 | -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \ | ||
| 848 | -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \ | ||
| 849 | -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \ | ||
| 850 | -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \ | ||
| 851 | -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \ | ||
| 852 | -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \ | ||
| 853 | -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \ | ||
| 854 | -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \ | ||
| 855 | -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \ | ||
| 856 | -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \ | ||
| 857 | -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \ | ||
| 858 | -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \ | ||
| 859 | -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \ | ||
| 860 | -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \ | ||
| 861 | -e 's|@''HAVE_DECL_STRERROR_R''@|$(HAVE_DECL_STRERROR_R)|g' \ | ||
| 862 | -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \ | ||
| 863 | -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \ | ||
| 864 | -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \ | ||
| 865 | -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \ | ||
| 866 | -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \ | ||
| 867 | -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \ | ||
| 868 | -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \ | ||
| 869 | -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \ | ||
| 870 | -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \ | ||
| 871 | -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \ | ||
| 872 | -e 's|@''REPLACE_STRERROR_R''@|$(REPLACE_STRERROR_R)|g' \ | ||
| 873 | -e 's|@''REPLACE_STRNCAT''@|$(REPLACE_STRNCAT)|g' \ | ||
| 874 | -e 's|@''REPLACE_STRNDUP''@|$(REPLACE_STRNDUP)|g' \ | ||
| 875 | -e 's|@''REPLACE_STRNLEN''@|$(REPLACE_STRNLEN)|g' \ | ||
| 876 | -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \ | ||
| 877 | -e 's|@''REPLACE_STRTOK_R''@|$(REPLACE_STRTOK_R)|g' \ | ||
| 878 | -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \ | ||
| 879 | -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ | ||
| 880 | -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ | ||
| 881 | -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ | ||
| 882 | < $(srcdir)/string.in.h; \ | ||
| 883 | } > $@-t && \ | ||
| 884 | mv $@-t $@ | ||
| 885 | MOSTLYCLEANFILES += string.h string.h-t | ||
| 886 | |||
| 887 | EXTRA_DIST += string.in.h | ||
| 888 | |||
| 889 | ## end gnulib module string | ||
| 890 | |||
| 782 | ## begin gnulib module strtoimax | 891 | ## begin gnulib module strtoimax |
| 783 | 892 | ||
| 784 | 893 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index f6647826463..72601fe7c58 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,27 @@ | |||
| 1 | 2014-12-26 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * w32proc.c (sys_spawnve, get_lcid_callback): Use strcpy instead | ||
| 4 | of strcat. | ||
| 5 | |||
| 6 | * w32menu.c (add_menu_item): Use stpcpy instead of strcat. | ||
| 7 | |||
| 8 | * w32.c (sys_readdir, stat_worker, symlink): Use strcpy instead of | ||
| 9 | strcat. | ||
| 10 | |||
| 11 | 2014-12-26 Paul Eggert <eggert@cs.ucla.edu> | ||
| 12 | |||
| 13 | Use bool for boolean in xsmfns.c | ||
| 14 | * xsmfns.c, xterm.h (x_session_have_connection): | ||
| 15 | * xsmfns.c (doing_interact, smc_interact_CB, Fhandle_save_session): | ||
| 16 | Use bool for boolean. | ||
| 17 | (x_session_initialize, Fhandle_save_session): | ||
| 18 | Prefer NILP (x) to EQ (x, Qnil). | ||
| 19 | |||
| 20 | 2014-12-23 Didier Verna <didier@didierverna.net> (tiny change). | ||
| 21 | |||
| 22 | * nsselect.m (Fns_selection_owner_p): Return a Lisp boolean, not a | ||
| 23 | C one (Bug#19396). | ||
| 24 | |||
| 1 | 2014-12-22 Jan Djärv <jan.h.d@swipnet.se> | 25 | 2014-12-22 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 26 | ||
| 3 | * xterm.c (x_bitmap_icon): Partly revert change from 2014-03-21 which | 27 | * xterm.c (x_bitmap_icon): Partly revert change from 2014-03-21 which |
| @@ -197,6 +221,10 @@ | |||
| 197 | Call gnutls_certificate_set_x509_system_trust. Log an error message if | 221 | Call gnutls_certificate_set_x509_system_trust. Log an error message if |
| 198 | it fails. | 222 | it fails. |
| 199 | 223 | ||
| 224 | 2014-12-14 Paul Eggert <eggert@cs.ucla.edu> | ||
| 225 | |||
| 226 | * regex.c (analyze_first): Rename from analyze_first. | ||
| 227 | |||
| 200 | 2014-12-13 Paul Eggert <eggert@cs.ucla.edu> | 228 | 2014-12-13 Paul Eggert <eggert@cs.ucla.edu> |
| 201 | 229 | ||
| 202 | * alloc.c (XMALLOC_BASE_ALIGNMENT): Use max_align_t instead of | 230 | * alloc.c (XMALLOC_BASE_ALIGNMENT): Use max_align_t instead of |
diff --git a/src/callproc.c b/src/callproc.c index a677334b3b7..f40ed3244a5 100644 --- a/src/callproc.c +++ b/src/callproc.c | |||
| @@ -1315,13 +1315,10 @@ child_setup (int in, int out, int err, char **new_argv, bool set_pgrp, | |||
| 1315 | 1315 | ||
| 1316 | if (STRINGP (display)) | 1316 | if (STRINGP (display)) |
| 1317 | { | 1317 | { |
| 1318 | char *vdata; | ||
| 1319 | |||
| 1320 | if (MAX_ALLOCA - sizeof "DISPLAY=" < SBYTES (display)) | 1318 | if (MAX_ALLOCA - sizeof "DISPLAY=" < SBYTES (display)) |
| 1321 | exec_failed (new_argv[0], ENOMEM); | 1319 | exec_failed (new_argv[0], ENOMEM); |
| 1322 | vdata = alloca (sizeof "DISPLAY=" + SBYTES (display)); | 1320 | char *vdata = alloca (sizeof "DISPLAY=" + SBYTES (display)); |
| 1323 | strcpy (vdata, "DISPLAY="); | 1321 | lispstpcpy (stpcpy (vdata, "DISPLAY="), display); |
| 1324 | strcat (vdata, SSDATA (display)); | ||
| 1325 | new_env = add_env (env, new_env, vdata); | 1322 | new_env = add_env (env, new_env, vdata); |
| 1326 | } | 1323 | } |
| 1327 | 1324 | ||
diff --git a/src/dbusbind.c b/src/dbusbind.c index 4852739d8e4..983b05c4206 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -357,7 +357,7 @@ xd_signature_cat (char *signature, char const *x) | |||
| 357 | ptrdiff_t xlen = strlen (x); | 357 | ptrdiff_t xlen = strlen (x); |
| 358 | if (DBUS_MAXIMUM_SIGNATURE_LENGTH - xlen <= siglen) | 358 | if (DBUS_MAXIMUM_SIGNATURE_LENGTH - xlen <= siglen) |
| 359 | string_overflow (); | 359 | string_overflow (); |
| 360 | strcat (signature, x); | 360 | strcpy (signature + siglen, x); |
| 361 | } | 361 | } |
| 362 | 362 | ||
| 363 | /* Compute SIGNATURE of OBJECT. It must have a form that it can be | 363 | /* Compute SIGNATURE of OBJECT. It must have a form that it can be |
| @@ -42,6 +42,8 @@ static ptrdiff_t get_doc_string_buffer_size; | |||
| 42 | 42 | ||
| 43 | static unsigned char *read_bytecode_pointer; | 43 | static unsigned char *read_bytecode_pointer; |
| 44 | 44 | ||
| 45 | static char const sibling_etc[] = "../etc/"; | ||
| 46 | |||
| 45 | /* `readchar' in lread.c calls back here to fetch the next byte. | 47 | /* `readchar' in lread.c calls back here to fetch the next byte. |
| 46 | If UNREADFLAG is 1, we unread a byte. */ | 48 | If UNREADFLAG is 1, we unread a byte. */ |
| 47 | 49 | ||
| @@ -80,7 +82,6 @@ get_doc_string (Lisp_Object filepos, bool unibyte, bool definition) | |||
| 80 | { | 82 | { |
| 81 | char *from, *to, *name, *p, *p1; | 83 | char *from, *to, *name, *p, *p1; |
| 82 | int fd; | 84 | int fd; |
| 83 | ptrdiff_t minsize; | ||
| 84 | int offset; | 85 | int offset; |
| 85 | EMACS_INT position; | 86 | EMACS_INT position; |
| 86 | Lisp_Object file, tem, pos; | 87 | Lisp_Object file, tem, pos; |
| @@ -113,21 +114,14 @@ get_doc_string (Lisp_Object filepos, bool unibyte, bool definition) | |||
| 113 | 114 | ||
| 114 | tem = Ffile_name_absolute_p (file); | 115 | tem = Ffile_name_absolute_p (file); |
| 115 | file = ENCODE_FILE (file); | 116 | file = ENCODE_FILE (file); |
| 116 | if (NILP (tem)) | 117 | Lisp_Object docdir |
| 117 | { | 118 | = NILP (tem) ? ENCODE_FILE (Vdoc_directory) : empty_unibyte_string; |
| 118 | Lisp_Object docdir = ENCODE_FILE (Vdoc_directory); | 119 | ptrdiff_t docdir_sizemax = SBYTES (docdir) + 1; |
| 119 | minsize = SCHARS (docdir); | 120 | #ifndef CANNOT_DUMP |
| 120 | /* sizeof ("../etc/") == 8 */ | 121 | docdir_sizemax = max (docdir_sizemax, sizeof sibling_etc); |
| 121 | if (minsize < 8) | 122 | #endif |
| 122 | minsize = 8; | 123 | name = SAFE_ALLOCA (docdir_sizemax + SBYTES (file)); |
| 123 | name = SAFE_ALLOCA (minsize + SCHARS (file) + 8); | 124 | lispstpcpy (lispstpcpy (name, docdir), file); |
| 124 | char *z = lispstpcpy (name, docdir); | ||
| 125 | strcpy (z, SSDATA (file)); | ||
| 126 | } | ||
| 127 | else | ||
| 128 | { | ||
| 129 | name = SSDATA (file); | ||
| 130 | } | ||
| 131 | 125 | ||
| 132 | fd = emacs_open (name, O_RDONLY, 0); | 126 | fd = emacs_open (name, O_RDONLY, 0); |
| 133 | if (fd < 0) | 127 | if (fd < 0) |
| @@ -137,8 +131,7 @@ get_doc_string (Lisp_Object filepos, bool unibyte, bool definition) | |||
| 137 | { | 131 | { |
| 138 | /* Preparing to dump; DOC file is probably not installed. | 132 | /* Preparing to dump; DOC file is probably not installed. |
| 139 | So check in ../etc. */ | 133 | So check in ../etc. */ |
| 140 | strcpy (name, "../etc/"); | 134 | lispstpcpy (stpcpy (name, sibling_etc), file); |
| 141 | strcat (name, SSDATA (file)); | ||
| 142 | 135 | ||
| 143 | fd = emacs_open (name, O_RDONLY, 0); | 136 | fd = emacs_open (name, O_RDONLY, 0); |
| 144 | } | 137 | } |
| @@ -580,7 +573,6 @@ the same file name is found in the `doc-directory'. */) | |||
| 580 | (0) | 573 | (0) |
| 581 | #endif /* CANNOT_DUMP */ | 574 | #endif /* CANNOT_DUMP */ |
| 582 | { | 575 | { |
| 583 | static char const sibling_etc[] = "../etc/"; | ||
| 584 | dirname = sibling_etc; | 576 | dirname = sibling_etc; |
| 585 | dirlen = sizeof sibling_etc - 1; | 577 | dirlen = sizeof sibling_etc - 1; |
| 586 | } | 578 | } |
| @@ -594,8 +586,7 @@ the same file name is found in the `doc-directory'. */) | |||
| 594 | count = SPECPDL_INDEX (); | 586 | count = SPECPDL_INDEX (); |
| 595 | USE_SAFE_ALLOCA; | 587 | USE_SAFE_ALLOCA; |
| 596 | name = SAFE_ALLOCA (dirlen + SBYTES (filename) + 1); | 588 | name = SAFE_ALLOCA (dirlen + SBYTES (filename) + 1); |
| 597 | strcpy (name, dirname); | 589 | lispstpcpy (stpcpy (name, dirname), filename); /*** Add this line ***/ |
| 598 | strcat (name, SSDATA (filename)); /*** Add this line ***/ | ||
| 599 | 590 | ||
| 600 | /* Vbuild_files is nil when temacs is run, and non-nil after that. */ | 591 | /* Vbuild_files is nil when temacs is run, and non-nil after that. */ |
| 601 | if (NILP (Vbuild_files)) | 592 | if (NILP (Vbuild_files)) |
diff --git a/src/editfns.c b/src/editfns.c index 0a07886934c..430c4c91fb3 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -1350,10 +1350,9 @@ name, or nil if there is no such user. */) | |||
| 1350 | USE_SAFE_ALLOCA; | 1350 | USE_SAFE_ALLOCA; |
| 1351 | char *r = SAFE_ALLOCA (strlen (p) + SBYTES (login) + 1); | 1351 | char *r = SAFE_ALLOCA (strlen (p) + SBYTES (login) + 1); |
| 1352 | memcpy (r, p, q - p); | 1352 | memcpy (r, p, q - p); |
| 1353 | r[q - p] = 0; | 1353 | char *s = lispstpcpy (&r[q - p], login); |
| 1354 | strcat (r, SSDATA (login)); | ||
| 1355 | r[q - p] = upcase ((unsigned char) r[q - p]); | 1354 | r[q - p] = upcase ((unsigned char) r[q - p]); |
| 1356 | strcat (r, q + 1); | 1355 | strcpy (s, q + 1); |
| 1357 | full = build_string (r); | 1356 | full = build_string (r); |
| 1358 | SAFE_FREE (); | 1357 | SAFE_FREE (); |
| 1359 | } | 1358 | } |
diff --git a/src/frame.c b/src/frame.c index 31273665e88..2ad1c1b52b7 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -4076,23 +4076,23 @@ xrdb_get_resource (XrmDatabase rdb, Lisp_Object attribute, Lisp_Object class, Li | |||
| 4076 | 4076 | ||
| 4077 | /* Start with emacs.FRAMENAME for the name (the specific one) | 4077 | /* Start with emacs.FRAMENAME for the name (the specific one) |
| 4078 | and with `Emacs' for the class key (the general one). */ | 4078 | and with `Emacs' for the class key (the general one). */ |
| 4079 | lispstpcpy (name_key, Vx_resource_name); | 4079 | char *nz = lispstpcpy (name_key, Vx_resource_name); |
| 4080 | lispstpcpy (class_key, Vx_resource_class); | 4080 | char *cz = lispstpcpy (class_key, Vx_resource_class); |
| 4081 | 4081 | ||
| 4082 | strcat (class_key, "."); | 4082 | *cz++ = '.'; |
| 4083 | strcat (class_key, SSDATA (class)); | 4083 | cz = lispstpcpy (cz, class); |
| 4084 | 4084 | ||
| 4085 | if (!NILP (component)) | 4085 | if (!NILP (component)) |
| 4086 | { | 4086 | { |
| 4087 | strcat (class_key, "."); | 4087 | *cz++ = '.'; |
| 4088 | strcat (class_key, SSDATA (subclass)); | 4088 | lispstpcpy (cz, subclass); |
| 4089 | 4089 | ||
| 4090 | strcat (name_key, "."); | 4090 | *nz++ = '.'; |
| 4091 | strcat (name_key, SSDATA (component)); | 4091 | nz = lispstpcpy (nz, component); |
| 4092 | } | 4092 | } |
| 4093 | 4093 | ||
| 4094 | strcat (name_key, "."); | 4094 | *nz++ = '.'; |
| 4095 | strcat (name_key, SSDATA (attribute)); | 4095 | lispstpcpy (nz, attribute); |
| 4096 | 4096 | ||
| 4097 | char *value = x_get_string_resource (rdb, name_key, class_key); | 4097 | char *value = x_get_string_resource (rdb, name_key, class_key); |
| 4098 | SAFE_FREE(); | 4098 | SAFE_FREE(); |
diff --git a/src/gtkutil.c b/src/gtkutil.c index 9465d5479df..f61cbc2c85c 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -1839,12 +1839,12 @@ xg_get_file_with_chooser (struct frame *f, | |||
| 1839 | 1839 | ||
| 1840 | if (x_gtk_file_dialog_help_text) | 1840 | if (x_gtk_file_dialog_help_text) |
| 1841 | { | 1841 | { |
| 1842 | msgbuf[0] = '\0'; | 1842 | char *z = msgbuf; |
| 1843 | /* Gtk+ 2.10 has the file name text entry box integrated in the dialog. | 1843 | /* Gtk+ 2.10 has the file name text entry box integrated in the dialog. |
| 1844 | Show the C-l help text only for versions < 2.10. */ | 1844 | Show the C-l help text only for versions < 2.10. */ |
| 1845 | if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE) | 1845 | if (gtk_check_version (2, 10, 0) && action != GTK_FILE_CHOOSER_ACTION_SAVE) |
| 1846 | strcat (msgbuf, "\nType C-l to display a file name text entry box.\n"); | 1846 | z = stpcpy (z, "\nType C-l to display a file name text entry box.\n"); |
| 1847 | strcat (msgbuf, "\nIf you don't like this file selector, use the " | 1847 | strcpy (z, "\nIf you don't like this file selector, use the " |
| 1848 | "corresponding\nkey binding or customize " | 1848 | "corresponding\nkey binding or customize " |
| 1849 | "use-file-dialog to turn it off."); | 1849 | "use-file-dialog to turn it off."); |
| 1850 | 1850 | ||
diff --git a/src/keyboard.c b/src/keyboard.c index 215b6ea3f70..41cb5df6776 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -276,7 +276,7 @@ bool input_pending; | |||
| 276 | /* True if more input was available last time we read an event. | 276 | /* True if more input was available last time we read an event. |
| 277 | 277 | ||
| 278 | Since redisplay can take a significant amount of time and is not | 278 | Since redisplay can take a significant amount of time and is not |
| 279 | indispensible to perform the user's commands, when input arrives | 279 | indispensable to perform the user's commands, when input arrives |
| 280 | "too fast", Emacs skips redisplay. More specifically, if the next | 280 | "too fast", Emacs skips redisplay. More specifically, if the next |
| 281 | command has already been input when we finish the previous command, | 281 | command has already been input when we finish the previous command, |
| 282 | we skip the intermediate redisplay. | 282 | we skip the intermediate redisplay. |
diff --git a/src/nsselect.m b/src/nsselect.m index 3b33a97ca73..8863bd27f16 100644 --- a/src/nsselect.m +++ b/src/nsselect.m | |||
| @@ -438,7 +438,8 @@ On Nextstep, TERMINAL is unused. */) | |||
| 438 | if (EQ (selection, Qnil)) selection = QPRIMARY; | 438 | if (EQ (selection, Qnil)) selection = QPRIMARY; |
| 439 | if (EQ (selection, Qt)) selection = QSECONDARY; | 439 | if (EQ (selection, Qt)) selection = QSECONDARY; |
| 440 | return ns_get_pb_change_count (selection) | 440 | return ns_get_pb_change_count (selection) |
| 441 | == ns_get_our_change_count_for (selection); | 441 | == ns_get_our_change_count_for (selection) |
| 442 | ? Qt : Qnil; | ||
| 442 | } | 443 | } |
| 443 | 444 | ||
| 444 | 445 | ||
diff --git a/src/tparam.c b/src/tparam.c index e02cea3689e..b0cd0047ba2 100644 --- a/src/tparam.c +++ b/src/tparam.c | |||
| @@ -255,9 +255,9 @@ tparam1 (const char *string, char *outstring, int len, | |||
| 255 | } | 255 | } |
| 256 | *op = 0; | 256 | *op = 0; |
| 257 | while (doup-- > 0) | 257 | while (doup-- > 0) |
| 258 | strcat (op, up); | 258 | op = stpcpy (op, up); |
| 259 | while (doleft-- > 0) | 259 | while (doleft-- > 0) |
| 260 | strcat (op, left); | 260 | op = stpcpy (op, left); |
| 261 | return outstring; | 261 | return outstring; |
| 262 | } | 262 | } |
| 263 | 263 | ||
| @@ -3405,10 +3405,10 @@ sys_readdir (DIR *dirp) | |||
| 3405 | int ln; | 3405 | int ln; |
| 3406 | 3406 | ||
| 3407 | strcpy (filename, dir_pathname); | 3407 | strcpy (filename, dir_pathname); |
| 3408 | ln = strlen (filename) - 1; | 3408 | ln = strlen (filename); |
| 3409 | if (!IS_DIRECTORY_SEP (filename[ln])) | 3409 | if (!IS_DIRECTORY_SEP (filename[ln - 1])) |
| 3410 | strcat (filename, "\\"); | 3410 | filename[ln++] = '\\'; |
| 3411 | strcat (filename, "*"); | 3411 | strcpy (filename + ln, "*"); |
| 3412 | 3412 | ||
| 3413 | /* Note: No need to resolve symlinks in FILENAME, because | 3413 | /* Note: No need to resolve symlinks in FILENAME, because |
| 3414 | FindFirst opens the directory that is the target of a | 3414 | FindFirst opens the directory that is the target of a |
| @@ -4969,7 +4969,7 @@ stat_worker (const char * path, struct stat * buf, int follow_symlinks) | |||
| 4969 | { | 4969 | { |
| 4970 | /* Make sure root directories end in a slash. */ | 4970 | /* Make sure root directories end in a slash. */ |
| 4971 | if (!IS_DIRECTORY_SEP (name[len-1])) | 4971 | if (!IS_DIRECTORY_SEP (name[len-1])) |
| 4972 | strcat (name, "\\"); | 4972 | strcpy (name + len, "\\"); |
| 4973 | if (GetDriveType (name) < 2) | 4973 | if (GetDriveType (name) < 2) |
| 4974 | { | 4974 | { |
| 4975 | errno = ENOENT; | 4975 | errno = ENOENT; |
| @@ -5438,8 +5438,7 @@ symlink (char const *filename, char const *linkname) | |||
| 5438 | p--; | 5438 | p--; |
| 5439 | if (p > linkfn) | 5439 | if (p > linkfn) |
| 5440 | strncpy (tem, linkfn, p - linkfn); | 5440 | strncpy (tem, linkfn, p - linkfn); |
| 5441 | tem[p - linkfn] = '\0'; | 5441 | strcpy (tem + (p - linkfn), filename); |
| 5442 | strcat (tem, filename); | ||
| 5443 | dir_access = faccessat (AT_FDCWD, tem, D_OK, AT_EACCESS); | 5442 | dir_access = faccessat (AT_FDCWD, tem, D_OK, AT_EACCESS); |
| 5444 | } | 5443 | } |
| 5445 | else | 5444 | else |
diff --git a/src/w32menu.c b/src/w32menu.c index 6633ffddbcf..287062c702c 100644 --- a/src/w32menu.c +++ b/src/w32menu.c | |||
| @@ -1256,9 +1256,9 @@ add_menu_item (HMENU menu, widget_value *wv, HMENU item) | |||
| 1256 | if (wv->key != NULL) | 1256 | if (wv->key != NULL) |
| 1257 | { | 1257 | { |
| 1258 | out_string = SAFE_ALLOCA (strlen (wv->name) + strlen (wv->key) + 2); | 1258 | out_string = SAFE_ALLOCA (strlen (wv->name) + strlen (wv->key) + 2); |
| 1259 | strcpy (out_string, wv->name); | 1259 | p = stpcpy (out_string, wv->name); |
| 1260 | strcat (out_string, "\t"); | 1260 | p = stpcpy (p, "\t"); |
| 1261 | strcat (out_string, wv->key); | 1261 | strcpy (p, wv->key); |
| 1262 | } | 1262 | } |
| 1263 | else | 1263 | else |
| 1264 | out_string = (char *)wv->name; | 1264 | out_string = (char *)wv->name; |
diff --git a/src/w32proc.c b/src/w32proc.c index 09e0c0530a4..c571726d70f 100644 --- a/src/w32proc.c +++ b/src/w32proc.c | |||
| @@ -1665,10 +1665,7 @@ sys_spawnve (int mode, char *cmdname, char **argv, char **envp) | |||
| 1665 | if (egetenv ("CMDPROXY")) | 1665 | if (egetenv ("CMDPROXY")) |
| 1666 | strcpy (cmdname, egetenv ("CMDPROXY")); | 1666 | strcpy (cmdname, egetenv ("CMDPROXY")); |
| 1667 | else | 1667 | else |
| 1668 | { | 1668 | strcpy (lispstpcpy (cmdname, Vinvocation_directory), "cmdproxy.exe"); |
| 1669 | lispstpcpy (cmdname, Vinvocation_directory); | ||
| 1670 | strcat (cmdname, "cmdproxy.exe"); | ||
| 1671 | } | ||
| 1672 | 1669 | ||
| 1673 | /* Can't use unixtodos_filename here, since that needs its file | 1670 | /* Can't use unixtodos_filename here, since that needs its file |
| 1674 | name argument encoded in UTF-8. */ | 1671 | name argument encoded in UTF-8. */ |
| @@ -3183,18 +3180,20 @@ get_lcid_callback (LPTSTR locale_num_str) | |||
| 3183 | if (GetLocaleInfo (try_lcid, LOCALE_SABBREVLANGNAME, | 3180 | if (GetLocaleInfo (try_lcid, LOCALE_SABBREVLANGNAME, |
| 3184 | locval, LOCALE_NAME_MAX_LENGTH)) | 3181 | locval, LOCALE_NAME_MAX_LENGTH)) |
| 3185 | { | 3182 | { |
| 3183 | size_t locval_len; | ||
| 3184 | |||
| 3186 | /* This is for when they only specify the language, as in "ENU". */ | 3185 | /* This is for when they only specify the language, as in "ENU". */ |
| 3187 | if (stricmp (locval, lname) == 0) | 3186 | if (stricmp (locval, lname) == 0) |
| 3188 | { | 3187 | { |
| 3189 | found_lcid = try_lcid; | 3188 | found_lcid = try_lcid; |
| 3190 | return FALSE; | 3189 | return FALSE; |
| 3191 | } | 3190 | } |
| 3192 | strcat (locval, "_"); | 3191 | locval_len = strlen (locval); |
| 3192 | strcpy (locval + locval_len, "_"); | ||
| 3193 | if (GetLocaleInfo (try_lcid, LOCALE_SABBREVCTRYNAME, | 3193 | if (GetLocaleInfo (try_lcid, LOCALE_SABBREVCTRYNAME, |
| 3194 | locval + strlen (locval), LOCALE_NAME_MAX_LENGTH)) | 3194 | locval + locval_len + 1, LOCALE_NAME_MAX_LENGTH)) |
| 3195 | { | 3195 | { |
| 3196 | size_t locval_len = strlen (locval); | 3196 | locval_len = strlen (locval); |
| 3197 | |||
| 3198 | if (strnicmp (locval, lname, locval_len) == 0 | 3197 | if (strnicmp (locval, lname, locval_len) == 0 |
| 3199 | && (lname[locval_len] == '.' | 3198 | && (lname[locval_len] == '.' |
| 3200 | || lname[locval_len] == '\0')) | 3199 | || lname[locval_len] == '\0')) |
diff --git a/src/xfns.c b/src/xfns.c index 1b17311f99c..ba2601daca4 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -1710,13 +1710,14 @@ xic_create_fontsetname (const char *base_fontname, int motif) | |||
| 1710 | { | 1710 | { |
| 1711 | const char *sep = motif ? ";" : ","; | 1711 | const char *sep = motif ? ";" : ","; |
| 1712 | char *fontsetname; | 1712 | char *fontsetname; |
| 1713 | char *z; | ||
| 1713 | 1714 | ||
| 1714 | /* Make a fontset name from the base font name. */ | 1715 | /* Make a fontset name from the base font name. */ |
| 1715 | if (xic_default_fontset == base_fontname) | 1716 | if (xic_default_fontset == base_fontname) |
| 1716 | { | 1717 | { |
| 1717 | /* There is no base font name, use the default. */ | 1718 | /* There is no base font name, use the default. */ |
| 1718 | fontsetname = xmalloc (strlen (base_fontname) + 2); | 1719 | fontsetname = xmalloc (strlen (base_fontname) + 2); |
| 1719 | strcpy (fontsetname, base_fontname); | 1720 | z = stpcpy (fontsetname, base_fontname); |
| 1720 | } | 1721 | } |
| 1721 | else | 1722 | else |
| 1722 | { | 1723 | { |
| @@ -1737,9 +1738,9 @@ xic_create_fontsetname (const char *base_fontname, int motif) | |||
| 1737 | Use the specified font plus the default. */ | 1738 | Use the specified font plus the default. */ |
| 1738 | fontsetname = xmalloc (strlen (base_fontname) | 1739 | fontsetname = xmalloc (strlen (base_fontname) |
| 1739 | + strlen (xic_default_fontset) + 3); | 1740 | + strlen (xic_default_fontset) + 3); |
| 1740 | strcpy (fontsetname, base_fontname); | 1741 | z = stpcpy (fontsetname, base_fontname); |
| 1741 | strcat (fontsetname, sep); | 1742 | z = stpcpy (z, sep); |
| 1742 | strcat (fontsetname, xic_default_fontset); | 1743 | z = stpcpy (z, xic_default_fontset); |
| 1743 | } | 1744 | } |
| 1744 | else | 1745 | else |
| 1745 | { | 1746 | { |
| @@ -1800,27 +1801,26 @@ xic_create_fontsetname (const char *base_fontname, int motif) | |||
| 1800 | /* Build the font spec that matches all. */ | 1801 | /* Build the font spec that matches all. */ |
| 1801 | len = p - p2 + strlen (allcs) + strlen (all) + strlen (allfamilies) + 1; | 1802 | len = p - p2 + strlen (allcs) + strlen (all) + strlen (allfamilies) + 1; |
| 1802 | font_all = alloca (len); | 1803 | font_all = alloca (len); |
| 1803 | strcpy (font_all, allfamilies); | 1804 | z = stpcpy (font_all, allfamilies); |
| 1804 | strcat (font_all, all); | 1805 | z = stpcpy (z, all); |
| 1805 | memcpy (font_all + strlen (all) + strlen (allfamilies), p2, p - p2); | 1806 | memcpy (z, p2, p - p2); |
| 1806 | strcpy (font_all + strlen (all) + strlen (allfamilies) + (p - p2), | 1807 | strcpy (z + (p - p2), allcs); |
| 1807 | allcs); | ||
| 1808 | 1808 | ||
| 1809 | /* Build the actual font set name. */ | 1809 | /* Build the actual font set name. */ |
| 1810 | len = strlen (base_fontname) + strlen (font_allcs) | 1810 | len = strlen (base_fontname) + strlen (font_allcs) |
| 1811 | + strlen (font_allfamilies) + strlen (font_all) + 5; | 1811 | + strlen (font_allfamilies) + strlen (font_all) + 5; |
| 1812 | fontsetname = xmalloc (len); | 1812 | fontsetname = xmalloc (len); |
| 1813 | strcpy (fontsetname, base_fontname); | 1813 | z = stpcpy (fontsetname, base_fontname); |
| 1814 | strcat (fontsetname, sep); | 1814 | z = stpcpy (z, sep); |
| 1815 | strcat (fontsetname, font_allcs); | 1815 | z = stpcpy (z, font_allcs); |
| 1816 | strcat (fontsetname, sep); | 1816 | z = stpcpy (z, sep); |
| 1817 | strcat (fontsetname, font_allfamilies); | 1817 | z = stpcpy (z, font_allfamilies); |
| 1818 | strcat (fontsetname, sep); | 1818 | z = stpcpy (z, sep); |
| 1819 | strcat (fontsetname, font_all); | 1819 | z = stpcpy (z, font_all); |
| 1820 | } | 1820 | } |
| 1821 | } | 1821 | } |
| 1822 | if (motif) | 1822 | if (motif) |
| 1823 | return strcat (fontsetname, ":"); | 1823 | strcpy (z, ":"); |
| 1824 | return fontsetname; | 1824 | return fontsetname; |
| 1825 | } | 1825 | } |
| 1826 | #endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */ | 1826 | #endif /* HAVE_X_WINDOWS && USE_X_TOOLKIT */ |
diff --git a/src/xrdb.c b/src/xrdb.c index 32ad3c7f01e..e21206d0800 100644 --- a/src/xrdb.c +++ b/src/xrdb.c | |||
| @@ -232,9 +232,10 @@ gethomedir (void) | |||
| 232 | if (ptr == NULL) | 232 | if (ptr == NULL) |
| 233 | return xstrdup ("/"); | 233 | return xstrdup ("/"); |
| 234 | 234 | ||
| 235 | copy = xmalloc (strlen (ptr) + 2); | 235 | ptrdiff_t len = strlen (ptr); |
| 236 | strcpy (copy, ptr); | 236 | copy = xmalloc (len + 2); |
| 237 | return strcat (copy, "/"); | 237 | strcpy (copy + len, "/"); |
| 238 | return memcpy (copy, ptr, len); | ||
| 238 | } | 239 | } |
| 239 | 240 | ||
| 240 | 241 | ||
| @@ -334,6 +335,7 @@ get_user_app (const char *class) | |||
| 334 | return db; | 335 | return db; |
| 335 | } | 336 | } |
| 336 | 337 | ||
| 338 | static char const xdefaults[] = ".Xdefaults"; | ||
| 337 | 339 | ||
| 338 | static XrmDatabase | 340 | static XrmDatabase |
| 339 | get_user_db (Display *display) | 341 | get_user_db (Display *display) |
| @@ -351,16 +353,12 @@ get_user_db (Display *display) | |||
| 351 | db = XrmGetStringDatabase (xdefs); | 353 | db = XrmGetStringDatabase (xdefs); |
| 352 | else | 354 | else |
| 353 | { | 355 | { |
| 354 | char *home; | 356 | char *home = gethomedir (); |
| 355 | char *xdefault; | 357 | ptrdiff_t homelen = strlen (home); |
| 356 | 358 | char *filename = xrealloc (home, homelen + sizeof xdefaults); | |
| 357 | home = gethomedir (); | 359 | strcpy (filename + homelen, xdefaults); |
| 358 | xdefault = xmalloc (strlen (home) + sizeof ".Xdefaults"); | 360 | db = XrmGetFileDatabase (filename); |
| 359 | strcpy (xdefault, home); | 361 | xfree (filename); |
| 360 | strcat (xdefault, ".Xdefaults"); | ||
| 361 | db = XrmGetFileDatabase (xdefault); | ||
| 362 | xfree (home); | ||
| 363 | xfree (xdefault); | ||
| 364 | } | 362 | } |
| 365 | 363 | ||
| 366 | #ifdef HAVE_XSCREENRESOURCESTRING | 364 | #ifdef HAVE_XSCREENRESOURCESTRING |
| @@ -380,24 +378,22 @@ static XrmDatabase | |||
| 380 | get_environ_db (void) | 378 | get_environ_db (void) |
| 381 | { | 379 | { |
| 382 | XrmDatabase db; | 380 | XrmDatabase db; |
| 383 | char *p; | 381 | char *p = getenv ("XENVIRONMENT"); |
| 384 | char *path = 0; | 382 | char *filename = 0; |
| 385 | 383 | ||
| 386 | if ((p = getenv ("XENVIRONMENT")) == NULL) | 384 | if (!p) |
| 387 | { | 385 | { |
| 388 | static char const xdefaults[] = ".Xdefaults-"; | ||
| 389 | char *home = gethomedir (); | 386 | char *home = gethomedir (); |
| 390 | char const *host = SSDATA (Vsystem_name); | 387 | ptrdiff_t homelen = strlen (home); |
| 391 | ptrdiff_t pathsize = (strlen (home) + sizeof xdefaults | 388 | ptrdiff_t filenamesize = (homelen + sizeof xdefaults |
| 392 | + SBYTES (Vsystem_name)); | 389 | + SBYTES (Vsystem_name)); |
| 393 | path = xrealloc (home, pathsize); | 390 | p = filename = xrealloc (home, filenamesize); |
| 394 | strcat (strcat (path, xdefaults), host); | 391 | lispstpcpy (stpcpy (filename + homelen, xdefaults), Vsystem_name); |
| 395 | p = path; | ||
| 396 | } | 392 | } |
| 397 | 393 | ||
| 398 | db = XrmGetFileDatabase (p); | 394 | db = XrmGetFileDatabase (p); |
| 399 | 395 | ||
| 400 | xfree (path); | 396 | xfree (filename); |
| 401 | 397 | ||
| 402 | return db; | 398 | return db; |
| 403 | } | 399 | } |
diff --git a/src/xsmfns.c b/src/xsmfns.c index cd4f9ce57fa..a6c69855390 100644 --- a/src/xsmfns.c +++ b/src/xsmfns.c | |||
| @@ -53,7 +53,7 @@ static int ice_fd = -1; | |||
| 53 | 53 | ||
| 54 | /* A flag that says if we are in shutdown interactions or not. */ | 54 | /* A flag that says if we are in shutdown interactions or not. */ |
| 55 | 55 | ||
| 56 | static int doing_interact; | 56 | static bool doing_interact; |
| 57 | 57 | ||
| 58 | /* The session manager object for the session manager connection. */ | 58 | /* The session manager object for the session manager connection. */ |
| 59 | 59 | ||
| @@ -123,9 +123,9 @@ x_session_check_input (int fd, void *data) | |||
| 123 | kbd_buffer_store_event (&emacs_event); | 123 | kbd_buffer_store_event (&emacs_event); |
| 124 | } | 124 | } |
| 125 | 125 | ||
| 126 | /* Return non-zero if we have a connection to a session manager. */ | 126 | /* Return true if we have a connection to a session manager. */ |
| 127 | 127 | ||
| 128 | int | 128 | bool |
| 129 | x_session_have_connection (void) | 129 | x_session_have_connection (void) |
| 130 | { | 130 | { |
| 131 | return ice_fd != -1; | 131 | return ice_fd != -1; |
| @@ -138,7 +138,7 @@ x_session_have_connection (void) | |||
| 138 | static void | 138 | static void |
| 139 | smc_interact_CB (SmcConn smcConn, SmPointer clientData) | 139 | smc_interact_CB (SmcConn smcConn, SmPointer clientData) |
| 140 | { | 140 | { |
| 141 | doing_interact = True; | 141 | doing_interact = true; |
| 142 | emacs_event.kind = SAVE_SESSION_EVENT; | 142 | emacs_event.kind = SAVE_SESSION_EVENT; |
| 143 | emacs_event.arg = Qnil; | 143 | emacs_event.arg = Qnil; |
| 144 | } | 144 | } |
| @@ -230,8 +230,7 @@ smc_save_yourself_CB (SmcConn smcConn, | |||
| 230 | props[props_idx]->vals[vp_idx++].value = emacs_program; | 230 | props[props_idx]->vals[vp_idx++].value = emacs_program; |
| 231 | 231 | ||
| 232 | smid_opt = xmalloc (strlen (SMID_OPT) + strlen (client_id) + 1); | 232 | smid_opt = xmalloc (strlen (SMID_OPT) + strlen (client_id) + 1); |
| 233 | strcpy (smid_opt, SMID_OPT); | 233 | strcpy (stpcpy (smid_opt, SMID_OPT), client_id); |
| 234 | strcat (smid_opt, client_id); | ||
| 235 | 234 | ||
| 236 | props[props_idx]->vals[vp_idx].length = strlen (smid_opt); | 235 | props[props_idx]->vals[vp_idx].length = strlen (smid_opt); |
| 237 | props[props_idx]->vals[vp_idx++].value = smid_opt; | 236 | props[props_idx]->vals[vp_idx++].value = smid_opt; |
| @@ -242,8 +241,7 @@ smc_save_yourself_CB (SmcConn smcConn, | |||
| 242 | if (cwd) | 241 | if (cwd) |
| 243 | { | 242 | { |
| 244 | chdir_opt = xmalloc (strlen (CHDIR_OPT) + strlen (cwd) + 1); | 243 | chdir_opt = xmalloc (strlen (CHDIR_OPT) + strlen (cwd) + 1); |
| 245 | strcpy (chdir_opt, CHDIR_OPT); | 244 | strcpy (stpcpy (chdir_opt, CHDIR_OPT), cwd); |
| 246 | strcat (chdir_opt, cwd); | ||
| 247 | 245 | ||
| 248 | props[props_idx]->vals[vp_idx].length = strlen (chdir_opt); | 246 | props[props_idx]->vals[vp_idx].length = strlen (chdir_opt); |
| 249 | props[props_idx]->vals[vp_idx++].value = chdir_opt; | 247 | props[props_idx]->vals[vp_idx++].value = chdir_opt; |
| @@ -400,15 +398,15 @@ x_session_initialize (struct x_display_info *dpyinfo) | |||
| 400 | ptrdiff_t name_len = 0; | 398 | ptrdiff_t name_len = 0; |
| 401 | 399 | ||
| 402 | ice_fd = -1; | 400 | ice_fd = -1; |
| 403 | doing_interact = False; | 401 | doing_interact = false; |
| 404 | 402 | ||
| 405 | /* Check if we where started by the session manager. If so, we will | 403 | /* Check if we where started by the session manager. If so, we will |
| 406 | have a previous id. */ | 404 | have a previous id. */ |
| 407 | if (! EQ (Vx_session_previous_id, Qnil) && STRINGP (Vx_session_previous_id)) | 405 | if (! NILP (Vx_session_previous_id) && STRINGP (Vx_session_previous_id)) |
| 408 | previous_id = SSDATA (Vx_session_previous_id); | 406 | previous_id = SSDATA (Vx_session_previous_id); |
| 409 | 407 | ||
| 410 | /* Construct the path to the Emacs program. */ | 408 | /* Construct the path to the Emacs program. */ |
| 411 | if (! EQ (Vinvocation_directory, Qnil)) | 409 | if (! NILP (Vinvocation_directory)) |
| 412 | name_len += SBYTES (Vinvocation_directory); | 410 | name_len += SBYTES (Vinvocation_directory); |
| 413 | name_len += SBYTES (Vinvocation_name); | 411 | name_len += SBYTES (Vinvocation_name); |
| 414 | 412 | ||
| @@ -417,7 +415,7 @@ x_session_initialize (struct x_display_info *dpyinfo) | |||
| 417 | emacs_program = xmalloc (name_len + 1); | 415 | emacs_program = xmalloc (name_len + 1); |
| 418 | char *z = emacs_program; | 416 | char *z = emacs_program; |
| 419 | 417 | ||
| 420 | if (! EQ (Vinvocation_directory, Qnil)) | 418 | if (! NILP (Vinvocation_directory)) |
| 421 | z = lispstpcpy (z, Vinvocation_directory); | 419 | z = lispstpcpy (z, Vinvocation_directory); |
| 422 | lispstpcpy (z, Vinvocation_name); | 420 | lispstpcpy (z, Vinvocation_name); |
| 423 | 421 | ||
| @@ -491,21 +489,19 @@ is told to abort the window system shutdown. | |||
| 491 | Do not call this function yourself. */) | 489 | Do not call this function yourself. */) |
| 492 | (Lisp_Object event) | 490 | (Lisp_Object event) |
| 493 | { | 491 | { |
| 494 | int kill_emacs = CONSP (event) && CONSP (XCDR (event)) | 492 | bool kill_emacs = (CONSP (event) && CONSP (XCDR (event)) |
| 495 | && EQ (Qt, XCAR (XCDR (event))); | 493 | && EQ (Qt, XCAR (XCDR (event)))); |
| 496 | 494 | ||
| 497 | /* Check doing_interact so that we don't do anything if someone called | 495 | /* Check doing_interact so that we don't do anything if someone called |
| 498 | this at the wrong time. */ | 496 | this at the wrong time. */ |
| 499 | if (doing_interact && ! kill_emacs) | 497 | if (doing_interact && ! kill_emacs) |
| 500 | { | 498 | { |
| 501 | Bool cancel_shutdown = False; | 499 | bool cancel_shutdown = ! NILP (call0 (intern ("emacs-session-save"))); |
| 502 | |||
| 503 | cancel_shutdown = ! EQ (call0 (intern ("emacs-session-save")), Qnil); | ||
| 504 | 500 | ||
| 505 | SmcInteractDone (smc_conn, cancel_shutdown); | 501 | SmcInteractDone (smc_conn, cancel_shutdown); |
| 506 | SmcSaveYourselfDone (smc_conn, True); | 502 | SmcSaveYourselfDone (smc_conn, True); |
| 507 | 503 | ||
| 508 | doing_interact = False; | 504 | doing_interact = false; |
| 509 | } | 505 | } |
| 510 | else if (kill_emacs) | 506 | else if (kill_emacs) |
| 511 | { | 507 | { |
| @@ -513,7 +509,7 @@ Do not call this function yourself. */) | |||
| 513 | prevent. Fix this in next version. */ | 509 | prevent. Fix this in next version. */ |
| 514 | Fkill_emacs (Qnil); | 510 | Fkill_emacs (Qnil); |
| 515 | 511 | ||
| 516 | #if 0 | 512 | #if false |
| 517 | /* This will not be reached, but we want kill-emacs-hook to be run. */ | 513 | /* This will not be reached, but we want kill-emacs-hook to be run. */ |
| 518 | SmcCloseConnection (smc_conn, 0, 0); | 514 | SmcCloseConnection (smc_conn, 0, 0); |
| 519 | ice_connection_closed (); | 515 | ice_connection_closed (); |
diff --git a/src/xterm.h b/src/xterm.h index 31c3261e3b9..84bb58c7232 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -1107,7 +1107,7 @@ extern void initialize_frame_menubar (struct frame *); | |||
| 1107 | /* Defined in xsmfns.c */ | 1107 | /* Defined in xsmfns.c */ |
| 1108 | #ifdef HAVE_X_SM | 1108 | #ifdef HAVE_X_SM |
| 1109 | extern void x_session_initialize (struct x_display_info *dpyinfo); | 1109 | extern void x_session_initialize (struct x_display_info *dpyinfo); |
| 1110 | extern int x_session_have_connection (void); | 1110 | extern bool x_session_have_connection (void); |
| 1111 | extern void x_session_close (void); | 1111 | extern void x_session_close (void); |
| 1112 | #endif | 1112 | #endif |
| 1113 | 1113 | ||
diff --git a/test/ChangeLog b/test/ChangeLog index 7d23b3efe1c..7d33014f75c 100644 --- a/test/ChangeLog +++ b/test/ChangeLog | |||
| @@ -143,7 +143,7 @@ | |||
| 143 | 143 | ||
| 144 | 2014-10-22 Noam Postavsky <npostavs@users.sourceforget.net> | 144 | 2014-10-22 Noam Postavsky <npostavs@users.sourceforget.net> |
| 145 | 145 | ||
| 146 | * test/automated/process-tests.el (process-test-quoted-batfile): | 146 | * automated/process-tests.el (process-test-quoted-batfile): |
| 147 | New test. | 147 | New test. |
| 148 | 148 | ||
| 149 | 2014-10-20 Glenn Morris <rgm@gnu.org> | 149 | 2014-10-20 Glenn Morris <rgm@gnu.org> |
diff --git a/test/automated/let-alist.el b/test/automated/let-alist.el index c43e6a07ddc..6f58908cce7 100644 --- a/test/automated/let-alist.el +++ b/test/automated/let-alist.el | |||
| @@ -62,7 +62,7 @@ | |||
| 62 | '(nil 1 1 2 nil))))) | 62 | '(nil 1 1 2 nil))))) |
| 63 | 63 | ||
| 64 | (ert-deftest let-alist-remove-dot () | 64 | (ert-deftest let-alist-remove-dot () |
| 65 | "Remove firt dot from symbol." | 65 | "Remove first dot from symbol." |
| 66 | (should (equal (let-alist--remove-dot 'hi) 'hi)) | 66 | (should (equal (let-alist--remove-dot 'hi) 'hi)) |
| 67 | (should (equal (let-alist--remove-dot '.hi) 'hi)) | 67 | (should (equal (let-alist--remove-dot '.hi) 'hi)) |
| 68 | (should (equal (let-alist--remove-dot '..hi) '.hi))) | 68 | (should (equal (let-alist--remove-dot '..hi) '.hi))) |
diff --git a/test/indent/js.js b/test/indent/js.js index 1924094e9d8..2d458e1b769 100644 --- a/test/indent/js.js +++ b/test/indent/js.js | |||
| @@ -7,6 +7,11 @@ let c = 1, | |||
| 7 | var e = 100500, | 7 | var e = 100500, |
| 8 | + 1; | 8 | + 1; |
| 9 | 9 | ||
| 10 | function test () | ||
| 11 | { | ||
| 12 | return /[/]/.test ('/') // (bug#19397) | ||
| 13 | } | ||
| 14 | |||
| 10 | var f = bar('/protocols/') | 15 | var f = bar('/protocols/') |
| 11 | baz(); | 16 | baz(); |
| 12 | 17 | ||