* simple.el (yank, yank-pop): Always return nil; don't rely on
authorJim Blandy <jimb@redhat.com>
Thu, 11 Mar 1993 07:05:23 +0000 (07:05 +0000)
committerJim Blandy <jimb@redhat.com>
Thu, 11 Mar 1993 07:05:23 +0000 (07:05 +0000)
exchange-point-and-mark to return nil.
* fill.el (justify-current-line): Return nil, to be sure to
conform with documentation.

lisp/textmodes/fill.el

index 2ea712f..eb2ba5b 100644 (file)
@@ -265,7 +265,8 @@ Prefix arg (non-nil third arg, if called from program) means justify as well."
                (setq nmove (1- nmove))))
            (insert " ")
            (skip-chars-backward " ")
-           (setq ncols (1- ncols))))))))
+           (setq ncols (1- ncols)))))))
+  nil)
 \f
 (defun fill-individual-paragraphs (min max &optional justifyp mailp)
   "Fill each paragraph in region according to its individual fill prefix.