comparison lisp/gnus/flow-fill.el @ 90261:7beb78bc1f8e

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 616-696) - Add lisp/mh-e/.arch-inventory - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords. - lisp/gnus/ChangeLog: Remove duplicate entry * gnus--rel--5.10 (patch 147-181) - Update from CVS - Merge from emacs--cvs-trunk--0 - Update from CVS: lisp/mml.el (mml-preview): Doc fix. - Update from CVS: texi/message.texi: Fix default values. - Update from CVS: texi/gnus.texi (RSS): Addition.
author Miles Bader <miles@gnu.org>
date Mon, 16 Jan 2006 08:37:27 +0000
parents 2d92f5c9d6ae e65b759c6906
children c5406394f567
comparison
equal deleted inserted replaced
90260:0ca0d9181b5e 90261:7beb78bc1f8e
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*"))