Skip to content

Commit ca27533

Browse files
committed
Make gnuplot-negatable-options-regexp private
1 parent 8dc3734 commit ca27533

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gnuplot.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ These are highlighted using `font-lock-constant-face'.")
802802

803803
"List of gnuplot options which can be negated using `gnuplot-negate-option'.")
804804

805-
(defvar gnuplot-negatable-options-regexp
805+
(defvar gnuplot--negatable-options-regexp
806806
(gnuplot--make-regexp gnuplot--keywords-negatable-options))
807807

808808
;; Set up colorization for gnuplot.
@@ -1616,7 +1616,7 @@ Negatable options are defined in `gnuplot--keywords-negatable-options'."
16161616
(interactive nil gnuplot-mode gnuplot-comint-mode)
16171617
(let ((begin (gnuplot--point-at-beginning-of-command))
16181618
(end (gnuplot--point-at-end-of-command))
1619-
(regex gnuplot-negatable-options-regexp))
1619+
(regex gnuplot--negatable-options-regexp))
16201620
(save-excursion
16211621
(goto-char begin)
16221622
(skip-syntax-forward "-" end)

0 commit comments

Comments
 (0)