bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#64272: 28.1; lisp_file_lexically_bound_p behavior mismatches file lo


From: Stefan Monnier
Subject: bug#64272: 28.1; lisp_file_lexically_bound_p behavior mismatches file local variables
Date: Sun, 25 Jun 2023 11:42:42 -0400
User-agent: Gnus/5.13 (Gnus v5.13)

>> I'd much rather we try and stay as close as possible to the behavior of
>> `hack-local-variables-prop-line`
>
> Right, but that doesn't require the -*- line to be a comment:
>
>       (goto-char (point-min))
>       (let ((end (set-auto-mode-1))
>           result)
>       (cond ((not end)
>              nil)
>             ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
>              ;; Simple form: "-*- MODENAME -*-".
>              (if (eq handle-mode t)
>                  (intern (concat (match-string 1) "-mode"))))
>             (t
>              ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
>              ;; (last ";" is optional).
>              ;; If HANDLE-MODE is t, just check for `mode'.
>              ;; Otherwise, parse the -*- line into the RESULT alist.
>
> The fact that most -*- lines are in comments is because they are in
> program source files, so we need to hide them from the compiler or the
> interpreter.

Oh, indeed.  Then `ldb`s suggestion sounds great since it makes us "stay
as close as possible to the behavior of
`hack-local-variables-prop-line`".


        Stefan






reply via email to

[Prev in Thread] Current Thread [Next in Thread]