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

nnimap 0.95 -> 0.96 patches



Index: nnimap/ChangeLog
diff -c nnimap/ChangeLog:1.188 nnimap/ChangeLog:1.190
*** nnimap/ChangeLog:1.188	Fri Mar 26 13:45:44 1999
--- nnimap/ChangeLog	Fri Mar 26 14:32:45 1999
***************
*** 1,5 ****
--- 1,14 ----
  1999-03-26  Simon Josefsson  <jas@pdc.kth.se>
  
+ 	* nnimap 0.96 released.
+ 
+ 	* imap.el (imap-parse-address): Fix.
+ 
+ 	* Makefile (ssl.elc): New target.
+ 	* ssl.el: New file, by William M. Perry <wmperry@cs.indiana.edu>.
+ 
+ 1999-03-26  Simon Josefsson  <jas@pdc.kth.se>
+ 
  	* nnimap 0.95 released.
  
  	* nnimap.el (nnimap-request-set-mark): Don't set flags we
Index: nnimap/Makefile
diff -c nnimap/Makefile:1.17 nnimap/Makefile:1.18
*** nnimap/Makefile:1.17	Wed Dec  9 13:35:50 1998
--- nnimap/Makefile	Fri Mar 26 14:06:02 1999
***************
*** 6,12 ****
  VERSION=`date +%y%m%d-%H%M`
  
  
! all: rfc2104.elc imap.elc nnimap.elc nnimap.info
  
  rfc2104.elc: rfc2104.el
  	$(ELCC) -f batch-byte-compile rfc2104.el
--- 6,12 ----
  VERSION=`date +%y%m%d-%H%M`
  
  
! all: nnimap.elc nnimap.info
  
  rfc2104.elc: rfc2104.el
  	$(ELCC) -f batch-byte-compile rfc2104.el
***************
*** 17,23 ****
  base64.elc: base64.el
  	$(ELCC) -f batch-byte-compile base64.el
  
! imap.elc: rfc2104.elc base64.elc md5.elc imap.el
  	$(ELCC) $(GNUS) -l base64.elc -l md5.elc -l rfc2104.elc -f batch-byte-compile imap.el
  
  nnimap.elc: rfc2104.elc base64.elc md5.elc imap.elc nnimap.el
--- 17,26 ----
  base64.elc: base64.el
  	$(ELCC) -f batch-byte-compile base64.el
  
! ssl.elc: base64.elc ssl.el
! 	$(ELCC) -f batch-byte-compile ssl.el
! 
! imap.elc: rfc2104.elc base64.elc md5.elc ssl.elc imap.el
  	$(ELCC) $(GNUS) -l base64.elc -l md5.elc -l rfc2104.elc -f batch-byte-compile imap.el
  
  nnimap.elc: rfc2104.elc base64.elc md5.elc imap.elc nnimap.el
***************
*** 30,36 ****
  	makeinfo nnimap.texi
  
  clean:
! 	rm -f rfc2104.elc base64.elc md5.elc imap.elc nnimap.elc nnimap.info nnimap.html
  
  tar:
  	cvs export -D now -d nnimap-$(VERSION) nnimap
--- 33,39 ----
  	makeinfo nnimap.texi
  
  clean:
! 	rm -f rfc2104.elc base64.elc md5.elc ssl.elc imap.elc nnimap.elc nnimap.info nnimap.html
  
  tar:
  	cvs export -D now -d nnimap-$(VERSION) nnimap
Index: nnimap/imap.el
diff -c nnimap/imap.el:1.122 nnimap/imap.el:1.123
*** nnimap/imap.el:1.122	Fri Mar 26 13:36:35 1999
--- nnimap/imap.el	Fri Mar 26 14:31:41 1999
***************
*** 1184,1191 ****
  			      (or (eobp) (forward-char)))
  			    (prog1 (imap-parse-nstring)
  			      (or (eobp) (forward-char)))
! 			    (prog1 (imap-parse-nstring)
! 			      (or (eobp) (forward-char)))))
        (when (eq (char-after) ?\))
  	(or (eobp) (forward-char))
  	address))))
--- 1184,1190 ----
  			      (or (eobp) (forward-char)))
  			    (prog1 (imap-parse-nstring)
  			      (or (eobp) (forward-char)))
! 			    (imap-parse-nstring)))
        (when (eq (char-after) ?\))
  	(or (eobp) (forward-char))
  	address))))
Index: nnimap/nnimap.el
diff -c nnimap/nnimap.el:1.135 nnimap/nnimap.el:1.136
*** nnimap/nnimap.el:1.135	Fri Mar 26 13:45:27 1999
--- nnimap/nnimap.el	Fri Mar 26 14:32:18 1999
***************
*** 93,99 ****
  
  (nnoo-declare nnimap)
  
! (defconst nnimap-version "nnimap 0.95")
  
  ;; Splitting variables
  
--- 93,99 ----
  
  (nnoo-declare nnimap)
  
! (defconst nnimap-version "nnimap 0.96")
  
  ;; Splitting variables