aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog.3
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog.3')
-rw-r--r--ChangeLog.3330
1 files changed, 329 insertions, 1 deletions
diff --git a/ChangeLog.3 b/ChangeLog.3
index 10c2e2d4896..1c0745e9d7f 100644
--- a/ChangeLog.3
+++ b/ChangeLog.3
@@ -1,3 +1,331 @@
12021-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
102021-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
232021-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
322021-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
412021-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
502021-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
592021-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
682021-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
752021-01-22 Eli Zaretskii <eliz@gnu.org>
76
77 * src/cmds.c (Fforward_line): Doc fix. (Bug#46027)
78
792021-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
892021-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
982021-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
1072021-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
1152021-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
1222021-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
1292021-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
1422021-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
1532021-01-05 Michael Albinus <michael.albinus@gmx.de>
154
155 * doc/misc/tramp.texi (Quick Start Guide): Fix thinko.
156
1572021-01-05 Robert Pluim <rpluim@gmail.com>
158
159 Tell people how to remove fontconfig customizations
160
1612021-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
1682021-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
1772021-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
1842021-01-03 Paul Eggert <eggert@cs.ucla.edu>
185
186 Revert previous patch which was installed into wrong branch.
187
1882021-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
2002021-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
2072021-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
2162021-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
2242021-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
2302021-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
2362021-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
2422020-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
2502020-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
2592020-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
2672020-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
2742020-12-23 Philipp Stephani <phst@google.com>
275
276 * src/Makefile.in (DO_CODESIGN): Fix expected architecture name.
277
2782020-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
2862020-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
2932020-12-22 Bastien Guerry <bzg@gnu.org>
294
295 Update to Org 9.4.4
296
2972020-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
3032020-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
3092020-12-19 Eli Zaretskii <eliz@gnu.org>
310
311 * lisp/face-remap.el (face-remap-set-base): Doc fix. (Bug#45264)
312
3132020-12-19 Vasilij Schneidermann <mail@vasilij.de>
314
315 Correct argument order in comment
316
317 * etc/ETAGS.EBNF (position): Correct comment.
318
3192020-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
12020-12-18 Eli Zaretskii <eliz@fencepost.gnu.org> 3292020-12-18 Eli Zaretskii <eliz@fencepost.gnu.org>
2 330
3 * README: 331 * README:
@@ -144118,7 +144446,7 @@
144118 144446
144119This file records repository revisions from 144447This file records repository revisions from
144120commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to 144448commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to
144121commit 48b9c47805fc304441017f6ee4c114212cdb0496 (inclusive). 144449commit 86a2207d9244f7cbef9f91e697ad5fc0ce49ec97 (inclusive).
144122See ChangeLog.2 for earlier changes. 144450See ChangeLog.2 for earlier changes.
144123 144451
144124;; Local Variables: 144452;; Local Variables: