aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/hl-line.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/hl-line.el b/lisp/hl-line.el
index 55e8cfa157b..fd7d4f28095 100644
--- a/lisp/hl-line.el
+++ b/lisp/hl-line.el
@@ -48,8 +48,10 @@
48 48
49(defgroup hl-line nil 49(defgroup hl-line nil
50 "Highliight the current line." 50 "Highliight the current line."
51 :version "20.5"
51 :group 'editing) 52 :group 'editing)
52 53
54;;;###autoload
53(defcustom hl-line-mode nil 55(defcustom hl-line-mode nil
54 "Non-nil if Hl-Line mode is enabled." 56 "Non-nil if Hl-Line mode is enabled."
55 :set (lambda (symbol value) 57 :set (lambda (symbol value)
@@ -83,6 +85,7 @@
83 (if hl-line-overlay 85 (if hl-line-overlay
84 (delete-overlay hl-line-overlay))) 86 (delete-overlay hl-line-overlay)))
85 87
88;;;###autoload
86(defun hl-line-mode (&optional arg) 89(defun hl-line-mode (&optional arg)
87 "Global minor mode to highlight the line about point. 90 "Global minor mode to highlight the line about point.
88 91