hacks.el 493 B

1234567891011121314151617
  1. ;;;; hacks.el --- a few functions to help me work on the manual
  2. ;;;; Jim Blandy <jimb@red-bean.com> --- October 1998
  3. (defun jh-exemplify-region (start end)
  4. (interactive "r")
  5. (save-excursion
  6. (save-restriction
  7. (narrow-to-region start end)
  8. ;; Texinfo doesn't handle tabs well.
  9. (untabify (point-min) (point-max))
  10. ;; Quote any characters special to texinfo.
  11. (goto-char (point-min))
  12. (while (re-search-forward "[{}@]" nil t)
  13. (replace-match "@\\&")))))