]> git.eshelyaron.com Git - emacs.git/commitdiff
Make `C-u RET' work again
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 28 Oct 2021 21:38:29 +0000 (23:38 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 28 Oct 2021 21:38:29 +0000 (23:38 +0200)
* lisp/simple.el (newline): Fix regression introduced by
d1aacceae9 (bug#51459).

lisp/simple.el

index e3657cc079e0037581cf1919585e215f5b432a23..94a459b7795567235cb5e4cd19bf994735743769 100644 (file)
@@ -590,7 +590,7 @@ A non-nil INTERACTIVE argument means to run the `post-self-insert-hook'."
   (interactive "*P\np")
   (barf-if-buffer-read-only)
   (when (and arg
-             (< arg 0))
+             (< (prefix-numeric-value arg) 0))
     (error "Repetition argument has to be non-negative"))
   ;; Call self-insert so that auto-fill, abbrev expansion etc. happen.
   ;; Set last-command-event to tell self-insert what to insert.