diff options
Diffstat (limited to 'src/casefiddle.c')
| -rw-r--r-- | src/casefiddle.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/src/casefiddle.c b/src/casefiddle.c index 4f1f72f6e9e..b6d8b21f606 100644 --- a/src/casefiddle.c +++ b/src/casefiddle.c @@ -182,6 +182,7 @@ The argument object is not altered--the value is a copy.")  /* 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 @@ With negative argument, capitalize previous words but do not move.")    return Qnil;  } +void  syms_of_casefiddle ()  {    Qidentity = intern ("identity"); @@ -421,6 +423,7 @@ syms_of_casefiddle ()    defsubr (&Scapitalize_word);  } +void  keys_of_casefiddle ()  {    initial_define_key (control_x_map, Ctl('U'), "upcase-region");  | 
