1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 04:30:45 -08:00
emacs/test/data/shr/nonbr.txt
Lars Magne Ingebrigtsen 7570b35740 (shr-insert): Respect non-breaking space in non-<pre> text
* lisp/net/shr.el (shr-insert): Respect non-breaking space in
non-<pre> text.
2016-03-25 16:57:35 +01:00

12 lines
391 B
Text

(progn
(setq minibuffer-prompt-properties '(read-only t cursor-intangible t face
minibuffer-prompt))
(defun turn-on-cursor-intangible-mode ()
"Turns on cursor-intangible-mode."
(interactive)
(cursor-intangible-mode 1))
(define-globalized-minor-mode global-cursor-intangible-mode
cursor-intangible-mode turn-on-cursor-intangible-mode)
(global-cursor-intangible-mode 1))