]> git.eshelyaron.com Git - emacs.git/commitdiff
Handle package-prefixes like lexical-binding
authorGerd Möllmann <gerd@gnu.org>
Thu, 20 Jul 2023 12:55:06 +0000 (14:55 +0200)
committerGerd Möllmann <gerd@gnu.org>
Thu, 20 Jul 2023 13:22:39 +0000 (15:22 +0200)
* lisp/files.el (toplevel):
* lisp/files.el (permanently-enabled-local-variables): Add
package-prefixes.
* src/.lldbinit: Add a useful breakpoint

lisp/files.el
src/.lldbinit

index 377ed1b8a0bc621cbfff8b73e0360b29c77f7ec8..068d057629658d0e942cee9e2899a0c38cc08aa4 100644 (file)
@@ -3676,7 +3676,8 @@ asking you for confirmation."
           (left-margin             . integerp) ;; C source code
           (inhibit-compacting-font-caches . booleanp) ;; C source code
           (no-update-autoloads     . booleanp)
-          (lexical-binding      . booleanp)      ;; C source code
+          (lexical-binding         . booleanp)   ;; C source code
+          (package-prefixes        . booleanp)   ;; C source code
           (tab-width               . integerp)   ;; C source code
           (truncate-lines          . booleanp)   ;; C source code
           (word-wrap               . booleanp)   ;; C source code
@@ -3714,7 +3715,8 @@ function is allowed to change the contents of this alist.
 This hook is called only if there is at least one file-local
 variable to set.")
 
-(defvar permanently-enabled-local-variables '(lexical-binding)
+(defvar permanently-enabled-local-variables
+  '(lexical-binding package-prefixes)
   "A list of file-local variables that are always enabled.
 This overrides any `enable-local-variables' setting.")
 
index f82430a2e6ac3c357c970b3cb535bb56234fcb57..aae70b30cccceb410900e14acba09c93775c75be 100644 (file)
@@ -32,8 +32,11 @@ command script import emacs_lldb
 
 # b xsignal
 b pkg_break
-b pkg_error
-b Fpkg_read
-
+#b pkg_error
+#b Fpkg_read
+# To find out from where macOS prints stuff to stderr, like
+# 023-07-20 13:41:17.073449+0200 emacs[53072:1205906] [default]
+#    CGSWindowShmemCreateWithPort failed on port 0
+# b libsystem_trace.dylib``_os_log_error_impl
 
 # end.