This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt install build-essential texinfo libx11-dev libxpm-dev libjpeg-dev libpng-dev libgif-dev libtiff-dev libgtk2.0-dev libncurses-dev libgnutls28-dev | |
wget http://ftp.gnu.org/gnu/emacs/emacs-29.3.tar.gz | |
tar xvzf emacs-29.3.tar.gz | |
cd emacs-29.3 | |
./configure --with-mailutils | |
make |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns utils.keywordize-at-keys | |
(:require [clojure.walk :as walk])) | |
(defn- coerced-to-keyword | |
[k] | |
(when (string? k) | |
(keyword k))) | |
(defn keywordize-at-keys |