Skip to content

Commit e918a2c

Browse files
committed
Fix some docstring warnings
1 parent c97a7a6 commit e918a2c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

gnuplot-context.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
;;
4242
;; Gnuplot's context sensitive mode is best controlled using Customize
4343
;; (M-x customize-group gnuplot): simply enable the
44-
;; `gnuplot-context-sensitive-mode' setting. You may also want to turn
44+
;; `gnuplot-context-sensitive-mode' setting. You may also want to turn
4545
;; on `gnuplot-tab-completion' so that the TAB key does auto-completion
46-
;; on lines which are already indented. (This just sets the Emacs
46+
;; on lines which are already indented. (This just sets the Emacs
4747
;; variable `tab-always-indent' to `complete' in Gnuplot buffers).
4848
;;
4949
;; If you need to turn context sensitivity on or off from Lisp code
@@ -86,7 +86,7 @@
8686
;; grammar in S-expression notation (`gnuplot-grammar') is compiled
8787
;; down into a vector of "machine code" for the parsing machine (see
8888
;; `gnuplot-compile-pattern', `gnuplot-compile-grammar' and
89-
;; `gnuplot-compiled-grammar'). This is complicated, but it seems to
89+
;; `gnuplot-compiled-grammar'). This is complicated, but it seems to
9090
;; work well enough, and it saves on the Emacs call stack.
9191
;;
9292
;; Compiling the grammar does require increasing `max-lisp-eval-depth'

gnuplot-gui.el

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,6 @@ This alist is formed at load time by appending together
839839
Determine contents of current line and set up the appropriate GUI
840840
frame. Bound to \\[gnuplot-gui-set-options-and-insert]
841841
Note that \"cntrparam\" is not currently supported."
842-
(interactive)
843842
(interactive (list last-nonmenu-event))
844843
(save-excursion
845844
(if event (mouse-set-point event))
@@ -931,7 +930,7 @@ Note that \"cntrparam\" is not currently supported."
931930

932931
(defun gnuplot-gui-correct-command (word set term begin)
933932
"Check syntax of set command and terminal specifications.
934-
WORD is the item being set. SET and TERM are non-nil if the words
933+
WORD is the item being set. SET and TERM are non-nil if the words
935934
\"set\" and \"terminal\" were found preceding WORD in the buffer.
936935
BEGIN is the beginning of the command."
937936
(save-excursion

0 commit comments

Comments
 (0)