Emacs 用 gnuplot-mode をソースからインストール

Ubuntu だと apt でインストールできるが,macOS (Homebrew) の場合は,ソースからインストール。

git clone https://github.com/joaotavora/gnuplot-mode.git
cd gnuplot-mode
./configure --with-lispdir=/usr/local/share/emacs/site-lisp 
make
In toplevel form:
gnuplot-context.el:250:13:Warning: Package cl is deprecated

In gnuplot-match-pattern:
gnuplot-context.el:1822:13:Warning: ‘flet’ is an obsolete macro (as of
24.3); use either ‘cl-flet’ or ‘cl-letf’.

などと言われるので,
gnuplot-context.el:1822 flet を cl-flet に変更し

make
sudo make install

site-start.el に以下を追記。

;; (require 'cl) を見逃す
(setq byte-compile-warnings '(not cl-functions obsolete))