diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-05-28 12:04:47 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-05-28 12:04:47 +0000 |
commit | f4a6687dd6b1854bcb27bf269f4f304d4728c5c3 (patch) | |
tree | 93c98eaf2802d1e38580cfa109644692c78d34b7 /src/indent.c | |
parent | 04f250d4953acee7e04b3d7af95ce03458f817d3 (diff) | |
download | emacs-f4a6687dd6b1854bcb27bf269f4f304d4728c5c3.tar.gz |
(string_display_width): Put in #if 0.
Diffstat (limited to 'src/indent.c')
-rw-r--r-- | src/indent.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/indent.c b/src/indent.c index a6c5b046012..49768ea5206 100644 --- a/src/indent.c +++ b/src/indent.c @@ -624,6 +624,9 @@ current_column_1 () return col; } + +#if 0 /* Not used. */ + /* Return the width in columns of the part of STRING from BEG to END. If BEG is nil, that stands for the beginning of STRING. If END is nil, that stands for the end of STRING. */ @@ -701,6 +704,9 @@ string_display_width (string, beg, end) return col; } + +#endif /* 0 */ + DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ", "Indent from point with tabs and spaces until COLUMN is reached.\n\ |