mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-03 14:10:47 -08:00
* test/lisp/net/shr-tests.el (ert, ert-x): Require. (shr-tests--datadir): Remove variable. (shr-test, rendering): Use ert-resource-directory. * test/lisp/net/shr-resources/*: Move from test/data/shr/.
12 lines
391 B
Text
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))
|