Mercurial > emacs
diff src/casefiddle.c @ 21514:fa9ff387d260
Fix -Wimplicit warnings.
| author | Andreas Schwab <schwab@suse.de> |
|---|---|
| date | Tue, 14 Apr 1998 12:25:56 +0000 |
| parents | 0fda3f197f9c |
| children | 2107e25fa56f |
line wrap: on
line diff
--- a/src/casefiddle.c Tue Apr 14 10:56:46 1998 +0000 +++ b/src/casefiddle.c Tue Apr 14 12:25:56 1998 +0000 @@ -182,6 +182,7 @@ /* flag is CASE_UP, CASE_DOWN or CASE_CAPITALIZE or CASE_CAPITALIZE_UP. b and e specify range of buffer to operate on. */ +void casify_region (flag, b, e) enum case_action flag; Lisp_Object b, e; @@ -404,6 +405,7 @@ return Qnil; } +void syms_of_casefiddle () { Qidentity = intern ("identity"); @@ -421,6 +423,7 @@ defsubr (&Scapitalize_word); } +void keys_of_casefiddle () { initial_define_key (control_x_map, Ctl('U'), "upcase-region");
