From 39384cc1575c990fa4e8a821b9870b00844459e9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 29 Aug 2013 10:37:53 +0200 Subject: [PATCH] ox: Fix 8c833ed9fbabae298054dd9eec574984acf3ab8b * lisp/ox.el (org-export-table-cell-alignment): Use correct :test. See 2baa2c3afa70f86a6266b4bb9d5f763c5fb18388. --- lisp/ox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index 7dad90857..8c68cdac4 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -4523,7 +4523,7 @@ Possible values are `left', `right' and `center'." (cache (or (plist-get info :table-cell-alignment-cache) (plist-get (setq info (plist-put info :table-cell-alignment-cache - (make-hash-table :test 'equal))) + (make-hash-table :test 'eq))) :table-cell-alignment-cache))) (align-vector (or (gethash table cache) (puthash table (make-vector columns nil) cache))))