mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
As of 9f25d46568b in upstream's master branch, Emacs emits a run-time warning when lexical binding is unset. This serves as a reminder that lexical binding is preferred. Reviewed by: yasu Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D49991
6 lines
253 B
EmacsLisp
6 lines
253 B
EmacsLisp
;;; site-start.el --- Site-wide Initialization -*- lexical-binding: t -*-
|
|
|
|
;;; Path to Emacs C Sources.
|
|
(when (string-match (regexp-quote "%%EMACS_VER%%") emacs-version)
|
|
(setq find-function-C-source-directory
|
|
"%%DATADIR%%/%%EMACS_VER%%/src"))
|