Skip to content

Commit

Permalink
rm superfluous single quotes re: byte-compiling of melpazoid (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
riscy committed Nov 24, 2023
1 parent b9bf263 commit 719ce96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions melpazoid/melpazoid.el
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

;; NOTE: avoid top-level "require"s - these can influence `melpazoid-byte-compile'

(defconst melpazoid-buffer "*melpazoid*" "Name of the 'melpazoid' buffer.")
(defconst melpazoid-buffer "*melpazoid*" "Name of the melpazoid buffer.")
(defvar melpazoid-can-modify-buffers nil "Whether melpazoid can modify buffers.")
(defvar melpazoid--pending "" "Text that will (maybe) be appended to the report.")

Expand Down Expand Up @@ -56,7 +56,7 @@ It should only be set to t for themes."
(save-buffer)))))

(defun melpazoid--package-load-paths ()
"Return a list of 'package' load-paths.
"Return a list of package load-paths.
Normally these would be resolved by `package-initialize', but
running that function requires bringing in dependencies that can
affect the output of `byte-compile-file'."
Expand All @@ -68,7 +68,7 @@ affect the output of `byte-compile-file'."
package-paths))

(defun melpazoid--buffer-almost-empty-p ()
"Return non-nil if current buffer is 'almost' empty."
"Return non-nil if current buffer is almost empty."
(<= (- (point-max) (point)) 3))

(defvar checkdoc-version)
Expand Down

0 comments on commit 719ce96

Please sign in to comment.