enable caching private->public key mapping in memory to improve CPU consumption for...
[oweals/gnunet.git] / doc / hacks.el
1 ;;;; hacks.el --- a few functions to help me work on the manual
2 ;;;; Jim Blandy <jimb@red-bean.com> --- October 1998
3 ;;;; -- imported from https://git.savannah.gnu.org/cgit/guile.git/tree/doc/hacks.el
4
5 (defun jh-exemplify-region (start end)
6   (interactive "r")
7   (save-excursion
8     (save-restriction
9       (narrow-to-region start end)
10
11       ;; Texinfo doesn't handle tabs well.
12       (untabify (point-min) (point-max))
13
14       ;; Quote any characters special to texinfo.
15       (goto-char (point-min))
16       (while (re-search-forward "[{}@]" nil t)
17         (replace-match "@\\&")))))