changeset 2109:73485780a8f9

* simple.el (yank, yank-pop): Always return nil; don't rely on exchange-point-and-mark to return nil. * fill.el (justify-current-line): Return nil, to be sure to conform with documentation.
author Jim Blandy <jimb@redhat.com>
date Thu, 11 Mar 1993 07:05:23 +0000
parents baec460e28c7
children 2c87b7e144c0
files lisp/textmodes/fill.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/fill.el	Thu Mar 11 07:04:44 1993 +0000
+++ b/lisp/textmodes/fill.el	Thu Mar 11 07:05:23 1993 +0000
@@ -265,7 +265,8 @@
 		(setq nmove (1- nmove))))
 	    (insert " ")
 	    (skip-chars-backward " ")
-	    (setq ncols (1- ncols))))))))
+	    (setq ncols (1- ncols)))))))
+  nil)
 
 (defun fill-individual-paragraphs (min max &optional justifyp mailp)
   "Fill each paragraph in region according to its individual fill prefix.