Skip to content

Commit 53972e4

Browse files
committed
Remove author tags
Some are outdated and we can use the git history and git blame for that.
1 parent a950dcb commit 53972e4

File tree

2 files changed

+11
-14
lines changed

2 files changed

+11
-14
lines changed

gnuplot-gui.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ See the doc-string for `gnuplot-gui-all-types'.")
275275
'(("POINTSIZE" 'number " ")
276276
("LINEWIDTH" 'number " ")
277277
("INTERVAL " 'number " ")))
278-
(cons "vgagl" ; for pm3d patch (also persist, raise in x11) <MT>
278+
(cons "vgagl" ; for pm3d patch (also persist, raise in x11)
279279
'(("BACKGROUND" 'position " " "background" 3)
280280
("INTERPOLATION" 'list " " "uniform" "interpolate")
281281
("DUMP" 'file " ")
@@ -439,7 +439,7 @@ See the doc-string for `gnuplot-gui-all-types'.")
439439
(cons "mx2tics" gnuplot-gui-mtics-list)
440440
(cons "my2tics" gnuplot-gui-mtics-list)
441441

442-
; pm3d additions <MT>
442+
; pm3d additions
443443
(cons "mouse"
444444
'(("DOUBLECLICK" 'number " " "doubleclick")
445445
("ZOOM" 'list " " "zoomcoordinates" "nozoomcoordinates")

gnuplot.el

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ create a `gnuplot-mode' buffer."
503503
["logscale" (gnuplot-insert "set logscale ") t]
504504
["multiplot" (gnuplot-insert "set multiplot") t]
505505
["missing" (gnuplot-insert "set missing \"\"") t]
506-
["palette" (gnuplot-insert "set palette ") t] ; <MT>
506+
["palette" (gnuplot-insert "set palette ") t]
507507
["pm3d" (gnuplot-insert "set pm3d ") t]
508508
["offsets" (gnuplot-insert "set offsets ") t]
509509
["output" (gnuplot-insert "set output ") t]
@@ -865,7 +865,7 @@ These are highlighted using `font-lock-constant-face'.")
865865

866866
;; Set up colorization for gnuplot.
867867
(defvar gnuplot-font-lock-keywords
868-
`(; stuff in brackets, sugg. by <LB>
868+
`(; stuff in brackets
869869
("\\[\\([^]]+\\)\\]" (1 'font-lock-constant-face))
870870

871871
;; variable/function definitions
@@ -876,7 +876,7 @@ These are highlighted using `font-lock-constant-face'.")
876876
(,(gnuplot--make-regexp gnuplot-keywords-builtin-functions)
877877
(0 'font-lock-function-name-face))
878878

879-
;; reserved words associated with plotting <AL>
879+
;; reserved words associated with plotting
880880
(,(gnuplot--make-regexp gnuplot-keywords-plotting)
881881
(0 'font-lock-type-face))
882882
(,(gnuplot--make-regexp gnuplot-keywords-plotting-styles)
@@ -1096,7 +1096,7 @@ This sets `gnuplot-recently-sent' to `line'."
10961096
(let (start end)
10971097
(save-excursion
10981098
;; 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
11001100
(gnuplot--beginning-of-continuation)
11011101
(setq start (point))
11021102
(end-of-line)
@@ -1127,7 +1127,7 @@ NUM is optional arg."
11271127
(while (> num 0)
11281128
(setq end (gnuplot-send-line-to-gnuplot))
11291129
(goto-char end)
1130-
(backward-char 1) ; <AR>
1130+
(backward-char 1)
11311131
(gnuplot-forward-script-line 1)
11321132
(setq num (1- num)))))
11331133

@@ -1138,7 +1138,7 @@ NUM is optional arg."
11381138
(gnuplot-send-line-to-gnuplot)
11391139
(insert "\n"))
11401140

1141-
(defun gnuplot-forward-script-line (&optional num) ; <SE>
1141+
(defun gnuplot-forward-script-line (&optional num)
11421142
"Move forward my NUM script lines.
11431143
Blank lines and commented lines are not included in the NUM count."
11441144
(interactive "p")
@@ -1168,7 +1168,6 @@ This sets `gnuplot-recently-sent' to `file'."
11681168
(gnuplot--make-comint-buffer) ; make sure a gnuplot buffer exists
11691169
(gnuplot-send-string-to-gnuplot string 'file)))
11701170

1171-
;; suggested by <JS>
11721171
(defun gnuplot-plot-from-comint ()
11731172
"Send the contents of a script to gnuplot from the process buffer.
11741173
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."
13441343
(defun gnuplot--close-down ()
13451344
"Tidy up when deleting the gnuplot buffer."
13461345
(if (and gnuplot-process
1347-
(eq (process-status gnuplot-process) 'run)) ; <SE>
1346+
(eq (process-status gnuplot-process) 'run))
13481347
(kill-process gnuplot-process))
13491348
(setq gnuplot-process nil
13501349
gnuplot-buffer nil))
@@ -1361,7 +1360,7 @@ This is very similar to `comint-delchar-or-maybe-eof'."
13611360
"Kill the gnuplot process and its display buffers."
13621361
(interactive)
13631362
(if (and gnuplot-process
1364-
(eq (process-status gnuplot-process) 'run)) ;; <SE>
1363+
(eq (process-status gnuplot-process) 'run))
13651364
(kill-process gnuplot-process))
13661365
(if (and gnuplot-buffer (get-buffer gnuplot-buffer))
13671366
(progn
@@ -1720,8 +1719,6 @@ Negatable options are defined in `gnuplot-keywords-negatable-options'."
17201719

17211720
;;; --- help from the info file, keyword list + completion, insert function
17221721

1723-
;; set up stuff for info-look (as suggested by <SE>)
1724-
;; modified with suggestion from <MS>
17251722
(defun gnuplot--setup-info-look ()
17261723
"Setup info-look in the gnuplot buffer.
17271724
Also set the variable `gnuplot--info-keywords'."
@@ -1829,7 +1826,7 @@ called."
18291826
(window
18301827
(switch-to-buffer-other-window "*info*")
18311828
;; 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
18331830
;; we can't use shrink-window-if-larger-than-buffer here
18341831
;; because it doesn't work with Info mode's narrowing
18351832
(with-selected-window (get-buffer-window "*info*")

0 commit comments

Comments
 (0)