* lisp/ox.el (org-export-table-cell-alignment): Use correct :test.
  See 2baa2c3afa.
This commit is contained in:
Nicolas Goaziou 2013-08-29 10:37:53 +02:00
parent 8c833ed9fb
commit 39384cc157
1 changed files with 1 additions and 1 deletions

View File

@ -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))))