• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/international/

Lines Matching defs:overlay

158 ;; kkc-overlay-head (black):     |<--------->|
159 ;; kkc-overlay-tail (underline): |<------->|
163 (defvar kkc-overlay-head nil)
164 (defvar kkc-overlay-tail nil)
240 (if (overlayp kkc-overlay-head)
241 (move-overlay kkc-overlay-head from to)
242 (setq kkc-overlay-head (make-overlay from to nil nil t))
243 (overlay-put kkc-overlay-head 'face 'highlight))
244 (if (overlayp kkc-overlay-tail)
245 (move-overlay kkc-overlay-tail to to)
246 (setq kkc-overlay-tail (make-overlay to to nil nil t))
247 (overlay-put kkc-overlay-tail 'face 'underline))
301 (goto-char (overlay-end kkc-overlay-tail))
302 (- (overlay-start kkc-overlay-head) from))
303 (delete-overlay kkc-overlay-head)
304 (delete-overlay kkc-overlay-tail)))
309 (goto-char (overlay-end kkc-overlay-tail))
310 (move-overlay kkc-overlay-head (point) (point))
316 (goto-char (overlay-start kkc-overlay-head))
317 (delete-region (overlay-start kkc-overlay-head)
318 (overlay-end kkc-overlay-tail))
325 (goto-char (overlay-start kkc-overlay-head))
327 (delete-region (point) (overlay-end kkc-overlay-tail))
452 (goto-char (overlay-end kkc-overlay-head))
453 (while (and (< (point) (overlay-end kkc-overlay-tail))
478 (tail (overlay-end kkc-overlay-tail)))
479 (move-overlay kkc-overlay-head pos tail)
480 (move-overlay kkc-overlay-tail tail tail))
620 ;; inside quail-overlay-head.
623 (goto-char (overlay-start kkc-overlay-head))
636 (delete-region (point) (overlay-start kkc-overlay-tail))
640 (delete-region (overlay-start kkc-overlay-tail)
641 (overlay-end kkc-overlay-head))
651 (move-overlay kkc-overlay-head
652 (overlay-start kkc-overlay-head) pos)
653 (delete-region (point) (overlay-end kkc-overlay-tail)))))
656 (overlay-start kkc-overlay-head)
657 (overlay-end kkc-overlay-head))
658 (goto-char (overlay-end kkc-overlay-tail))))