12 lines
268 B
EmacsLisp
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
|