From 07bd97217b94aa0eb0e351f0adb7286b63756910 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 31 May 2016 14:50:52 -0400 Subject: [PATCH 1/4] * lisp/emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): Fix typo. (Bug#23654) --- lisp/emacs-lisp/lisp-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 315b3d56343..cfec05cd01d 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -58,7 +58,7 @@ (setq i (1+ i))) (modify-syntax-entry ?\s " " table) ;; Non-break space acts as whitespace. - (modify-syntax-entry ?\x8a0 " " table) + (modify-syntax-entry ?\xa0 " " table) (modify-syntax-entry ?\t " " table) (modify-syntax-entry ?\f " " table) (modify-syntax-entry ?\n "> " table) From a7a22442a4efcd431d99b8929dbbad7253b070a5 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 31 May 2016 14:58:05 -0400 Subject: [PATCH 2/4] * doc/misc/smtpmail.texi (Encryption): Fix 2012-12-22 typo. --- doc/misc/smtpmail.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/misc/smtpmail.texi b/doc/misc/smtpmail.texi index 26473311678..d9a68c45985 100644 --- a/doc/misc/smtpmail.texi +++ b/doc/misc/smtpmail.texi @@ -285,7 +285,7 @@ connection the SMTP library uses. The default value is @code{nil}, which means to use a plain connection, but try to switch to a STARTTLS encrypted connection if the server supports it. Other possible values are: @code{starttls} to insist on STARTTLS; @code{ssl} to use TLS/SSL; -and @code{plain} for encryption. +and @code{plain} for no encryption. Use of any form of TLS/SSL requires support in Emacs. You can either use the built-in support (in Emacs 24.1 and later), or the From 20eb53185dbe71c5d4162476bbe7dbe3e808184a Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 31 May 2016 15:05:20 -0400 Subject: [PATCH 3/4] * lisp/mail/footnote.el (footnote-mode): Fix doc typo. --- lisp/mail/footnote.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/footnote.el b/lisp/mail/footnote.el index 57c3be00560..a90f370d736 100644 --- a/lisp/mail/footnote.el +++ b/lisp/mail/footnote.el @@ -793,7 +793,7 @@ With a prefix argument ARG, enable Footnote mode if ARG is positive, and disable it otherwise. If called from Lisp, enable the mode if ARG is omitted or nil. -Footnode mode is a buffer-local minor mode. If enabled, it +Footnote mode is a buffer-local minor mode. If enabled, it provides footnote support for `message-mode'. To get started, play around with the following keys: \\{footnote-minor-mode-map}" From 604f6568312aef8287d7a3ac1dbeb71577089bec Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 31 May 2016 18:24:07 -0400 Subject: [PATCH 4/4] * test/automated/viper-tests.el (viper-test-undo-kmacro): Delete temp-file at end. --- test/automated/viper-tests.el | 1 + 1 file changed, 1 insertion(+) diff --git a/test/automated/viper-tests.el b/test/automated/viper-tests.el index e2c39b3c3de..074dd637538 100644 --- a/test/automated/viper-tests.el +++ b/test/automated/viper-tests.el @@ -65,6 +65,7 @@ after itself, although it will leave a buffer called rtn)) ;; Switch everything off and restore the buffer. (toggle-viper-mode) + (delete-file viper-custom-file-name) (switch-to-buffer before-buffer)))) (ert-deftest viper-test-go ()