diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-05 22:21:28 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-05 22:21:28 +0000 |
commit | a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0 (patch) | |
tree | 9ca09d12c605ce9155e55ad82476c9a6d6ebedcd /lisp/gnus-msg.el | |
parent | 60d0378e485ded218121a8b8d6ce582e47882fac (diff) | |
download | emacs-a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0.tar.gz |
Comment fixes.
Diffstat (limited to 'lisp/gnus-msg.el')
-rw-r--r-- | lisp/gnus-msg.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el index ea52c043c17..6f6c97e7f7a 100644 --- a/lisp/gnus-msg.el +++ b/lisp/gnus-msg.el @@ -580,7 +580,7 @@ will attempt to use the foreign server to post the article." (match-beginning 0))) ;; Correct newsgroups field: change sequence of spaces to comma and - ;; eliminate spaces around commas. Eliminate imbedded line breaks. + ;; eliminate spaces around commas. Eliminate embedded line breaks. (goto-char (point-min)) (if (re-search-forward "^Newsgroups: +" nil t) (save-restriction @@ -1353,7 +1353,7 @@ domain is undefined, the domain name is got from it." ;; You might for example insert a "." somewhere (not next to another dot ;; or string boundary), or modify the newsreader name to "Ding". (defun gnus-inews-unique-id () - ;; Dont use microseconds from (current-time), they may be unsupported. + ;; Don't use microseconds from (current-time), they may be unsupported. ;; Instead we use this randomly inited counter. (setq gnus-unique-id-char (% (1+ (or gnus-unique-id-char (logand (random t) (1- (lsh 1 20))))) |