From: Emanuel Berg <incal@dataswamp.org>
To: emacs-devel@gnu.org
Subject: Re: how to speed up Lisp devel time
Date: Sat, 10 Aug 2024 06:32:24 +0200 [thread overview]
Message-ID: <87bk210zhj.fsf@dataswamp.org> (raw)
In-Reply-To: CAP_d_8V2RCW3c4iaMX5pnENyZMz3Sp79wu=98-Kz=dX7=a6GPQ@mail.gmail.com
Yuri Khan wrote:
> Asking for a more defaulting, more validating sequential
> 'read-*' is like asking Henry Ford for a faster horse.
Work on realizing the DRAW syntax has begun. (DRAW stands for
Dorks Run Away when they face a Warrior.)
The actual tool OTOH is called iihf, or "imbecille individuals
have fled".
But this is just a sneak peak, no Emacs devel on emacs-devel.
But again please post the "impossible" interfaces that cannot
be automated, but must be setup explicitly with Lisp, if that
is what you meant (?).
;;; -*- lexical-binding: t -*-
;;
;; this file:
;; https://dataswamp.org/~incal/emacs-init/iihf.el
(require 'calc-ext)
;; [
;; end :d 73 :r 0< :pa mxd od
;; step :d end/10 :r 0< :r 2-10 c
;; i :d 0 :r 0<=
;; ]
(defalias '^ #'expt)
(defun infx (str)
(let* ((exp (math-read-expr str))
(fun (car exp))
(new (cons (intern (caar (cl-member fun math-expr-opers :key #'cadr :test #'equal)))
(cdr exp))))
(apply (car new) (cdr new))))
;; (infx "2 < 3") ; t
;; (infx "2 + 3") ; 5
;; (infx "2 * 3") ; 6
;; (infx "2^3") ; 8 (must have above alias for this)
;; (infx "2**3") ; 8 (same)
(defun in-intv (n lo hi &optional mask)
(unless mask
(setq mask 3))
(= 1 (calcFunc-in n (calcFunc-intv mask lo hi))))
;; mask: (< < 0) (<= < 1) (< <= 2) (<= <= 3)
;; (in-intv 2 2 10) ; t
;; (in-intv 10 2 10) ; t
;; (in-intv 0 2 10) ; nil
;; (in-intv 700 2 10) ; nil
(provide 'iihf)
--
underground experts united
https://dataswamp.org/~incal
next prev parent reply other threads:[~2024-08-10 4:32 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-09 7:16 how to speed up Lisp devel time Emanuel Berg
2024-08-09 7:24 ` Eli Zaretskii
2024-08-09 7:39 ` Emanuel Berg
2024-08-09 10:43 ` Eli Zaretskii
2024-08-09 11:18 ` Emanuel Berg
2024-08-09 12:02 ` Eli Zaretskii
2024-08-09 13:54 ` Emanuel Berg
2024-08-09 14:58 ` Eli Zaretskii
2024-08-09 16:03 ` Emanuel Berg
2024-08-09 16:16 ` Emanuel Berg
2024-08-09 17:54 ` Eli Zaretskii
2024-08-09 18:56 ` Christopher Dimech
2024-08-09 21:57 ` Emanuel Berg
2024-08-09 21:47 ` Emanuel Berg
2024-08-09 17:27 ` Yuri Khan
2024-08-09 21:21 ` Emanuel Berg
2024-08-10 2:14 ` Emanuel Berg
2024-08-10 6:01 ` Yuri Khan
2024-08-10 6:08 ` Emanuel Berg
2024-08-10 6:44 ` Yuri Khan
2024-08-10 7:22 ` Emanuel Berg
2024-08-10 7:51 ` Emanuel Berg
2024-08-10 4:32 ` Emanuel Berg [this message]
2024-08-10 5:58 ` Eli Zaretskii
2024-08-09 14:59 ` Eduardo Ochs
2024-08-09 16:19 ` Emanuel Berg
2024-08-09 18:00 ` Eli Zaretskii
2024-08-09 18:54 ` Christopher Dimech
2024-08-09 22:17 ` Emanuel Berg
2024-08-09 22:00 ` Emanuel Berg
2024-08-09 8:24 ` Emanuel Berg
2024-08-09 10:36 ` Christopher Dimech
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87bk210zhj.fsf@dataswamp.org \
--to=incal@dataswamp.org \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.