diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2019-10-12 22:17:54 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2019-10-12 22:17:54 +0100 |
commit | 846b23d70c47b2d7b48000f2f2455ffd48405c33 (patch) | |
tree | 0ece6c23f92a1926decdd687298183be3af572b6 /elisp/geiser-log.el | |
parent | f76340bd11dc6eb5cf6c22cb5f39e76d52b15d66 (diff) | |
download | geiser-guile-846b23d70c47b2d7b48000f2f2455ffd48405c33.tar.gz geiser-guile-846b23d70c47b2d7b48000f2f2455ffd48405c33.tar.bz2 |
Missing require (fixes issue #285)
Seems we forgot a require while adding a new defcustom in geiser-log.
Diffstat (limited to 'elisp/geiser-log.el')
-rw-r--r-- | elisp/geiser-log.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elisp/geiser-log.el b/elisp/geiser-log.el index 91ed639..7b4193e 100644 --- a/elisp/geiser-log.el +++ b/elisp/geiser-log.el @@ -1,6 +1,6 @@ ;; geiser-log.el -- logging utilities -;; Copyright (C) 2009, 2010, 2012 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010, 2012, 2019 Jose Antonio Ortega Ruiz ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the Modified BSD License. You should @@ -14,6 +14,7 @@ ;; Some utilities for maintaining a simple log buffer, mainly for ;; debugging purposes. +(require 'geiser-custom) (require 'geiser-popup) (require 'geiser-base) |