diff options
Diffstat (limited to 'lisp/progmodes/dcl-mode.el')
-rw-r--r-- | lisp/progmodes/dcl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/dcl-mode.el b/lisp/progmodes/dcl-mode.el index 17137cf3036..d5803c77bb4 100644 --- a/lisp/progmodes/dcl-mode.el +++ b/lisp/progmodes/dcl-mode.el @@ -1580,7 +1580,7 @@ Find the column of the first non-blank character on the line. Returns the column offset." (save-excursion (beginning-of-line) - (re-search-forward "^$[ \t]*" nil t) + (re-search-forward "^\\$[ \t]*" nil t) (current-column))) |