diff options
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 () | |||
| 624 | return col; | 624 | return col; |
| 625 | } | 625 | } |
| 626 | 626 | ||
| 627 | |||
| 628 | #if 0 /* Not used. */ | ||
| 629 | |||
| 627 | /* Return the width in columns of the part of STRING from BEG to END. | 630 | /* Return the width in columns of the part of STRING from BEG to END. |
| 628 | If BEG is nil, that stands for the beginning of STRING. | 631 | If BEG is nil, that stands for the beginning of STRING. |
| 629 | If END is nil, that stands for the end of STRING. */ | 632 | If END is nil, that stands for the end of STRING. */ |
| @@ -701,6 +704,9 @@ string_display_width (string, beg, end) | |||
| 701 | 704 | ||
| 702 | return col; | 705 | return col; |
| 703 | } | 706 | } |
| 707 | |||
| 708 | #endif /* 0 */ | ||
| 709 | |||
| 704 | 710 | ||
| 705 | DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ", | 711 | DEFUN ("indent-to", Findent_to, Sindent_to, 1, 2, "NIndent to column: ", |
| 706 | "Indent from point with tabs and spaces until COLUMN is reached.\n\ | 712 | "Indent from point with tabs and spaces until COLUMN is reached.\n\ |