]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/casefiddle.c (casify_word): Return Qnil.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Sep 2016 15:06:52 +0000 (08:06 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Sep 2016 15:07:12 +0000 (08:07 -0700)
src/casefiddle.c

index 6c64d6786d45358c6100b2ef5169eedfc042d2c0..59b5bbcf43ead199b826946419c35082bd756ddf 100644 (file)
@@ -397,6 +397,7 @@ casify_word (enum case_action flag, Lisp_Object arg)
   casify_region (flag, beg, end);
 
   SET_PT (newpoint);
+  return Qnil;
 }
 
 DEFUN ("upcase-word", Fupcase_word, Supcase_word, 1, 1, "p",
@@ -409,8 +410,7 @@ With negative argument, convert previous words but do not move.
 See also `capitalize-word'.  */)
   (Lisp_Object arg)
 {
-  casify_word (CASE_UP, arg);
-  return Qnil;
+  return casify_word (CASE_UP, arg);
 }
 
 DEFUN ("downcase-word", Fdowncase_word, Sdowncase_word, 1, 1, "p",
@@ -422,8 +422,7 @@ is ignored when moving forward.
 With negative argument, convert previous words but do not move.  */)
   (Lisp_Object arg)
 {
-  casify_word (CASE_DOWN, arg);
-  return Qnil;
+  return casify_word (CASE_DOWN, arg);
 }
 
 DEFUN ("capitalize-word", Fcapitalize_word, Scapitalize_word, 1, 1, "p",
@@ -438,8 +437,7 @@ is ignored when moving forward.
 With negative argument, capitalize previous words but do not move.  */)
   (Lisp_Object arg)
 {
-  casify_word (CASE_CAPITALIZE, arg);
-  return Qnil;
+  return casify_word (CASE_CAPITALIZE, arg);
 }
 \f
 void