diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-01-01 22:24:03 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-01-01 22:24:03 +0000 |
commit | c430597dfc185d8b5ac65937176e33dcdcd61d0b (patch) | |
tree | f0ce0588c1f5c8971c3c3a983e6ff8a09d303d23 /lisp/gnus | |
parent | 551b2a973611e1f7456ecb53441f4f8fe9edf6dd (diff) | |
download | emacs-c430597dfc185d8b5ac65937176e33dcdcd61d0b.tar.gz |
Typo.
Diffstat (limited to 'lisp/gnus')
-rw-r--r-- | lisp/gnus/imap.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/gnus/imap.el b/lisp/gnus/imap.el index 6ef8dfa5fe2..d14c673e7b9 100644 --- a/lisp/gnus/imap.el +++ b/lisp/gnus/imap.el @@ -1,5 +1,5 @@ ;;; imap.el --- imap library -;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 +;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005 ;; Free Software Foundation, Inc. ;; Author: Simon Josefsson <jas@pdc.kth.se> @@ -69,7 +69,7 @@ ;; imap-message-append, imap-envelope-from ;; imap-body-lines ;; -;; It is my hope that theese commands should be pretty self +;; It is my hope that these commands should be pretty self ;; explanatory for someone that know IMAP. All functions have ;; additional documentation on how to invoke them. ;; @@ -325,7 +325,7 @@ for doing the actual authentication.") (defvar imap-error nil "Error codes from the last command.") -;; Internal constants. Change theese and die. +;; Internal constants. Change these and die. (defconst imap-default-port 143) (defconst imap-default-ssl-port 993) @@ -1456,7 +1456,7 @@ or 'unseen. The IMAP command tag is returned." (defun imap-fetch (uids props &optional receive nouidfetch buffer) "Fetch properties PROPS from message set UIDS from server in BUFFER. UIDS can be a string, number or a list of numbers. If RECEIVE -is non-nil return theese properties." +is non-nil return these properties." (with-current-buffer (or buffer (current-buffer)) (when (imap-ok-p (imap-send-command-wait (format "%sFETCH %s %s" (if nouidfetch "" "UID ") |