[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: font-lock as a single command
From: |
Emanuel Berg |
Subject: |
Re: font-lock as a single command |
Date: |
Sat, 13 Feb 2021 02:54:57 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) |
Christopher Dimech wrote:
> (defun supinf-raise-cruc (pos)
> "Raise and lower typeface at position POS."
> (unless (or (memq (get-text-property pos 'face)
> '(font-lock-constant-face font-lock-builtin-face))
> ;; Check for backslash quoting
> (let ((odd nil) (pos pos))
> (while (eq (char-before pos) ?\\)
> (setq pos (1- pos) odd (not odd)))
> odd))
> (if (eq (char-after pos) ?^)
> `(face supr-tfc display (raise ,(car deviat-supinf)))
> `(face infr-tfc display (raise ,(cadr deviat-supinf))) )))
Take it one function at a time. Does this work?
--
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal
- Re: font-lock as a single command, (continued)
- Re: font-lock as a single command, Emanuel Berg, 2021/02/12
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command,
Emanuel Berg <=
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command, Emanuel Berg, 2021/02/12
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command, Emanuel Berg, 2021/02/12
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command, Emanuel Berg, 2021/02/12
- Re: font-lock as a single command, Christopher Dimech, 2021/02/12
- Re: font-lock as a single command, Emanuel Berg, 2021/02/13