[gnus git] branch master updated: n0-17-389-gb90fd52 =1= Fix typos; gnus.texi: remove gnus-group-fetch-faq

Katsumi Yamaoka <[email protected]>
Newsgroups gmane.emacs.gnus.cvs
Message-ID <[email protected]>
       via  b90fd52c6aaed0f274b2056c90e212933cb47815 (commit)
      from  9ccf719a2b2ec72a77d9a7fcf67a552abe50e06f (commit)


- Log -----------------------------------------------------------------
commit b90fd52c6aaed0f274b2056c90e212933cb47815
Author: Emacs developers <[email protected]>
Date:   Sun Nov 20 22:27:52 2011 +0000

    Fix typos; gnus.texi: remove gnus-group-fetch-faq

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a81c342..43a90a6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,10 @@
 2011-11-20  Juanma Barranquero  <[email protected]>
 
-	* mm-util.el (mm-charset-after): Fix typo.
+	* mm-util.el (mm-charset-after):
+	* nnir.el (nnir-run-hyrex):
+	* ntlm.el (ntlm-build-auth-request, ntlm-build-auth-response)
+	(ntlm-get-password-hashes, ntlm-md4hash):
+	* smime.el: Fix typo.
 
 2011-11-20  Paul Eggert  <[email protected]>
 
diff --git a/lisp/ChangeLog.2 b/lisp/ChangeLog.2
index 2bd66ee..6e7b19a 100644
--- a/lisp/ChangeLog.2
+++ b/lisp/ChangeLog.2
@@ -8314,7 +8314,7 @@
 
 2002-09-03  Simon Josefsson  <[email protected]>
 
-	* nntp.el (nntp-wait-for-string): Dont infloop if process died.
+	* nntp.el (nntp-wait-for-string): Don't infloop if process died.
 
 	* gnus-agent.el (gnus-agent-batch): Add doc.
 
diff --git a/lisp/nnir.el b/lisp/nnir.el
index 88fd4fe..78d2478 100644
--- a/lisp/nnir.el
+++ b/lisp/nnir.el
@@ -1269,7 +1269,7 @@ Tested with swish-e-2.0.1 on Windows NT 4.0."
           ;; nnir-search failure reason is in this buffer, show it if
           ;; the user wants it.
           (when (> gnus-verbose 6)
-            (display-buffer nnir-tmp-buffer)))) ;; FIXME: Dont clear buffer !
+            (display-buffer nnir-tmp-buffer)))) ;; FIXME: Don't clear buffer !
       (message "Doing hyrex-search query \"%s\"...done" qstring)
       (sit-for 0)
       ;; nnir-search returns:
diff --git a/lisp/ntlm.el b/lisp/ntlm.el
index 25e7a7b..9af148e 100644
--- a/lisp/ntlm.el
+++ b/lisp/ntlm.el
@@ -102,8 +102,8 @@ is not given."
 	    (md4-pack-int16 ld)	;domain field, count field
 	    (md4-pack-int16 ld)	;domain field, max count field
 	    (md4-pack-int32 (cons 0 off-d)) ;domain field, offset field
