comparison lisp/gnus/flow-fill.el @ 66573:e65b759c6906

Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-630 Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 149-151) - Merge from emacs--cvs-trunk--0 - Update from CVS 2005-10-27 Reiner Steib <Reiner.Steib@gmx.de> * lisp/gnus/flow-fill.el (fill-flowed-encode-tests): Restore trailing whitespace removed in revision 7.8. Use concatenated string to protect trailing whitespace. 2005-10-27 Jouni K Seppanen <jks@iki.fi> (tiny change) * lisp/gnus/nnimap.el (nnimap-search-uids-not-since-is-evil): Add variable. (nnimap-request-expire-articles): Use it to avoid sending 'UID SEARCH UID ... NOT SINCE' queries, for inefficient servers like Courier IMAP ("some version from 2004"). Mostly based on similar code in the same function. 2005-10-26 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/message.el (message-display-completion-list): New function. (message-expand-group): Use it; make sure the Completions buffer is modifiable.
author Miles Bader <miles@gnu.org>
date Mon, 31 Oct 2005 07:07:28 +0000
parents fafd692d1e40
children 1077b8039c32 7beb78bc1f8e
comparison
equal deleted inserted replaced
66572:a99155be4d04 66573:e65b759c6906
159 159
160 (eval-when-compile 160 (eval-when-compile
161 (defvar show-trailing-whitespace)) 161 (defvar show-trailing-whitespace))
162 162
163 (defvar fill-flowed-encode-tests 163 (defvar fill-flowed-encode-tests
164 '( 164 `(
165 ;; The syntax of each list element is: 165 ;; The syntax of each list element is:
166 ;; (INPUT . EXPECTED-OUTPUT) 166 ;; (INPUT . EXPECTED-OUTPUT)
167 ("> Thou villainous ill-breeding spongy dizzy-eyed 167 (,(concat
168 > reeky elf-skinned pigeon-egg! 168 "> Thou villainous ill-breeding spongy dizzy-eyed \n"
169 >> Thou artless swag-bellied milk-livered 169 "> reeky elf-skinned pigeon-egg! \n"
170 >> dismal-dreaming idle-headed scut! 170 ">> Thou artless swag-bellied milk-livered \n"
171 >>> Thou errant folly-fallen spleeny reeling-ripe 171 ">> dismal-dreaming idle-headed scut!\n"
172 >>> unmuzzled ratsbane! 172 ">>> Thou errant folly-fallen spleeny reeling-ripe \n"
173 >>>> Henceforth, the coding style is to be strictly 173 ">>> unmuzzled ratsbane!\n"
174 >>>> enforced, including the use of only upper case. 174 ">>>> Henceforth, the coding style is to be strictly \n"
175 >>>>> I've noticed a lack of adherence to the coding 175 ">>>> enforced, including the use of only upper case.\n"
176 >>>>> styles, of late. 176 ">>>>> I've noticed a lack of adherence to the coding \n"
177 >>>>>> Any complaints? 177 ">>>>> styles, of late.\n"
178 " . "> Thou villainous ill-breeding spongy dizzy-eyed reeky elf-skinned 178 ">>>>>> Any complaints?")
179 > pigeon-egg! 179 .
180 >> Thou artless swag-bellied milk-livered dismal-dreaming idle-headed 180 ,(concat
181 >> scut! 181 "> Thou villainous ill-breeding spongy dizzy-eyed reeky elf-skinned\n"
182 >>> Thou errant folly-fallen spleeny reeling-ripe unmuzzled ratsbane! 182 "> pigeon-egg! \n"
183 >>>> Henceforth, the coding style is to be strictly enforced, 183 ">> Thou artless swag-bellied milk-livered dismal-dreaming idle-headed\n"
184 >>>> including the use of only upper case. 184 ">> scut!\n"
185 >>>>> I've noticed a lack of adherence to the coding styles, of late. 185 ">>> Thou errant folly-fallen spleeny reeling-ripe unmuzzled ratsbane!\n"
186 >>>>>> Any complaints? 186 ">>>> Henceforth, the coding style is to be strictly enforced,\n"
187 ") 187 ">>>> including the use of only upper case.\n"
188 ; (" 188 ">>>>> I've noticed a lack of adherence to the coding styles, of late.\n"
189 ;> foo 189 ">>>>>> Any complaints?\n"
190 ;> 190 ))
191 ;> 191 ;; (,(concat
192 ;> bar 192 ;; "\n"
193 ;" . " 193 ;; "> foo\n"
194 ;> foo bar 194 ;; "> \n"
195 ;") 195 ;; "> \n"
196 ;; "> bar\n")
197 ;; .
198 ;; ,(concat
199 ;; "\n"
200 ;; "> foo bar\n"))
196 )) 201 ))
197 202
198 (defun fill-flowed-test () 203 (defun fill-flowed-test ()
199 (interactive "") 204 (interactive "")
200 (switch-to-buffer (get-buffer-create "*Format=Flowed test output*")) 205 (switch-to-buffer (get-buffer-create "*Format=Flowed test output*"))