aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/misc/smtpmail.texi2
-rw-r--r--lisp/emacs-lisp/lisp-mode.el2
-rw-r--r--lisp/mail/footnote.el2
-rw-r--r--test/lisp/emulation/viper-tests.el1
4 files changed, 4 insertions, 3 deletions
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},
285which means to use a plain connection, but try to switch to a STARTTLS 285which means to use a plain connection, but try to switch to a STARTTLS
286encrypted connection if the server supports it. Other possible values 286encrypted connection if the server supports it. Other possible values
287are: @code{starttls} to insist on STARTTLS; @code{ssl} to use TLS/SSL; 287are: @code{starttls} to insist on STARTTLS; @code{ssl} to use TLS/SSL;
288and @code{plain} for encryption. 288and @code{plain} for no encryption.
289 289
290Use of any form of TLS/SSL requires support in Emacs. You can either 290Use of any form of TLS/SSL requires support in Emacs. You can either
291use the built-in support (in Emacs 24.1 and later), or the 291use the built-in support (in Emacs 24.1 and later), or the
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 4f3af2a7d7f..a277d7a6680 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -58,7 +58,7 @@
58 (setq i (1+ i))) 58 (setq i (1+ i)))
59 (modify-syntax-entry ?\s " " table) 59 (modify-syntax-entry ?\s " " table)
60 ;; Non-break space acts as whitespace. 60 ;; Non-break space acts as whitespace.
61 (modify-syntax-entry ?\x8a0 " " table) 61 (modify-syntax-entry ?\xa0 " " table)
62 (modify-syntax-entry ?\t " " table) 62 (modify-syntax-entry ?\t " " table)
63 (modify-syntax-entry ?\f " " table) 63 (modify-syntax-entry ?\f " " table)
64 (modify-syntax-entry ?\n "> " table) 64 (modify-syntax-entry ?\n "> " table)
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
793positive, and disable it otherwise. If called from Lisp, enable 793positive, and disable it otherwise. If called from Lisp, enable
794the mode if ARG is omitted or nil. 794the mode if ARG is omitted or nil.
795 795
796Footnode mode is a buffer-local minor mode. If enabled, it 796Footnote mode is a buffer-local minor mode. If enabled, it
797provides footnote support for `message-mode'. To get started, 797provides footnote support for `message-mode'. To get started,
798play around with the following keys: 798play around with the following keys:
799\\{footnote-minor-mode-map}" 799\\{footnote-minor-mode-map}"
diff --git a/test/lisp/emulation/viper-tests.el b/test/lisp/emulation/viper-tests.el
index e2c39b3c3de..074dd637538 100644
--- a/test/lisp/emulation/viper-tests.el
+++ b/test/lisp/emulation/viper-tests.el
@@ -65,6 +65,7 @@ after itself, although it will leave a buffer called
65 rtn)) 65 rtn))
66 ;; Switch everything off and restore the buffer. 66 ;; Switch everything off and restore the buffer.
67 (toggle-viper-mode) 67 (toggle-viper-mode)
68 (delete-file viper-custom-file-name)
68 (switch-to-buffer before-buffer)))) 69 (switch-to-buffer before-buffer))))
69 70
70(ert-deftest viper-test-go () 71(ert-deftest viper-test-go ()