emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/gnus/nnimap.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/gnus/nnimap.el [lexbind]
Date: Wed, 06 Oct 2004 01:44:32 -0400

Index: emacs/lisp/gnus/nnimap.el
diff -c emacs/lisp/gnus/nnimap.el:1.6.2.6 emacs/lisp/gnus/nnimap.el:1.6.2.7
*** emacs/lisp/gnus/nnimap.el:1.6.2.6   Thu Sep 16 00:14:56 2004
--- emacs/lisp/gnus/nnimap.el   Wed Oct  6 05:21:53 2004
***************
*** 211,216 ****
--- 211,217 ----
  used (which currently is nil, unless you use a statistical
  spam.el test); if this variable is another non-nil value bodies
  will be downloaded."
+   :version "21.4"
    :group 'nnimap
    :type '(choice (const :tag "Let system decide" deault)
                 boolean))
***************
*** 219,227 ****
  
  (defcustom nnimap-close-asynchronous t
    "Close mailboxes asynchronously in `nnimap-close-group'.
! This means that errors cought by nnimap when closing the mailbox will
  not prevent Gnus from updating the group status, which may be harmful.
  However, it increases speed."
    :type 'boolean
    :group 'nnimap)
  
--- 220,229 ----
  
  (defcustom nnimap-close-asynchronous t
    "Close mailboxes asynchronously in `nnimap-close-group'.
! This means that errors caught by nnimap when closing the mailbox will
  not prevent Gnus from updating the group status, which may be harmful.
  However, it increases speed."
+   :version "21.4"
    :type 'boolean
    :group 'nnimap)
  
***************
*** 230,235 ****
--- 232,238 ----
  This increases the speed of closing mailboxes (quiting group) but may
  decrease the speed of selecting another mailbox later.  Re-selecting
  the same mailbox will be faster though."
+   :version "21.4"
    :type 'boolean
    :group 'nnimap)
  
***************
*** 242,247 ****
--- 245,251 ----
  
  In summary, the default is O((1-p)*k+p*n) and changing it to nil makes
  it O(n).  If p is small, then the default is probably faster."
+   :version "21.4"
    :type 'boolean
    :group 'nnimap)
  
***************
*** 812,820 ****
    ;; BEWARE: we used to use string-as-multibyte here which is braindead
    ;; because it will turn accidental emacs-mule-valid byte sequences
    ;; into multibyte chars.  --Stef
!   (funcall (if (and (fboundp 'string-to-multibyte)
!                   (subrp (symbol-function 'string-to-multibyte)))
!              'string-to-multibyte
             'identity)
           (or string "")))
  
--- 816,826 ----
    ;; BEWARE: we used to use string-as-multibyte here which is braindead
    ;; because it will turn accidental emacs-mule-valid byte sequences
    ;; into multibyte chars.  --Stef
!   ;; Reverted, braindead got 7.5 out of 10 on imdb, so it can't be
!   ;; that bad. --Simon
!   (funcall (if (and (fboundp 'string-as-multibyte)
!                   (subrp (symbol-function 'string-as-multibyte)))
!              'string-as-multibyte
             'identity)
           (or string "")))
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]