diff options
| -rw-r--r-- | ChangeLog.3 | 330 | ||||
| -rw-r--r-- | etc/AUTHORS | 22 | ||||
| -rw-r--r-- | lisp/ldefs-boot.el | 40 |
3 files changed, 373 insertions, 19 deletions
diff --git a/ChangeLog.3 b/ChangeLog.3 index 10c2e2d4896..1c0745e9d7f 100644 --- a/ChangeLog.3 +++ b/ChangeLog.3 | |||
| @@ -1,3 +1,331 @@ | |||
| 1 | 2021-01-29 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | Bump Emacs version to 27.1.91 | ||
| 4 | |||
| 5 | * README: | ||
| 6 | * configure.ac: | ||
| 7 | * nt/README.W32: | ||
| 8 | * msdos/sed2v2.inp: Bump Emacs version to 27.1.91. | ||
| 9 | |||
| 10 | 2021-01-27 Eli Zaretskii <eliz@gnu.org> | ||
| 11 | |||
| 12 | Improve documentation of 'read-regexp' and friends | ||
| 13 | |||
| 14 | * doc/emacs/glossary.texi (Glossary): Add "Tag" to the Glossary. | ||
| 15 | * doc/emacs/maintaining.texi (Xref): Mention that identifiers are | ||
| 16 | also known as "tags". | ||
| 17 | |||
| 18 | * lisp/replace.el (read-regexp, read-regexp-suggestions): Improve | ||
| 19 | wording of doc strings. (Bug#46088) (Bug#46089) | ||
| 20 | |||
| 21 | (cherry picked from commit 49eb03d6c8a181fd46adbbcf1f0a976d0a9efa87) | ||
| 22 | |||
| 23 | 2021-01-27 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 24 | |||
| 25 | read-regexp-suggestions doc string improvement | ||
| 26 | |||
| 27 | * lisp/replace.el (read-regexp-suggestions): Add a link to the | ||
| 28 | manual to explain what a tag is (bug#46089). | ||
| 29 | |||
| 30 | (cherry picked from commit f9cc2d48246fe8370e9286866e6115ba8e2acf44) | ||
| 31 | |||
| 32 | 2021-01-27 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 33 | |||
| 34 | Try to improve the read-regexp doc string | ||
| 35 | |||
| 36 | * lisp/replace.el (read-regexp): Attempt to clarify the semantics | ||
| 37 | (bug#46088). | ||
| 38 | |||
| 39 | (cherry picked from commit eded2a7ad7d456a417354a2797c18e9a578414d7) | ||
| 40 | |||
| 41 | 2021-01-23 Dmitry Gutov <dgutov@yandex.ru> | ||
| 42 | |||
| 43 | Erase the buffer only after fetching the new contents | ||
| 44 | |||
| 45 | * lisp/progmodes/xref.el (xref-revert-buffer): | ||
| 46 | Erase the buffer only after fetching the new contents (bug#46042). | ||
| 47 | |||
| 48 | (cherry picked from commit 5821dee0949b2913c07970d6e4b8bb8e8a35f036) | ||
| 49 | |||
| 50 | 2021-01-23 Eli Zaretskii <eliz@gnu.org> | ||
| 51 | |||
| 52 | Fix last change | ||
| 53 | |||
| 54 | * doc/lispref/text.texi (Undo): Add a cross-reference to the | ||
| 55 | description of 'undo-amalgamate-change-group'. | ||
| 56 | (Atomic Changes): Expand and improve the description of | ||
| 57 | 'undo-amalgamate-change-group'. (Bug#42303) | ||
| 58 | |||
| 59 | 2021-01-23 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 60 | |||
| 61 | Mention undo-amalgamate-change-group in the lispref manual | ||
| 62 | |||
| 63 | * doc/lispref/text.texi (Atomic Changes): Mention | ||
| 64 | undo-amalgamate-change-group (bug#42303). | ||
| 65 | |||
| 66 | (cherry picked from commit ba25a82855a2c03c25fec83f3056c166b692e94f) | ||
| 67 | |||
| 68 | 2021-01-22 Eli Zaretskii <eliz@gnu.org> | ||
| 69 | |||
| 70 | Avoid sending systemd shutdown notifications if non-daemon | ||
| 71 | |||
| 72 | * src/emacs.c (Fkill_emacs): Send the shutdown notification only | ||
| 73 | in daemon mode. (Bug#46022) | ||
| 74 | |||
| 75 | 2021-01-22 Eli Zaretskii <eliz@gnu.org> | ||
| 76 | |||
| 77 | * src/cmds.c (Fforward_line): Doc fix. (Bug#46027) | ||
| 78 | |||
| 79 | 2021-01-22 Eli Zaretskii <eliz@gnu.org> | ||
| 80 | |||
| 81 | Improve documentation of sendmail.el defcustom's | ||
| 82 | |||
| 83 | * lisp/mail/sendmail.el (mail-archive-file-name) | ||
| 84 | (mail-default-reply-to, mail-self-blind, mail-default-headers): | ||
| 85 | Say in the doc string that 'message-default-mail-headers' shall be | ||
| 86 | customized when using 'message-mode' for email composition. | ||
| 87 | (Bug#46029) | ||
| 88 | |||
| 89 | 2021-01-20 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 90 | |||
| 91 | Don't let `maybe_quit` prevent resetting `consing_until_gc` (bug#43389) | ||
| 92 | |||
| 93 | * src/alloc.c (garbage_collect): Postpone `unblock_input` a bit. | ||
| 94 | * src/window.c (window_parameter): Avoid `maybe_quit`. | ||
| 95 | |||
| 96 | cherry picked from commit 420661af07448857f0a17e15dc27bceeb6aff541 | ||
| 97 | |||
| 98 | 2021-01-13 Juri Linkov <juri@linkov.net> | ||
| 99 | |||
| 100 | Remove one of recently added warnings abound binding keys in Isearch maps | ||
| 101 | |||
| 102 | * lisp/isearch.el (minibuffer-local-isearch-map): Remove comments | ||
| 103 | which warn against wantonly rebinding unbound keys from | ||
| 104 | irrelevant keymap. | ||
| 105 | https://lists.gnu.org/archive/html/emacs-devel/2021-01/msg00259.html | ||
| 106 | |||
| 107 | 2021-01-10 Martin Rudalics <rudalics@gmx.at> | ||
| 108 | |||
| 109 | Fix assertion failure in window_box_height (Bug#45737) | ||
| 110 | |||
| 111 | * lisp/window.el (window-sizable): Don't try to grow a mini window | ||
| 112 | when the root window's minimum height is already larger than its | ||
| 113 | actual height (Bug#45737). | ||
| 114 | |||
| 115 | 2021-01-09 Eli Zaretskii <eliz@gnu.org> | ||
| 116 | |||
| 117 | Fix cl-concatenate inlining | ||
| 118 | |||
| 119 | * lisp/emacs-lisp/seq.el (seq-concatenate): Auto-load it. Do not | ||
| 120 | merge to master. (Bug#45610) | ||
| 121 | |||
| 122 | 2021-01-09 Tak Kunihiro <tkk@misasa.okayama-u.ac.jp> | ||
| 123 | |||
| 124 | Fix infloop in 'pixel-scroll-mode' | ||
| 125 | |||
| 126 | * lisp/pixel-scroll.el (pixel-scroll-up, pixel-scroll-down): Avoid | ||
| 127 | inflooping when 'vertical-motion' doesn't move. (Bug#45628) | ||
| 128 | |||
| 129 | 2021-01-08 Eli Zaretskii <eliz@gnu.org> | ||
| 130 | |||
| 131 | Fix inhibiting the default.el loading in user init file | ||
| 132 | |||
| 133 | * lisp/startup.el (startup--load-user-init-file): Test the value | ||
| 134 | of 'inhibit-default-init', not just the LOAD-DEFAULTS argument, | ||
| 135 | because loading the user's init file could have set the value of | ||
| 136 | the former. | ||
| 137 | (command-line): Call 'startup--load-user-init-file' with last arg | ||
| 138 | t: there's no longer any need to test the value of | ||
| 139 | 'inhibit-default-init' here, as it will be tested by the called | ||
| 140 | function. (Bug#45708) | ||
| 141 | |||
| 142 | 2021-01-07 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 143 | |||
| 144 | Fix problem with 8bit content-transfer-encoding in nndoc mbox files | ||
| 145 | |||
| 146 | * lisp/gnus/nndoc.el (nndoc-possibly-change-buffer): If we're | ||
| 147 | reading an mbox file, it may contain messages that use | ||
| 148 | content-transfer-encoding 8bit, which means that we have to treat | ||
| 149 | the file as a sequence of byte (bug#42951). This avoids | ||
| 150 | double-decoding -- once by Emacs when inserting the mbox into the | ||
| 151 | buffer, and once by Gnus when displaying the articles. | ||
| 152 | |||
| 153 | 2021-01-05 Michael Albinus <michael.albinus@gmx.de> | ||
| 154 | |||
| 155 | * doc/misc/tramp.texi (Quick Start Guide): Fix thinko. | ||
| 156 | |||
| 157 | 2021-01-05 Robert Pluim <rpluim@gmail.com> | ||
| 158 | |||
| 159 | Tell people how to remove fontconfig customizations | ||
| 160 | |||
| 161 | 2021-01-04 Simen Heggestøyl <simenheg@gmail.com> | ||
| 162 | |||
| 163 | Remove extraneous closing paren | ||
| 164 | |||
| 165 | * doc/lispref/modes.texi (SMIE Indentation Example): Remove extraneous | ||
| 166 | closing paren. | ||
| 167 | |||
| 168 | 2021-01-04 Mauro Aranda <maurooaranda@gmail.com> | ||
| 169 | |||
| 170 | Update two user option names in the Widget manual | ||
| 171 | |||
| 172 | * doc/misc/widget.texi (Basic Types): The user options | ||
| 173 | widget-glyph-directory and widget-glyph-enable were renamed long ago | ||
| 174 | to widget-image-directory and widget-image-enable, but the manual | ||
| 175 | kept calling them by their old names. Update the names. | ||
| 176 | |||
| 177 | 2021-01-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 178 | |||
| 179 | Mention -lcurses problem on AIX | ||
| 180 | |||
| 181 | * etc/PROBLEMS: Describe problem with Emacs 27 and -lcurses. | ||
| 182 | Do not merge to master. | ||
| 183 | |||
| 184 | 2021-01-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 185 | |||
| 186 | Revert previous patch which was installed into wrong branch. | ||
| 187 | |||
| 188 | 2021-01-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 189 | |||
| 190 | Fix broken build on AIX 7.2 | ||
| 191 | |||
| 192 | Without this fix, the build on AIX 7.2 with xlc fails in the ‘CCLD | ||
| 193 | temacs’ step with the diagnostic ‘ld: 0711-317 ERROR: Undefined | ||
| 194 | symbol: BC’. This is because -lcurses does not define BC etc. | ||
| 195 | * configure.ac: When building terminfo.o, define | ||
| 196 | TERMINFO_DEFINES_BC if the library defines BC etc. | ||
| 197 | * src/terminfo.c (UP, BC, PC): Define depending on | ||
| 198 | TERMINFO_DEFINES_BC, not on TERMINFO. | ||
| 199 | |||
| 200 | 2021-01-02 Eli Zaretskii <eliz@gnu.org> | ||
| 201 | |||
| 202 | Fix last change | ||
| 203 | |||
| 204 | * doc/lispref/strings.texi (Creating Strings): Improve wording of | ||
| 205 | last change. (Bug#45516) | ||
| 206 | |||
| 207 | 2021-01-02 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 208 | |||
| 209 | Add a reference between the Strings node and Search/Replace | ||
| 210 | |||
| 211 | * doc/lispref/strings.texi (Creating Strings): Mention | ||
| 212 | string-replace/replace-regexp-in-string (bug#45516). | ||
| 213 | |||
| 214 | (cherry picked from commit b9359d4183a1a6923122d3aa12b922ab89693354) | ||
| 215 | |||
| 216 | 2021-01-01 Eli Zaretskii <eliz@gnu.org> | ||
| 217 | |||
| 218 | Add warning comments abound binding keys in Isearch maps | ||
| 219 | |||
| 220 | * lisp/isearch.el (isearch-mode-map) | ||
| 221 | (minibuffer-local-isearch-map): Add comments which warn against | ||
| 222 | wantonly rebinding unbound keys. | ||
| 223 | |||
| 224 | 2021-01-01 Alan Third <alan@idiocy.org> | ||
| 225 | |||
| 226 | Fix crash in ns_mouse_position (bug#45541) | ||
| 227 | |||
| 228 | * src/nsterm.m (ns_mouse_position): Explicitly initialize f to NULL. | ||
| 229 | |||
| 230 | 2021-01-01 Paul Eggert <eggert@cs.ucla.edu> | ||
| 231 | |||
| 232 | Fix copyright years by hand | ||
| 233 | |||
| 234 | These are dates that admin/update-copyright did not update. | ||
| 235 | |||
| 236 | 2021-01-01 Paul Eggert <eggert@cs.ucla.edu> | ||
| 237 | |||
| 238 | Update copyright year to 2021 | ||
| 239 | |||
| 240 | Run "TZ=UTC0 admin/update-copyright $(git ls-files)". | ||
| 241 | |||
| 242 | 2020-12-31 Eli Zaretskii <eliz@gnu.org> | ||
| 243 | |||
| 244 | Improve documentation of 'network-lookup-address-info' | ||
| 245 | |||
| 246 | * src/process.c (Fnetwork_lookup_address_info): | ||
| 247 | * doc/lispref/processes.texi (Misc Network): Document the error | ||
| 248 | message emitted by 'network-lookup-address-info' when it fails. | ||
| 249 | |||
| 250 | 2020-12-28 Amin Bandali <bandali@gnu.org> | ||
| 251 | |||
| 252 | Display messages sent using ERC's /say | ||
| 253 | |||
| 254 | * lisp/erc/erc.el (erc-cmd-SAY): Call `erc-display-msg' to display the | ||
| 255 | user's message in the buffer, just like other [non-command] messages. | ||
| 256 | |||
| 257 | https://lists.gnu.org/r/help-gnu-emacs/2020-12/msg00066.html | ||
| 258 | |||
| 259 | 2020-12-26 Eli Zaretskii <eliz@gnu.org> | ||
| 260 | |||
| 261 | Fix Rmail summary display when From: header is malformed | ||
| 262 | |||
| 263 | * lisp/mail/rmailsum.el (rmail-header-summary): Remove newlines | ||
| 264 | from the "From:" value, to avoid producing corrupted summary | ||
| 265 | display. | ||
| 266 | |||
| 267 | 2020-12-25 Eli Zaretskii <eliz@gnu.org> | ||
| 268 | |||
| 269 | Add more details to the "word processor" section | ||
| 270 | |||
| 271 | * etc/TODO (Emacs as word processor): Add more details based on | ||
| 272 | recent discussions. | ||
| 273 | |||
| 274 | 2020-12-23 Philipp Stephani <phst@google.com> | ||
| 275 | |||
| 276 | * src/Makefile.in (DO_CODESIGN): Fix expected architecture name. | ||
| 277 | |||
| 278 | 2020-12-23 Itai Seggev <is+apple@cs.hmc.edu> (tiny change) | ||
| 279 | |||
| 280 | Codesign the executable on recene MacOS systems | ||
| 281 | |||
| 282 | * src/Makefile.in (temacs$(EXEEXT)): Codesign the executable on | ||
| 283 | recent (ARM) MacOS systems (bug#43878). Without this, building | ||
| 284 | Emacs fails. | ||
| 285 | |||
| 286 | 2020-12-23 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 287 | |||
| 288 | Support build of Emacs on ARM Macos machines | ||
| 289 | |||
| 290 | * configure.ac: Add support for aarch64-* on Macos (i.e., 64-bit | ||
| 291 | ARM) (bug#43369). | ||
| 292 | |||
| 293 | 2020-12-22 Bastien Guerry <bzg@gnu.org> | ||
| 294 | |||
| 295 | Update to Org 9.4.4 | ||
| 296 | |||
| 297 | 2020-12-21 Stefan Kangas <stefan@marxist.se> | ||
| 298 | |||
| 299 | * lisp/so-long.el: Decrease use of passive voice. | ||
| 300 | |||
| 301 | Suggested by Richard Stallman <rms@gnu.org>. | ||
| 302 | |||
| 303 | 2020-12-21 Stefan Kangas <stefan@marxist.se> | ||
| 304 | |||
| 305 | * doc/misc/efaq.texi (New in Emacs 27): Add section. | ||
| 306 | |||
| 307 | * doc/misc/efaq.texi (Latest version of Emacs): Bump version. | ||
| 308 | |||
| 309 | 2020-12-19 Eli Zaretskii <eliz@gnu.org> | ||
| 310 | |||
| 311 | * lisp/face-remap.el (face-remap-set-base): Doc fix. (Bug#45264) | ||
| 312 | |||
| 313 | 2020-12-19 Vasilij Schneidermann <mail@vasilij.de> | ||
| 314 | |||
| 315 | Correct argument order in comment | ||
| 316 | |||
| 317 | * etc/ETAGS.EBNF (position): Correct comment. | ||
| 318 | |||
| 319 | 2020-12-18 Eli Zaretskii <eliz@gnu.org> | ||
| 320 | |||
| 321 | Update files for the 27.1.90 pretest | ||
| 322 | |||
| 323 | * README: | ||
| 324 | * configure.ac: | ||
| 325 | * nt/README.W32: | ||
| 326 | * msdos/sed2v2.inp: Bump Emacs version to 27.1.90. | ||
| 327 | * lisp/ldefs-boot.el: Update from loaddefs.el | ||
| 328 | |||
| 1 | 2020-12-18 Eli Zaretskii <eliz@fencepost.gnu.org> | 329 | 2020-12-18 Eli Zaretskii <eliz@fencepost.gnu.org> |
| 2 | 330 | ||
| 3 | * README: | 331 | * README: |
| @@ -144118,7 +144446,7 @@ | |||
| 144118 | 144446 | ||
| 144119 | This file records repository revisions from | 144447 | This file records repository revisions from |
| 144120 | commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to | 144448 | commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to |
| 144121 | commit 48b9c47805fc304441017f6ee4c114212cdb0496 (inclusive). | 144449 | commit 86a2207d9244f7cbef9f91e697ad5fc0ce49ec97 (inclusive). |
| 144122 | See ChangeLog.2 for earlier changes. | 144450 | See ChangeLog.2 for earlier changes. |
| 144123 | 144451 | ||
| 144124 | ;; Local Variables: | 144452 | ;; Local Variables: |
diff --git a/etc/AUTHORS b/etc/AUTHORS index 96948415570..b06b4012318 100644 --- a/etc/AUTHORS +++ b/etc/AUTHORS | |||
| @@ -1454,9 +1454,9 @@ Eli Zaretskii: wrote [bidirectional display in xdisp.c] | |||
| 1454 | chartab-tests.el coding-tests.el doc-tests.el etags-tests.el rxvt.el | 1454 | chartab-tests.el coding-tests.el doc-tests.el etags-tests.el rxvt.el |
| 1455 | tty-colors.el | 1455 | tty-colors.el |
| 1456 | and changed xdisp.c msdos.c w32.c display.texi w32fns.c simple.el | 1456 | and changed xdisp.c msdos.c w32.c display.texi w32fns.c simple.el |
| 1457 | files.el fileio.c keyboard.c w32term.c emacs.c w32proc.c text.texi | 1457 | files.el fileio.c keyboard.c emacs.c w32term.c text.texi w32proc.c |
| 1458 | dispnew.c files.texi frames.texi lisp.h dispextern.h window.c term.c | 1458 | dispnew.c files.texi frames.texi lisp.h dispextern.h window.c process.c |
| 1459 | process.c and 1192 other files | 1459 | term.c and 1193 other files |
| 1460 | 1460 | ||
| 1461 | Emanuele Giaquinta: changed configure.ac rxvt.el charset.c etags.c | 1461 | Emanuele Giaquinta: changed configure.ac rxvt.el charset.c etags.c |
| 1462 | fontset.c frame.el gnus-faq.texi loadup.el lread.c sh-script.el | 1462 | fontset.c frame.el gnus-faq.texi loadup.el lread.c sh-script.el |
| @@ -2109,6 +2109,8 @@ Ismail S: changed org-capture.el | |||
| 2109 | 2109 | ||
| 2110 | Istvan Marko: changed gnus-agent.el xfns.c | 2110 | Istvan Marko: changed gnus-agent.el xfns.c |
| 2111 | 2111 | ||
| 2112 | Itai Seggev: changed src/Makefile.in | ||
| 2113 | |||
| 2112 | Itai Zukerman: changed mm-decode.el | 2114 | Itai Zukerman: changed mm-decode.el |
| 2113 | 2115 | ||
| 2114 | Ivan Andrus: changed editfns.c epg.el ffap.el find-file.el ibuf-ext.el | 2116 | Ivan Andrus: changed editfns.c epg.el ffap.el find-file.el ibuf-ext.el |
| @@ -3075,7 +3077,7 @@ and co-wrote gnus-kill.el gnus-mh.el gnus-msg.el gnus-score.el | |||
| 3075 | rfc2047.el svg.el time-date.el | 3077 | rfc2047.el svg.el time-date.el |
| 3076 | and changed gnus.texi process.c subr.el simple.el files.el gnutls.c | 3078 | and changed gnus.texi process.c subr.el simple.el files.el gnutls.c |
| 3077 | gnus-ems.el smtpmail.el display.texi url-http.el auth-source.el | 3079 | gnus-ems.el smtpmail.el display.texi url-http.el auth-source.el |
| 3078 | gnus-cite.el pop3.el dired.el edebug.el gnus-xmas.el text.texi image.el | 3080 | gnus-cite.el pop3.el dired.el edebug.el text.texi gnus-xmas.el image.el |
| 3079 | image.c gnutls.el nnrss.el and 658 other files | 3081 | image.c gnutls.el nnrss.el and 658 other files |
| 3080 | 3082 | ||
| 3081 | Lars Rasmusson: changed ebrowse.c | 3083 | Lars Rasmusson: changed ebrowse.c |
| @@ -3493,10 +3495,10 @@ Matt Swift: changed dired.el editfns.c lisp-mode.el mm-decode.el | |||
| 3493 | outline.el progmodes/compile.el rx.el simple.el startup.el | 3495 | outline.el progmodes/compile.el rx.el simple.el startup.el |
| 3494 | 3496 | ||
| 3495 | Mauro Aranda: changed wid-edit.el cus-edit.el gnus.texi octave.el pong.el | 3497 | Mauro Aranda: changed wid-edit.el cus-edit.el gnus.texi octave.el pong.el |
| 3496 | autorevert.el cc-mode.texi control.texi custom-tests.el custom.el | 3498 | widget.texi autorevert.el cc-mode.texi control.texi custom-tests.el |
| 3497 | dbus.texi dired-x.texi elisp-mode.el epa.el esh-mode.el | 3499 | custom.el dbus.texi dired-x.texi elisp-mode.el epa.el esh-mode.el |
| 3498 | eshell/eshell.el eudc.texi files.texi functions.texi gnus-faq.texi | 3500 | eshell/eshell.el eudc.texi files.texi functions.texi gnus-faq.texi |
| 3499 | info.el and 15 other files | 3501 | and 15 other files |
| 3500 | 3502 | ||
| 3501 | Maxime Edouard Robert Froumentin: changed gnus-art.el mml.el | 3503 | Maxime Edouard Robert Froumentin: changed gnus-art.el mml.el |
| 3502 | 3504 | ||
| @@ -4745,7 +4747,7 @@ and changed css-mode.el css-mode.css json-tests.el json.el sgml-mode.el | |||
| 4745 | scss-mode.scss page.el ring.el rot13.el scheme.el sql.el asm-mode.el | 4747 | scss-mode.scss page.el ring.el rot13.el scheme.el sql.el asm-mode.el |
| 4746 | autoinsert.el color.el files.el js.el less-css-mode.el | 4748 | autoinsert.el color.el files.el js.el less-css-mode.el |
| 4747 | less-css-mode.less maintaining.texi makesum.el midnight.el | 4749 | less-css-mode.less maintaining.texi makesum.el midnight.el |
| 4748 | and 5 other files | 4750 | and 6 other files |
| 4749 | 4751 | ||
| 4750 | Simona Arizanova: changed help.el | 4752 | Simona Arizanova: changed help.el |
| 4751 | 4753 | ||
| @@ -4808,7 +4810,7 @@ and changed bookmark.el package.el efaq.texi package.texi ibuffer.el | |||
| 4808 | mwheel.el cperl-mode.el fns.c gud.el simple.el subr.el tips.texi | 4810 | mwheel.el cperl-mode.el fns.c gud.el simple.el subr.el tips.texi |
| 4809 | autoinsert.el comint-tests.el control.texi cus-edit.el delim-col.el | 4811 | autoinsert.el comint-tests.el control.texi cus-edit.el delim-col.el |
| 4810 | dired-aux.el dired-x.el em-term.el emacs-lisp-intro.texi | 4812 | dired-aux.el dired-x.el em-term.el emacs-lisp-intro.texi |
| 4811 | and 157 other files | 4813 | and 158 other files |
| 4812 | 4814 | ||
| 4813 | Stefan Merten: co-wrote rst.el | 4815 | Stefan Merten: co-wrote rst.el |
| 4814 | 4816 | ||
| @@ -5337,7 +5339,7 @@ Valery Alexeev: changed cyril-util.el cyrillic.el | |||
| 5337 | 5339 | ||
| 5338 | Van L: changed subr.el | 5340 | Van L: changed subr.el |
| 5339 | 5341 | ||
| 5340 | Vasilij Schneidermann: changed cus-start.el eww.el cc-mode.el | 5342 | Vasilij Schneidermann: changed cus-start.el eww.el ETAGS.EBNF cc-mode.el |
| 5341 | debugging.texi display.texi edebug.el emacs-lisp/debug.el eval.c | 5343 | debugging.texi display.texi edebug.el emacs-lisp/debug.el eval.c |
| 5342 | ielm.el os.texi profiler.el redisplay-testsuite.el shr.el snake.el | 5344 | ielm.el os.texi profiler.el redisplay-testsuite.el shr.el snake.el |
| 5343 | term.el tetris.el xdisp.c xterm.c | 5345 | term.el tetris.el xdisp.c xterm.c |
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 7d4c7b84bfd..f0dc2680d32 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el | |||
| @@ -29364,7 +29364,9 @@ variable `feedmail-deduce-envelope-from'.") | |||
| 29364 | (defvar mail-self-blind nil "\ | 29364 | (defvar mail-self-blind nil "\ |
| 29365 | Non-nil means insert Bcc to self in messages to be sent. | 29365 | Non-nil means insert Bcc to self in messages to be sent. |
| 29366 | This is done when the message is initialized, | 29366 | This is done when the message is initialized, |
| 29367 | so you can remove or alter the Bcc field to override the default.") | 29367 | so you can remove or alter the Bcc field to override the default. |
| 29368 | If you are using `message-mode' to compose messages, customize the | ||
| 29369 | variable `message-default-mail-headers' instead.") | ||
| 29368 | 29370 | ||
| 29369 | (custom-autoload 'mail-self-blind "sendmail" t) | 29371 | (custom-autoload 'mail-self-blind "sendmail" t) |
| 29370 | 29372 | ||
| @@ -29392,14 +29394,18 @@ Line used to separate headers from text in messages being composed.") | |||
| 29392 | (defvar mail-archive-file-name nil "\ | 29394 | (defvar mail-archive-file-name nil "\ |
| 29393 | Name of file to write all outgoing messages in, or nil for none. | 29395 | Name of file to write all outgoing messages in, or nil for none. |
| 29394 | This is normally an mbox file, but for backwards compatibility may also | 29396 | This is normally an mbox file, but for backwards compatibility may also |
| 29395 | be a Babyl file.") | 29397 | be a Babyl file. |
| 29398 | If you are using `message-mode' to compose messages, customize the | ||
| 29399 | variable `message-default-mail-headers' instead.") | ||
| 29396 | 29400 | ||
| 29397 | (custom-autoload 'mail-archive-file-name "sendmail" t) | 29401 | (custom-autoload 'mail-archive-file-name "sendmail" t) |
| 29398 | 29402 | ||
| 29399 | (defvar mail-default-reply-to nil "\ | 29403 | (defvar mail-default-reply-to nil "\ |
| 29400 | Address to insert as default Reply-To field of outgoing messages. | 29404 | Address to insert as default Reply-To field of outgoing messages. |
| 29401 | If nil, it will be initialized from the REPLYTO environment variable | 29405 | If nil, it will be initialized from the REPLYTO environment variable |
| 29402 | when you first send mail.") | 29406 | when you first send mail. |
| 29407 | If you are using `message-mode' to compose messages, customize the | ||
| 29408 | variable `message-default-mail-headers' instead.") | ||
| 29403 | 29409 | ||
| 29404 | (custom-autoload 'mail-default-reply-to "sendmail" t) | 29410 | (custom-autoload 'mail-default-reply-to "sendmail" t) |
| 29405 | 29411 | ||
| @@ -29486,7 +29492,9 @@ in `message-auto-save-directory'.") | |||
| 29486 | (defvar mail-default-headers nil "\ | 29492 | (defvar mail-default-headers nil "\ |
| 29487 | A string containing header lines, to be inserted in outgoing messages. | 29493 | A string containing header lines, to be inserted in outgoing messages. |
| 29488 | It can contain newlines, and should end in one. It is inserted | 29494 | It can contain newlines, and should end in one. It is inserted |
| 29489 | before you edit the message, so you can edit or delete the lines.") | 29495 | before you edit the message, so you can edit or delete the lines. |
| 29496 | If you are using `message-mode' to compose messages, customize the | ||
| 29497 | variable `message-default-mail-headers' instead.") | ||
| 29490 | 29498 | ||
| 29491 | (custom-autoload 'mail-default-headers "sendmail" t) | 29499 | (custom-autoload 'mail-default-headers "sendmail" t) |
| 29492 | 29500 | ||
| @@ -29633,6 +29641,13 @@ sorted. FUNCTION must be a function of one argument. | |||
| 29633 | 29641 | ||
| 29634 | \(fn FUNCTION PRED SEQUENCE)" nil nil) | 29642 | \(fn FUNCTION PRED SEQUENCE)" nil nil) |
| 29635 | 29643 | ||
| 29644 | (autoload 'seq-concatenate "seq" "\ | ||
| 29645 | Concatenate SEQUENCES into a single sequence of type TYPE. | ||
| 29646 | TYPE must be one of following symbols: vector, string or list. | ||
| 29647 | |||
| 29648 | |||
| 29649 | \(fn TYPE SEQUENCE...)" nil nil) | ||
| 29650 | |||
| 29636 | (autoload 'seq-filter "seq" "\ | 29651 | (autoload 'seq-filter "seq" "\ |
| 29637 | Return a list of all the elements for which (PRED element) is non-nil in SEQUENCE. | 29652 | Return a list of all the elements for which (PRED element) is non-nil in SEQUENCE. |
| 29638 | 29653 | ||
| @@ -38637,10 +38652,19 @@ Zone out, completely." t nil) | |||
| 38637 | ;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "facemenu.el" "faces.el" | 38652 | ;;;;;; "eshell/em-unix.el" "eshell/em-xtra.el" "facemenu.el" "faces.el" |
| 38638 | ;;;;;; "files.el" "font-core.el" "font-lock.el" "format.el" "frame.el" | 38653 | ;;;;;; "files.el" "font-core.el" "font-lock.el" "format.el" "frame.el" |
| 38639 | ;;;;;; "help.el" "hfy-cmap.el" "ibuf-ext.el" "indent.el" "international/characters.el" | 38654 | ;;;;;; "help.el" "hfy-cmap.el" "ibuf-ext.el" "indent.el" "international/characters.el" |
| 38640 | ;;;;;; "international/charscript.el" "international/cp51932.el" | 38655 | ;;;;;; "international/charprop.el" "international/charscript.el" |
| 38641 | ;;;;;; "international/eucjp-ms.el" "international/mule-cmds.el" | 38656 | ;;;;;; "international/cp51932.el" "international/eucjp-ms.el" "international/mule-cmds.el" |
| 38642 | ;;;;;; "international/mule-conf.el" "international/mule.el" "isearch.el" | 38657 | ;;;;;; "international/mule-conf.el" "international/mule.el" "international/uni-bidi.el" |
| 38643 | ;;;;;; "jit-lock.el" "jka-cmpr-hook.el" "language/burmese.el" "language/cham.el" | 38658 | ;;;;;; "international/uni-brackets.el" "international/uni-category.el" |
| 38659 | ;;;;;; "international/uni-combining.el" "international/uni-comment.el" | ||
| 38660 | ;;;;;; "international/uni-decimal.el" "international/uni-decomposition.el" | ||
| 38661 | ;;;;;; "international/uni-digit.el" "international/uni-lowercase.el" | ||
| 38662 | ;;;;;; "international/uni-mirrored.el" "international/uni-name.el" | ||
| 38663 | ;;;;;; "international/uni-numeric.el" "international/uni-old-name.el" | ||
| 38664 | ;;;;;; "international/uni-special-lowercase.el" "international/uni-special-titlecase.el" | ||
| 38665 | ;;;;;; "international/uni-special-uppercase.el" "international/uni-titlecase.el" | ||
| 38666 | ;;;;;; "international/uni-uppercase.el" "isearch.el" "jit-lock.el" | ||
| 38667 | ;;;;;; "jka-cmpr-hook.el" "language/burmese.el" "language/cham.el" | ||
| 38644 | ;;;;;; "language/chinese.el" "language/cyrillic.el" "language/czech.el" | 38668 | ;;;;;; "language/chinese.el" "language/cyrillic.el" "language/czech.el" |
| 38645 | ;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el" | 38669 | ;;;;;; "language/english.el" "language/ethiopic.el" "language/european.el" |
| 38646 | ;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el" | 38670 | ;;;;;; "language/georgian.el" "language/greek.el" "language/hebrew.el" |