@@ -275,13 +275,13 @@ If COMPLETING-P is non-nil, omits the token at point if it is a
275275name; otherwise continues tokenizing up to the token at point. FIXME."
276276 (let ((tokens '())
277277 (stop-point (min (point )
278- (gnuplot-point-at-end-of-command))))
278+ (gnuplot-- point-at-end-of-command))))
279279 (save-excursion
280280 (if (save-excursion ; HACK FIXME
281- (gnuplot-beginning-of-continuation)
281+ (gnuplot-- beginning-of-continuation)
282282 (looking-at " \\ s-*if\\ s-*(" ))
283- (gnuplot-beginning-of-continuation)
284- (gnuplot-beginning-of-command))
283+ (gnuplot-- beginning-of-continuation)
284+ (gnuplot-- beginning-of-command))
285285 (while
286286 ; ; Skip whitespace and continuation lines
287287 (progn
@@ -2060,7 +2060,7 @@ there."
20602060(defun gnuplot-context-completion-at-point ()
20612061 " Return completions of keyword preceding point, using context."
20622062 (list (save-excursion
2063- (skip-syntax-backward " w_" (gnuplot-point-at-beginning-of-command))
2063+ (skip-syntax-backward " w_" (gnuplot-- point-at-beginning-of-command))
20642064 (point ))
20652065 (point )
20662066 (gnuplot-completions)))
@@ -2176,7 +2176,7 @@ command."
21762176 (catch 'result
21772177 (while
21782178 (search-backward-regexp " reset\\ |set\\ s-+parametric" (point-min ) t )
2179- (gnuplot-beginning-of-command)
2179+ (gnuplot-- beginning-of-command)
21802180 (cond ((looking-at " reset\\ |unset\\ s-+parametric" ) (throw 'result nil ))
21812181 ((looking-at " set\\ s-+parametric" ) (throw 'result t ))))
21822182 nil )))
0 commit comments