branch: master commit 6e6bc61f5674b04b713a719e3a656cd022d684e1 Author: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com> Commit: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com>
Rename themep to theme-p. --- context-coloring.el | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/context-coloring.el b/context-coloring.el index 9554fdf..52a494b 100644 --- a/context-coloring.el +++ b/context-coloring.el @@ -477,7 +477,7 @@ would be redundant." (defvar context-coloring-theme-hash-table (make-hash-table :test 'eq) "Mapping of theme names to theme properties.") -(defun context-coloring-themep (theme) +(defun context-coloring-theme-p (theme) "Return t if THEME is defined, nil otherwise." (and (gethash theme context-coloring-theme-hash-table))) @@ -661,7 +661,7 @@ THEME." "Enable colors for context themes just-in-time. We can't set faces for custom themes that might not exist yet." (when (and (not (eq theme 'user)) ; Called internally by `enable-theme'. - (context-coloring-themep theme) + (context-coloring-theme-p theme) (custom-theme-p theme)) ; Guard against non-existent themes. (context-coloring-enable-theme theme)))