aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-05-25 13:03:47 +0000
committerJim Blandy1993-05-25 13:03:47 +0000
commita1de6b4b57debde551f96bf7abacfe0924c8bbb2 (patch)
treed29bd941ed3decb1feac4345b60a9bd6524ff2c4
parente6299e3010f92e89936c36a38466ba6b2975ce6d (diff)
downloademacs-a1de6b4b57debde551f96bf7abacfe0924c8bbb2.tar.gz
emacs-a1de6b4b57debde551f96bf7abacfe0924c8bbb2.zip
* casetab.c: Fix formatting, so as not to confuse etags.
-rw-r--r--src/casetab.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/casetab.c b/src/casetab.c
index de13a91dcc8..dbd200fd0f1 100644
--- a/src/casetab.c
+++ b/src/casetab.c
@@ -76,8 +76,7 @@ DEFUN ("current-case-table", Fcurrent_case_table, Scurrent_case_table, 0, 0, 0,
76 return Fcons (down, Fcons (up, Fcons (canon, Fcons (eqv, Qnil)))); 76 return Fcons (down, Fcons (up, Fcons (canon, Fcons (eqv, Qnil))));
77} 77}
78 78
79DEFUN ("standard-case-table", Fstandard_case_table, 79DEFUN ("standard-case-table", Fstandard_case_table, Sstandard_case_table, 0, 0, 0,
80 Sstandard_case_table, 0, 0, 0,
81 "Return the standard case table.\n\ 80 "Return the standard case table.\n\
82This is the one used for new buffers.") 81This is the one used for new buffers.")
83 () 82 ()
@@ -111,8 +110,7 @@ Both CANONICALIZE and EQUIVALENCES may be nil, in which case\n\
111 return set_case_table (table, 0); 110 return set_case_table (table, 0);
112} 111}
113 112
114DEFUN ("set-standard-case-table", 113DEFUN ("set-standard-case-table", Fset_standard_case_table, Sset_standard_case_table, 1, 1, 0,
115 Fset_standard_case_table, Sset_standard_case_table, 1, 1, 0,
116 "Select a new standard case table for new buffers.\n\ 114 "Select a new standard case table for new buffers.\n\
117See `set-case-table' for more info on case tables.") 115See `set-case-table' for more info on case tables.")
118 (table) 116 (table)