-	    user			;bufer field
-	    domain		;bufer field
+	    user			;buffer field
+	    domain		;buffer field
 	    )))
 
 (eval-when-compile
@@ -207,16 +207,16 @@ by PASSWORD-HASHES.  PASSWORD-HASHES should be a return value of
 	    ;; buffer field
 	    lmRespData			;lmResponse, 24 bytes
 	    ntRespData			;ntResponse, 24 bytes
-	    (ntlm-ascii2unicode domain	;unicode domain string, 2*ld bytes
+	    (ntlm-ascii2unicode domain	;Unicode domain string, 2*ld bytes
 				(length domain)) ;
-	    (ntlm-ascii2unicode user	;unicode user string, 2*lu bytes
+	    (ntlm-ascii2unicode user	;Unicode user string, 2*lu bytes
 				(length user)) ;
-	    (ntlm-ascii2unicode user	;unicode user string, 2*lu bytes
+	    (ntlm-ascii2unicode user	;Unicode user string, 2*lu bytes
 				(length user)) ;
 	    )))
 
 (defun ntlm-get-password-hashes (password)
-  "Return a pair of SMB hash and NT MD4 hash of the given password PASSWORD"
+  "Return a pair of SMB hash and NT MD4 hash of the given password PASSWORD."
   (list (ntlm-smb-passwd-hash password)
 	(ntlm-md4hash password)))
 
@@ -526,7 +526,7 @@ into a Unicode string.  PASSWD is truncated to 128 bytes if longer."
     (setq len (length passwd))
     (if (> len 128)
 	(setq len 128))
-    ;; Password must be converted to NT unicode
+    ;; Password must be converted to NT Unicode
     (setq wpwd (ntlm-ascii2unicode passwd len))
     ;; Calculate length in bytes
     (setq len (* len 2))
diff --git a/lisp/smime.el b/lisp/smime.el
index 90af714..3c1f75f 100644
--- a/lisp/smime.el
+++ b/lisp/smime.el
@@ -99,7 +99,7 @@
 ;;
 ;; I would include pointers to introductory text on concepts used in
 ;; this library here, but the material I've read are so horrible I
-;; don't want to recomend them.
+;; don't want to recommend them.
 ;;
 ;; Why can't someone write a simple introduction to all this stuff?
 ;; Until then, much of this resemble security by obscurity.
diff --git a/texi/ChangeLog b/texi/ChangeLog
index 0d22ed3..107d2a6 100644
--- a/texi/ChangeLog
+++ b/texi/ChangeLog
@@ -1,7 +1,14 @@
+2011-11-20  Glenn Morris  <[email protected]>
+
+	* gnus.texi (Group Information):
+	Remove gnus-group-fetch-faq, command deleted 2010-09-24.
+
 2011-11-20  Juanma Barranquero  <[email protected]>
 
 	* gnus-coding.texi (Gnus Maintenance Guide):
 	Rename from "Gnus Maintainance Guide".
+
+	* gnus.texi (Article Washing):
 	* gnus-news.texi: Fix typos.
 
 2011-11-20  Paul Eggert  <[email protected]>
diff --git a/texi/gnus.texi b/texi/gnus.texi
index 1aaeac5..b861a98 100644
--- a/texi/gnus.texi
+++ b/texi/gnus.texi
@@ -4491,23 +4491,6 @@ news.
 @table @kbd
 
 
-@item H f
-@kindex H f (Group)
-@findex gnus-group-fetch-faq
-@vindex gnus-group-faq-directory
-@cindex FAQ
-@cindex ange-ftp
-Try to fetch the @acronym{FAQ} for the current group
-(@code{gnus-group-fetch-faq}).  Gnus will try to get the @acronym{FAQ}
-from @code{gnus-group-faq-directory}, which is usually a directory on
-a remote machine.  This variable can also be a list of directories.
-In that case, giving a prefix to this command will allow you to choose
-between the various sites.  @code{ange-ftp} (or @code{efs}) will be
-used for fetching the file.
-
-If fetching from the first site is unsuccessful, Gnus will attempt to go
-through @code{gnus-group-faq-directory} and try to open them one by one.
-
 @item H d
 @itemx C-c C-d
 @c @icon{gnus-group-describe-group}
@@ -8992,7 +8975,7 @@ apostrophe or quotation mark, then try this wash.
 Translate many non-@acronym{ASCII} characters into their
 @acronym{ASCII} equivalents (@code{gnus-article-treat-non-ascii}).
 This is mostly useful if you're on a terminal that has a limited font
-and does't show accented characters, ``advanced'' punctuation, and the
+and doesn't show accented characters, ``advanced'' punctuation, and the
 like.  For instance, @samp{»} is tranlated into @samp{>>}, and so on.
 
 @item W Y f

-----------------------------------------------------------------------
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   |    6 +++++-
 lisp/ChangeLog.2 |    2 +-
 lisp/nnir.el     |    2 +-
 lisp/ntlm.el     |   14 +++++++-------
 lisp/smime.el    |    2 +-
 texi/ChangeLog   |    7 +++++++
 texi/gnus.texi   |   19 +------------------
 7 files changed, 23 insertions(+), 29 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
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.