From b08d2cb8175686773b148149ac7f7707357e9f3a Mon Sep 17 00:00:00 2001 From: HIRAOKA Kazuyuki Date: Tue, 13 Feb 2018 23:04:43 +0900 Subject: [PATCH] fix (void-function caddr) --- ChangeLog | 6 ++++++ howm-vars.el | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f7df504..945e5ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-02-13 HIRAOKA Kazuyuki + + * howm-vars.el (howm-menu-lang): fix "Lisp error: (void-function caddr)" + thx > dareka (2018-02-13 13:51:08) + http://howm.osdn.jp/cgi-bin/hiki/hiki.cgi?BugReportPaste + 2018-02-12 HIRAOKA Kazuyuki * howm-lang-fr.el: added for French menu diff --git a/howm-vars.el b/howm-vars.el index 991d453..f93e10b 100644 --- a/howm-vars.el +++ b/howm-vars.el @@ -248,7 +248,7 @@ A file is excluded iff this regexp matches with all the relative paths." (ret 'en)) (mapc (lambda (rule) (if (or (string= lang (cadr rule)) - (string-match (caddr rule) locale)) + (string-match (cl-caddr rule) locale)) (setq ret (car rule)))) lang-table) ret)) -- 2.11.0