Skip to content

Commit

Permalink
Remove eval-when-compile for cl-functions
Browse files Browse the repository at this point in the history
eval-when-compile should not be used because ctable.el uses
cl functions.
  • Loading branch information
syohex committed Mar 4, 2014
1 parent 33accb2 commit e606bad
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ctable.el
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

;;; Code:

(eval-when-compile (require 'cl))
(require 'cl)

(declare-function popup-tip "popup")
(declare-function pos-tip-show "pos-tip")
Expand Down Expand Up @@ -1898,4 +1898,10 @@ WIDTH and HEIGHT are reference size of the table view."
;; (progn (eval-current-buffer) (ctbl:demo))

(provide 'ctable)

;; Local Variables:
;; byte-compile-warnings: (not cl-functions)
;; indent-tabs-mode: nil
;; End:

;;; ctable.el ends here

0 comments on commit e606bad

Please sign in to comment.