Skip to content

Commit 7138b13

Browse files
committed
Fixup parens in gnuplot-trim-gnuplot-buffer
1 parent 07a8027 commit 7138b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gnuplot.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ This keeps that buffer from growing excessively in size. Normally,
13571357
this function is attached to `gnuplot-after-plot-hook'"
13581358
(if (> gnuplot-buffer-max-size 0)
13591359
(with-current-buffer gnuplot-buffer
1360-
(let (gnuplot-lines (count-lines (point-min) (point-max)))
1360+
(let ((gnuplot-lines (count-lines (point-min) (point-max))))
13611361
(dotimes (tmp (- gnuplot-lines gnuplot-buffer-max-size))
13621362
(goto-char (point-min))
13631363
(delete-region (line-beginning-position) (1+ (line-end-position))))

0 commit comments

Comments
 (0)