From: akr Date: Thu, 20 Aug 1998 11:22:56 +0000 (+0000) Subject: * ew-var.el (ew-dynamic-options): The result is now integer instead X-Git-Tag: doodle-1_9_2~37 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=2db1580d45a7db760d5d91b107e81225bd1fca58;p=elisp%2Fflim.git * ew-var.el (ew-dynamic-options): The result is now integer instead of list of booleans. --- diff --git a/ChangeLog b/ChangeLog index 66e916d..b8e9dc6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 1998-08-20 Tanaka Akira + * ew-var.el (ew-dynamic-options): The result is now integer instead + of list of booleans. + +1998-08-20 Tanaka Akira + * Makefile: Output parse table to ew-parse.out instead of states.output. diff --git a/ew-var.el b/ew-var.el index 1d64cc7..1284d94 100644 --- a/ew-var.el +++ b/ew-var.el @@ -68,10 +68,10 @@ ;;; utilities for variables. (defun ew-dynamic-options () - (list - ew-decode-sticked-encoded-word - ew-decode-quoted-encoded-word - ew-ignore-75bytes-limit - ew-ignore-76bytes-limit - ew-permit-sticked-comment - ew-permit-sticked-special)) + (logior + (if ew-decode-sticked-encoded-word 1 0) + (if ew-decode-quoted-encoded-word 2 0) + (if ew-ignore-75bytes-limit 4 0) + (if ew-ignore-76bytes-limit 8 0) + (if ew-permit-sticked-comment 16 0) + (if ew-permit-sticked-special 32 0)))