Files
dotemacs/lisp/lib/string.el
2022-01-09 21:19:46 +01:00

12 lines
268 B
EmacsLisp

;;; string.el --- Emacs string functions. -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(defmacro with-face (str &rest properties)
"Print STR using PROPERTIES."
`(propertize ,str 'face (list ,@properties)))
(provide 'lib/string)
;;; string.el ends here