@@ -503,7 +503,7 @@ create a `gnuplot-mode' buffer."
503
503
[" logscale" (gnuplot-insert " set logscale " ) t]
504
504
[" multiplot" (gnuplot-insert " set multiplot" ) t]
505
505
[" missing" (gnuplot-insert " set missing \"\" " ) t]
506
- [" palette" (gnuplot-insert " set palette " ) t] ; <MT>
506
+ [" palette" (gnuplot-insert " set palette " ) t]
507
507
[" pm3d" (gnuplot-insert " set pm3d " ) t]
508
508
[" offsets" (gnuplot-insert " set offsets " ) t]
509
509
[" output" (gnuplot-insert " set output " ) t]
@@ -865,7 +865,7 @@ These are highlighted using `font-lock-constant-face'.")
865
865
866
866
; ; Set up colorization for gnuplot.
867
867
(defvar gnuplot-font-lock-keywords
868
- `(; stuff in brackets, sugg. by <LB>
868
+ `(; stuff in brackets
869
869
(" \\ [\\ ([^]]+\\ )\\ ]" (1 'font-lock-constant-face ))
870
870
871
871
; ; variable/function definitions
@@ -876,7 +876,7 @@ These are highlighted using `font-lock-constant-face'.")
876
876
(,(gnuplot--make-regexp gnuplot-keywords-builtin-functions)
877
877
(0 'font-lock-function-name-face ))
878
878
879
- ; ; reserved words associated with plotting <AL>
879
+ ; ; reserved words associated with plotting
880
880
(,(gnuplot--make-regexp gnuplot-keywords-plotting)
881
881
(0 'font-lock-type-face ))
882
882
(,(gnuplot--make-regexp gnuplot-keywords-plotting-styles)
@@ -1096,7 +1096,7 @@ This sets `gnuplot-recently-sent' to `line'."
1096
1096
(let (start end)
1097
1097
(save-excursion
1098
1098
; ; go to start of continued command, or beginning of line
1099
- ; ; if this is not a continuation of a previous line <JJO>
1099
+ ; ; if this is not a continuation of a previous line
1100
1100
(gnuplot--beginning-of-continuation)
1101
1101
(setq start (point ))
1102
1102
(end-of-line )
@@ -1127,7 +1127,7 @@ NUM is optional arg."
1127
1127
(while (> num 0 )
1128
1128
(setq end (gnuplot-send-line-to-gnuplot))
1129
1129
(goto-char end)
1130
- (backward-char 1 ) ; <AR>
1130
+ (backward-char 1 )
1131
1131
(gnuplot-forward-script-line 1 )
1132
1132
(setq num (1- num)))))
1133
1133
@@ -1138,7 +1138,7 @@ NUM is optional arg."
1138
1138
(gnuplot-send-line-to-gnuplot)
1139
1139
(insert " \n " ))
1140
1140
1141
- (defun gnuplot-forward-script-line (&optional num ) ; <SE>
1141
+ (defun gnuplot-forward-script-line (&optional num )
1142
1142
" Move forward my NUM script lines.
1143
1143
Blank lines and commented lines are not included in the NUM count."
1144
1144
(interactive " p" )
@@ -1168,7 +1168,6 @@ This sets `gnuplot-recently-sent' to `file'."
1168
1168
(gnuplot--make-comint-buffer) ; make sure a gnuplot buffer exists
1169
1169
(gnuplot-send-string-to-gnuplot string 'file )))
1170
1170
1171
- ; ; suggested by <JS>
1172
1171
(defun gnuplot-plot-from-comint ()
1173
1172
" Send the contents of a script to gnuplot from the process buffer.
1174
1173
This inserts the contents of the most recently used gnuplot script
@@ -1344,7 +1343,7 @@ STRING is the text as originally inserted in the comint buffer."
1344
1343
(defun gnuplot--close-down ()
1345
1344
" Tidy up when deleting the gnuplot buffer."
1346
1345
(if (and gnuplot-process
1347
- (eq (process-status gnuplot-process) 'run )) ; <SE>
1346
+ (eq (process-status gnuplot-process) 'run ))
1348
1347
(kill-process gnuplot-process))
1349
1348
(setq gnuplot-process nil
1350
1349
gnuplot-buffer nil ))
@@ -1361,7 +1360,7 @@ This is very similar to `comint-delchar-or-maybe-eof'."
1361
1360
" Kill the gnuplot process and its display buffers."
1362
1361
(interactive )
1363
1362
(if (and gnuplot-process
1364
- (eq (process-status gnuplot-process) 'run )) ; ; <SE>
1363
+ (eq (process-status gnuplot-process) 'run ))
1365
1364
(kill-process gnuplot-process))
1366
1365
(if (and gnuplot-buffer (get-buffer gnuplot-buffer))
1367
1366
(progn
@@ -1720,8 +1719,6 @@ Negatable options are defined in `gnuplot-keywords-negatable-options'."
1720
1719
1721
1720
; ;; --- help from the info file, keyword list + completion, insert function
1722
1721
1723
- ; ; set up stuff for info-look (as suggested by <SE>)
1724
- ; ; modified with suggestion from <MS>
1725
1722
(defun gnuplot--setup-info-look ()
1726
1723
" Setup info-look in the gnuplot buffer.
1727
1724
Also set the variable `gnuplot--info-keywords' ."
@@ -1829,7 +1826,7 @@ called."
1829
1826
(window
1830
1827
(switch-to-buffer-other-window " *info*" )
1831
1828
; ; Adjust window height only if the frame is split
1832
- ; ; horizontally, so as not to mess up the minibuffer <jjo>
1829
+ ; ; horizontally, so as not to mess up the minibuffer
1833
1830
; ; we can't use shrink-window-if-larger-than-buffer here
1834
1831
; ; because it doesn't work with Info mode's narrowing
1835
1832
(with-selected-window (get-buffer-window " *info*" )
0 commit comments