summaryrefslogtreecommitdiff
path: root/man/gnus.texi
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2006-07-04 20:02:38 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2006-07-04 20:02:38 +0000
commit91ec56a9a6e7f937ab02e11795d1fe803e4f1b6e (patch)
tree4208bcb6e1446af27b39053ec785b24b92ef3b9d /man/gnus.texi
parentc58dccad6b628da65e3f90fcca2a42f906ede689 (diff)
downloademacs-91ec56a9a6e7f937ab02e11795d1fe803e4f1b6e.tar.gz
Use ;; instead of ;;; to better follow coding conventions.
Diffstat (limited to 'man/gnus.texi')
-rw-r--r--man/gnus.texi16
1 files changed, 8 insertions, 8 deletions
diff --git a/man/gnus.texi b/man/gnus.texi
index 48a0f64281b..43e7c4c6d15 100644
--- a/man/gnus.texi
+++ b/man/gnus.texi
@@ -18849,20 +18849,20 @@ setup, you may be able to use something like the following as your
@file{~/.gnus.el} file to get started.
@lisp
-;;; @r{Define how Gnus is to fetch news. We do this over @acronym{NNTP}}
-;;; @r{from your ISP's server.}
+;; @r{Define how Gnus is to fetch news. We do this over @acronym{NNTP}}
+;; @r{from your ISP's server.}
(setq gnus-select-method '(nntp "news.your-isp.com"))
-;;; @r{Define how Gnus is to read your mail. We read mail from}
-;;; @r{your ISP's @acronym{POP} server.}
+;; @r{Define how Gnus is to read your mail. We read mail from}
+;; @r{your ISP's @acronym{POP} server.}
(setq mail-sources '((pop :server "pop.your-isp.com")))
-;;; @r{Say how Gnus is to store the mail. We use nnml groups.}
+;; @r{Say how Gnus is to store the mail. We use nnml groups.}
(setq gnus-secondary-select-methods '((nnml "")))
-;;; @r{Make Gnus into an offline newsreader.}
-;;; (gnus-agentize) ; @r{The obsolete setting.}
-;;; (setq gnus-agent t) ; @r{Now the default.}
+;; @r{Make Gnus into an offline newsreader.}
+;; (gnus-agentize) ; @r{The obsolete setting.}
+;; (setq gnus-agent t) ; @r{Now the default.}
@end lisp
That should be it, basically. Put that in your @file{~/.gnus.el} file,