branch: elpa/gnuplot
commit d89937992f89c5d2414c63387a17e3798f969bf0
Author: joddie <[email protected]>
Commit: joddie <[email protected]>
Clarify comments
---
gnuplot.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnuplot.el b/gnuplot.el
index 8b7572b..a9fc483 100644
--- a/gnuplot.el
+++ b/gnuplot.el
@@ -368,7 +368,7 @@
(require 'info-look)
(error nil)))
-;; Hack for Emacs < 22
+;; Workaround missing `completion-at-point' in (X)Emacs < 22
(if (not (fboundp 'completion-at-point))
(defun gnuplot-xemacs-completion-at-point ()
"Perform completion on keyword preceding point.
@@ -381,7 +381,7 @@ real work."
'(gnuplot-comint-complete)))
(comint-dynamic-complete))))
-;; Work around window-full-height-p
+;; Work around missing `window-full-height-p'
(if (not (fboundp 'window-full-height-p))
;; The below is taken from GNU Emacs window.el
(defun gnuplot-window-full-height-p (&optional window)