aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-10-19 07:01:20 -0400
committerEli Zaretskii2024-10-19 07:01:20 -0400
commitc2a9f519f7e9a5cbb5dbe50ba7b4e4b2757bb3b6 (patch)
tree09ecd55800ef78de60ac1e45e605660b913ae745
parent6e70be26807212c5387ad58af938c55006e0b88b (diff)
parent902029b1410ef9128380f9a307721ea6ab008529 (diff)
downloademacs-c2a9f519f7e9a5cbb5dbe50ba7b4e4b2757bb3b6.tar.gz
emacs-c2a9f519f7e9a5cbb5dbe50ba7b4e4b2757bb3b6.zip
Merge from origin/emacs-30
902029b1410 * lisp/auth-source.el (read-passwd): Remove entry from `p... a61bf742257 New FAQ about Ctrl keys on xterm f353fcc8506 Autoload 'message-narrow-to-headers-or-head' in mml.el
-rw-r--r--doc/misc/efaq.texi20
-rw-r--r--lisp/auth-source.el2
-rw-r--r--lisp/gnus/mml.el1
3 files changed, 22 insertions, 1 deletions
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi
index c18438583e4..f6362b4f075 100644
--- a/doc/misc/efaq.texi
+++ b/doc/misc/efaq.texi
@@ -4065,6 +4065,7 @@ information is available from
4065* Compose Character:: 4065* Compose Character::
4066* Binding combinations of modifiers and function keys:: 4066* Binding combinations of modifiers and function keys::
4067* Meta key does not work in xterm:: 4067* Meta key does not work in xterm::
4068* Some Ctrl-modified keys do not work on xterm::
4068@end menu 4069@end menu
4069 4070
4070@node Binding keys to commands 4071@node Binding keys to commands
@@ -4536,6 +4537,25 @@ You might have to replace @samp{Meta} with @samp{Alt}.
4536 4537
4537@end itemize 4538@end itemize
4538 4539
4540@node Some Ctrl-modified keys do not work on xterm
4541@section Why don't some keys like @kbd{C-.} work on xterm?
4542
4543If your @code{xterm} version is 216 or newer, you should have keys like
4544@kbd{C-.} and @kbd{C-,} if you add the following resource specification
4545to your @file{~/.Xdefaults}:
4546
4547@example
4548 XTerm.VT100.modifyOtherKeys: 1
4549@end example
4550
4551@noindent
4552If you want to use @code{uxterm}, also add the following:
4553
4554@example
4555 UXTerm.VT100.modifyOtherKeys: 1
4556@end example
4557
4558
4539@c ------------------------------------------------------------ 4559@c ------------------------------------------------------------
4540@node Alternate character sets 4560@node Alternate character sets
4541@chapter Alternate character sets 4561@chapter Alternate character sets
diff --git a/lisp/auth-source.el b/lisp/auth-source.el
index 557d360bc6a..1e0cde75583 100644
--- a/lisp/auth-source.el
+++ b/lisp/auth-source.el
@@ -2599,7 +2599,7 @@ by doing (clear-string STRING)."
2599 ;; Not sure why but it seems that there might be cases where the 2599 ;; Not sure why but it seems that there might be cases where the
2600 ;; minibuffer is not always properly reset later on, so undo 2600 ;; minibuffer is not always properly reset later on, so undo
2601 ;; whatever we've done here (bug#11392). 2601 ;; whatever we've done here (bug#11392).
2602 (remove-hook 'after-change-functions 2602 (remove-hook 'post-command-hook
2603 #'read-passwd--hide-password 'local) 2603 #'read-passwd--hide-password 'local)
2604 (kill-local-variable 'post-self-insert-hook) 2604 (kill-local-variable 'post-self-insert-hook)
2605 ;; And of course, don't keep the sensitive data around. 2605 ;; And of course, don't keep the sensitive data around.
diff --git a/lisp/gnus/mml.el b/lisp/gnus/mml.el
index e3bc3932529..8ecf7a33305 100644
--- a/lisp/gnus/mml.el
+++ b/lisp/gnus/mml.el
@@ -1039,6 +1039,7 @@ If HANDLES is non-nil, use it instead reparsing the buffer."
1039 (message-remove-header "Content-Transfer-Encoding"))) 1039 (message-remove-header "Content-Transfer-Encoding")))
1040 1040
1041(autoload 'message-encode-message-body "message") 1041(autoload 'message-encode-message-body "message")
1042(autoload 'message-narrow-to-headers-or-head "message")
1042(declare-function message-narrow-to-headers-or-head "message" ()) 1043(declare-function message-narrow-to-headers-or-head "message" ())
1043 1044
1044;;;###autoload 1045;;;###autoload