[gnus git] branch master updated: m0-13-16-g0718141 =2= smime.el (smime-CA-directory): Fix minor quoting problems in doc string ; Support curved quotes

Katsumi Yamaoka <[email protected]> Thu, 28 May 2015 10:00:55 +0200
Newsgroups gmane.emacs.gnus.cvs
Message-ID <[email protected]>
       via  0718141fd4867b81473a35ec5d92fcd45ee54445 (commit)
       via  d8b872b8a3b98292e6f3e81f5d40ba263c55ce2b (commit)
      from  bd7fafc38e2adb66f9e72786064e1f08a95506b6 (commit)


- Log -----------------------------------------------------------------
commit 0718141fd4867b81473a35ec5d92fcd45ee54445
Author: Paul Eggert <[email protected]>
Date:   Thu May 28 08:00:22 2015 +0000

    smime.el (smime-CA-directory): Fix minor quoting problems in doc string

diff --git a/lisp/smime.el b/lisp/smime.el
index 6f043df..76d58f7 100644
--- a/lisp/smime.el
+++ b/lisp/smime.el
@@ -158,7 +158,7 @@ certificates to be sent with every message to each address."
 Directory should contain files (in PEM format) named to the X.509
 hash of the certificate.  This can be done using OpenSSL such as:
 
-$ ln -s ca.pem `openssl x509 -noout -hash -in ca.pem`.0
+$ ln -s ca.pem \\=`openssl x509 -noout -hash -in ca.pem\\=`.0
 
 where `ca.pem' is the file containing a PEM encoded X.509 CA
 certificate."

commit d8b872b8a3b98292e6f3e81f5d40ba263c55ce2b
Author: Paul Eggert <[email protected]>
Date:   Thu May 28 07:55:30 2015 +0000

    Support curved quotes
    
    * gnus-art.el (gnus-button-alist):
    Also treat "‘" and "’" as quoting chars.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 223fdd2..addb5f0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2015-05-28  Paul Eggert  <[email protected]>
+
+	* gnus-art.el (gnus-button-alist):
+	Also treat "‘" and "’" as quoting chars.
+
 2015-05-19  Paul Eggert  <[email protected]>
 
 	* gnus-art.el (gnus-treat-strip-list-identifiers)
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index 5ed8bf4..548aa9e 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -7828,11 +7828,11 @@ positives are possible."
     ("/\\([a-z][-a-z0-9]+\\.el\\)\\>[^.?]"
      ;; Exclude [.?] for URLs in gmane.emacs.cvs
      1 (>= gnus-button-emacs-level 8) gnus-button-handle-library 1)
-    ("`\\([a-z][-a-z0-9]+\\.el\\)'"
+    ("[`‘]\\([a-z][-a-z0-9]+\\.el\\)['’]"
      1 (>= gnus-button-emacs-level 8) gnus-button-handle-library 1)
-    ("`\\([a-z][a-z0-9]+-[a-z0-9]+-[-a-z0-9]*[a-z]\\|\\(gnus\\|message\\)-[-a-z]+\\)'"
+    ("[`‘]\\([a-z][a-z0-9]+-[a-z0-9]+-[-a-z0-9]*[a-z]\\|\\(gnus\\|message\\)-[-a-z]+\\)['’]"
      0 (>= gnus-button-emacs-level 8) gnus-button-handle-symbol 1)
-    ("`\\([a-z][a-z0-9]+-[a-z]+\\)'"
+    ("[`‘]\\([a-z][a-z0-9]+-[a-z]+\\)['’]"
      0 (>= gnus-button-emacs-level 9) gnus-button-handle-symbol 1)
     ("(setq[ \t\n]+\\([a-z][a-z0-9]+-[-a-z0-9]+\\)[ \t\n]+.+)"
      1 (>= gnus-button-emacs-level 7) gnus-button-handle-describe-variable 1)
@@ -7842,7 +7842,7 @@ positives are possible."
      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-function 2)
     ("\\b\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+v[ \t\n]+\\([^ \t\n]+\\)[ \t\n]+RET\\>"
      0 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-variable 2)
-    ("`\\(\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^']+\\)\\)'"
+    ("[`‘]\\(\\(C-h\\|<?[Ff]1>?\\)[ \t\n]+k[ \t\n]+\\([^'’]+\\)\\)['’]"
      ;; Unlike the other regexps we really have to require quoting
      ;; here to determine where it ends.
      1 (>= gnus-button-emacs-level 1) gnus-button-handle-describe-key 3)

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog   |    5 +++++
 lisp/gnus-art.el |    8 ++++----
 lisp/smime.el    |    2 +-
 3 files changed, 10 insertions(+), 5 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
-- 
Gnus Project