branch: master
commit e97fb94f4ecb230faa33267fc45799daa37f6d4a
Author: Arash Esbati <ar...@gnu.org>
Commit: Arash Esbati <ar...@gnu.org>

    Pacify compiler warning
    
    * context.el (ConTeXt-expand-options): Use `string=' instead of
    `eq' to compare strings.
---
 context.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/context.el b/context.el
index d14b3646..ae546b6a 100644
--- a/context.el
+++ b/context.el
@@ -1753,7 +1753,7 @@ Use `ConTeXt-Mark-version' to choose the command."
      (let ((engine (eval (nth 4 (TeX-engine-in-engine-alist TeX-engine)) t)))
        (when engine
          (format "--engine=%s " engine)))
-     (unless (eq ConTeXt-current-interface "en")
+     (unless (string= ConTeXt-current-interface "en")
        (format "--interface=%s " ConTeXt-current-interface))
      (when TeX-source-correlate-mode
        (format "--passon=\"%s\" "

Reply via email to