aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorStefan Monnier2021-01-19 12:10:48 -0500
committerStefan Monnier2021-01-19 12:10:48 -0500
commitdeb90c893d3a0094db77753d8a795716784bbc7e (patch)
tree7e1bdae830becf615389842f8a8135980541068f /etc
parent3c584438552f8d01651d7b9358eae5ce8da81fae (diff)
downloademacs-deb90c893d3a0094db77753d8a795716784bbc7e.tar.gz
emacs-deb90c893d3a0094db77753d8a795716784bbc7e.zip
* lisp/startup.el: Fix bug#45857, bug#30994, and bug#45913.
(command-line): Don't re-evaluate the `custom-delayed-init-variables` a second time after reading the `early-init.el` file. (x-apply-session-resources): Set `blink-cursor-mode` rather than `no-blinking-cursor`. * lisp/frame.el (blink-cursor-start): Turn `blink-cursor-mode` off if `blink-cursor-mode` was set to nil. (blink-cursor-mode): Default to it being enabled regardless of `window-system`. * lisp/custom.el (custom-initialize-delay): Fox docstring now that autoload.el preserves the `:initialize` info.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 8fc5f3e046c..7a012b48912 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -326,6 +326,10 @@ the buffer cycles the whole buffer between "only top-level headings",
326 326
327* Changes in Specialized Modes and Packages in Emacs 28.1 327* Changes in Specialized Modes and Packages in Emacs 28.1
328 328
329** 'blink-cursor-mode' is now enabled by default regardless of the UI.
330It used to be enabled when Emacs is started in GUI mode but not when started
331in text mode. The cursor still only actually blinks in GUI frames.
332
329** pcase 333** pcase
330+++ 334+++
331*** The `pred` pattern can now take the form (pred (not FUN)). 335*** The `pred` pattern can now take the form (pred (not FUN)).