diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2015-10-12 12:02:18 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2015-10-12 12:02:18 +0200 |
commit | 48ba8943e8ad63f778cf89b6e7dc41313127fffb (patch) | |
tree | c0bc04dd5586ca90758ca7190565443d3e88d1b7 /elisp/geiser-debug.el | |
parent | 697d0ac94d2d63bf755931122beafcbe1304b321 (diff) | |
download | geiser-guile-48ba8943e8ad63f778cf89b6e7dc41313127fffb.tar.gz geiser-guile-48ba8943e8ad63f778cf89b6e7dc41313127fffb.tar.bz2 |
Keeping the elisp compiler happy
Mainly by reordering definitions so that functions are not used before
defined. There are a couple of places where the compiler and I
disagree (it complains withing eval-after-load), and a valid complain
about functions defined via geiser-popup--define that should be
addressed).
Diffstat (limited to 'elisp/geiser-debug.el')
-rw-r--r-- | elisp/geiser-debug.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elisp/geiser-debug.el b/elisp/geiser-debug.el index a63e8eb..dbeefba 100644 --- a/elisp/geiser-debug.el +++ b/elisp/geiser-debug.el @@ -1,6 +1,6 @@ ;;; geiser-debug.el -- displaying debug information and evaluation results -;; Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015 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 @@ -18,6 +18,7 @@ (require 'geiser-menu) (require 'geiser-popup) (require 'geiser-base) +(require 'geiser-image) ;;; Customization: |