diff options
| author | Junpeng Qiu <qjpchmail@gmail.com> | 2018-07-29 17:16:26 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-29 17:16:26 -0700 |
| commit | 2cbbbc2254aa7bcaa4fb5e07c8c1bf2f381dba26 (patch) | |
| tree | fcdbe5dbb8dd04a41f4b1414f12089aa929a13bd | |
| parent | 72c1897a42b3b0b59505b3562e8f46c6354faec1 (diff) | |
| parent | 4c47becfca1c1491ab98cb4450b1d0c5f0c1de89 (diff) | |
Merge pull request #7 from ljos/patch-1externals/parsec
Only load cl-lib when needed
| -rw-r--r-- | parsec.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -501,7 +501,8 @@ ;;; Code: -(require 'cl-lib) +(eval-when-compile + (require 'cl-lib)) (defgroup parsec nil "Parser combinators for Emacs Lisp" |
