aboutsummaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
authorEli Zaretskii2001-10-14 08:42:52 +0000
committerEli Zaretskii2001-10-14 08:42:52 +0000
commit79c2a4fc6894ce20dcaf10457fa264fbc668e15f (patch)
tree5cccd65de250890252ddb27ae3946c4f711ec0aa /src/indent.c
parentfedff3c69647bc2fa001bb32c4babce7931c006d (diff)
downloademacs-79c2a4fc6894ce20dcaf10457fa264fbc668e15f.tar.gz
emacs-79c2a4fc6894ce20dcaf10457fa264fbc668e15f.zip
Fix a typo in a comment.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c
index f2d5eb03675..c843ba27536 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -41,11 +41,11 @@ int indent_tabs_mode;
41 41
42#define CR 015 42#define CR 015
43 43
44/* These three values memoize the current column to avoid recalculation. */ 44/* These three values memorize the current column to avoid recalculation. */
45 45
46/* Last value returned by current_column. 46/* Last value returned by current_column.
47 Some things in set last_known_column_point to -1 47 Some things in set last_known_column_point to -1
48 to mark the memoized value as invalid. */ 48 to mark the memorized value as invalid. */
49 49
50int last_known_column; 50int last_known_column;
51 51