diff options
| author | Tom Tromey | 2017-02-04 13:22:39 -0700 |
|---|---|---|
| committer | Tom Tromey | 2017-02-04 13:22:39 -0700 |
| commit | 148100d98319499f0ac6f57b8be08cbd14884a5c (patch) | |
| tree | c632aa760fd84370386769a8208d84497662b4c3 | |
| parent | 394fc3fd030b8fa2f9b97c2ef3fa3b16e6f29474 (diff) | |
| download | emacs-148100d98319499f0ac6f57b8be08cbd14884a5c.tar.gz emacs-148100d98319499f0ac6f57b8be08cbd14884a5c.zip | |
typo fix
(css--colon-inside-selector-p): Fix typo in docstring.
| -rw-r--r-- | lisp/textmodes/css-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 65a599d6d43..0c7d76f7924 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -755,7 +755,7 @@ cannot be completed sensibly: `custom-ident', | |||
| 755 | "Return t if point looks to be inside a CSS selector. | 755 | "Return t if point looks to be inside a CSS selector. |
| 756 | This function is intended to be good enough to help SMIE during | 756 | This function is intended to be good enough to help SMIE during |
| 757 | tokenization, but should not be regarded as a reliable function | 757 | tokenization, but should not be regarded as a reliable function |
| 758 | for determining wheter point is within a selector." | 758 | for determining whether point is within a selector." |
| 759 | (save-excursion | 759 | (save-excursion |
| 760 | (re-search-forward "[{};)]" nil t) | 760 | (re-search-forward "[{};)]" nil t) |
| 761 | (eq (char-before) ?\{))) | 761 | (eq (char-before) ?\{))) |