branch: externals/ebdb commit f143265d3da232bf4f27d0aea81492fb3e94cc59 Author: Eric Abrahamsen <e...@ericabrahamsen.net> Commit: Eric Abrahamsen <e...@ericabrahamsen.net>
Quietly swap order of arguments to ebdb-read-i18n for addresses * ebdb-i18n.el (ebdb-read): Nothing was actually using this, so why not. Need to have the country spec come before the optional arguments. --- ebdb-i18n.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ebdb-i18n.el b/ebdb-i18n.el index ec54dc1..9d6c9d1 100644 --- a/ebdb-i18n.el +++ b/ebdb-i18n.el @@ -688,8 +688,8 @@ for their symbol representations." (ebdb-i18n-countries))))) (setq slots (condition-case nil - (ebdb-read-i18n class - (plist-put slots :country country) obj country) + (ebdb-read-i18n class country + (plist-put slots :country country) obj) (cl-no-method (plist-put slots :country country)))) (cl-call-next-method class slots obj)))