2013-12-20 16:21:45 +00:00
|
|
|
;;; subr-x.el --- extra Lisp functions -*- lexical-binding:t -*-
|
2013-11-04 15:34:42 +00:00
|
|
|
|
2021-01-01 09:13:56 +00:00
|
|
|
;; Copyright (C) 2013-2021 Free Software Foundation, Inc.
|
2013-11-04 15:34:42 +00:00
|
|
|
|
2019-05-25 20:43:06 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
2013-11-04 15:34:42 +00:00
|
|
|
;; Keywords: convenience
|
|
|
|
;; Package: emacs
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2013-11-04 15:34:42 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2013-12-20 16:21:45 +00:00
|
|
|
;; Less commonly used functions that complement basic APIs, often implemented in
|
|
|
|
;; C code (like hash-tables and strings), and are not eligible for inclusion
|
|
|
|
;; in subr.el.
|
|
|
|
|
2014-01-20 20:05:04 +00:00
|
|
|
;; Do not document these functions in the lispref.
|
2017-11-26 06:45:41 +00:00
|
|
|
;; https://lists.gnu.org/r/emacs-devel/2014-01/msg01006.html
|
2014-01-20 20:05:04 +00:00
|
|
|
|
2017-04-18 23:07:28 +00:00
|
|
|
;; NB If you want to use this library, it's almost always correct to use:
|
|
|
|
;; (eval-when-compile (require 'subr-x))
|
|
|
|
|
2013-11-04 15:34:42 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2016-11-26 03:03:25 +00:00
|
|
|
(eval-when-compile (require 'cl-lib))
|
New if-let, when-let, thread-first and thread-last macros.
* lisp/emacs-lisp/subr-x.el
(internal--listify, internal--check-binding)
(internal--build-binding-value-form, internal--build-binding)
(internal--build-bindings): New functions.
(internal--thread-argument, thread-first, thread-last)
(if-let, when-let): New macros.
* test/automated/subr-x-tests.el
(subr-x-test-if-let-single-binding-expansion)
(subr-x-test-if-let-single-symbol-expansion)
(subr-x-test-if-let-nil-related-expansion)
(subr-x-test-if-let-malformed-binding, subr-x-test-if-let-true)
(subr-x-test-if-let-false, subr-x-test-if-let-bound-references)
(subr-x-test-if-let-and-lazyness-is-preserved)
(subr-x-test-when-let-body-expansion)
(subr-x-test-when-let-single-binding-expansion)
(subr-x-test-when-let-single-symbol-expansion)
(subr-x-test-when-let-nil-related-expansion)
(subr-x-test-when-let-malformed-binding)
(subr-x-test-when-let-true, subr-x-test-when-let-false)
(subr-x-test-when-let-bound-references)
(subr-x-test-when-let-and-lazyness-is-preserved)
(subr-x-test-thread-first-no-forms)
(subr-x-test-thread-first-function-names-are-threaded)
(subr-x-test-thread-first-expansion)
(subr-x-test-thread-last-no-forms)
(subr-x-test-thread-last-function-names-are-threaded)
(subr-x-test-thread-last-expansion): New tests.
2014-06-30 04:11:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
(defmacro internal--thread-argument (first? &rest forms)
|
|
|
|
"Internal implementation for `thread-first' and `thread-last'.
|
|
|
|
When Argument FIRST? is non-nil argument is threaded first, else
|
|
|
|
last. FORMS are the expressions to be threaded."
|
|
|
|
(pcase forms
|
|
|
|
(`(,x (,f . ,args) . ,rest)
|
|
|
|
`(internal--thread-argument
|
|
|
|
,first? ,(if first? `(,f ,x ,@args) `(,f ,@args ,x)) ,@rest))
|
|
|
|
(`(,x ,f . ,rest) `(internal--thread-argument ,first? (,f ,x) ,@rest))
|
|
|
|
(_ (car forms))))
|
|
|
|
|
|
|
|
(defmacro thread-first (&rest forms)
|
2014-09-11 19:44:25 +00:00
|
|
|
"Thread FORMS elements as the first argument of their successor.
|
New if-let, when-let, thread-first and thread-last macros.
* lisp/emacs-lisp/subr-x.el
(internal--listify, internal--check-binding)
(internal--build-binding-value-form, internal--build-binding)
(internal--build-bindings): New functions.
(internal--thread-argument, thread-first, thread-last)
(if-let, when-let): New macros.
* test/automated/subr-x-tests.el
(subr-x-test-if-let-single-binding-expansion)
(subr-x-test-if-let-single-symbol-expansion)
(subr-x-test-if-let-nil-related-expansion)
(subr-x-test-if-let-malformed-binding, subr-x-test-if-let-true)
(subr-x-test-if-let-false, subr-x-test-if-let-bound-references)
(subr-x-test-if-let-and-lazyness-is-preserved)
(subr-x-test-when-let-body-expansion)
(subr-x-test-when-let-single-binding-expansion)
(subr-x-test-when-let-single-symbol-expansion)
(subr-x-test-when-let-nil-related-expansion)
(subr-x-test-when-let-malformed-binding)
(subr-x-test-when-let-true, subr-x-test-when-let-false)
(subr-x-test-when-let-bound-references)
(subr-x-test-when-let-and-lazyness-is-preserved)
(subr-x-test-thread-first-no-forms)
(subr-x-test-thread-first-function-names-are-threaded)
(subr-x-test-thread-first-expansion)
(subr-x-test-thread-last-no-forms)
(subr-x-test-thread-last-function-names-are-threaded)
(subr-x-test-thread-last-expansion): New tests.
2014-06-30 04:11:43 +00:00
|
|
|
Example:
|
|
|
|
(thread-first
|
|
|
|
5
|
|
|
|
(+ 20)
|
|
|
|
(/ 25)
|
|
|
|
-
|
|
|
|
(+ 40))
|
|
|
|
Is equivalent to:
|
|
|
|
(+ (- (/ (+ 5 20) 25)) 40)
|
|
|
|
Note how the single `-' got converted into a list before
|
|
|
|
threading."
|
|
|
|
(declare (indent 1)
|
|
|
|
(debug (form &rest [&or symbolp (sexp &rest form)])))
|
|
|
|
`(internal--thread-argument t ,@forms))
|
|
|
|
|
|
|
|
(defmacro thread-last (&rest forms)
|
2014-09-11 19:44:25 +00:00
|
|
|
"Thread FORMS elements as the last argument of their successor.
|
New if-let, when-let, thread-first and thread-last macros.
* lisp/emacs-lisp/subr-x.el
(internal--listify, internal--check-binding)
(internal--build-binding-value-form, internal--build-binding)
(internal--build-bindings): New functions.
(internal--thread-argument, thread-first, thread-last)
(if-let, when-let): New macros.
* test/automated/subr-x-tests.el
(subr-x-test-if-let-single-binding-expansion)
(subr-x-test-if-let-single-symbol-expansion)
(subr-x-test-if-let-nil-related-expansion)
(subr-x-test-if-let-malformed-binding, subr-x-test-if-let-true)
(subr-x-test-if-let-false, subr-x-test-if-let-bound-references)
(subr-x-test-if-let-and-lazyness-is-preserved)
(subr-x-test-when-let-body-expansion)
(subr-x-test-when-let-single-binding-expansion)
(subr-x-test-when-let-single-symbol-expansion)
(subr-x-test-when-let-nil-related-expansion)
(subr-x-test-when-let-malformed-binding)
(subr-x-test-when-let-true, subr-x-test-when-let-false)
(subr-x-test-when-let-bound-references)
(subr-x-test-when-let-and-lazyness-is-preserved)
(subr-x-test-thread-first-no-forms)
(subr-x-test-thread-first-function-names-are-threaded)
(subr-x-test-thread-first-expansion)
(subr-x-test-thread-last-no-forms)
(subr-x-test-thread-last-function-names-are-threaded)
(subr-x-test-thread-last-expansion): New tests.
2014-06-30 04:11:43 +00:00
|
|
|
Example:
|
|
|
|
(thread-last
|
|
|
|
5
|
|
|
|
(+ 20)
|
|
|
|
(/ 25)
|
|
|
|
-
|
|
|
|
(+ 40))
|
|
|
|
Is equivalent to:
|
|
|
|
(+ 40 (- (/ 25 (+ 20 5))))
|
|
|
|
Note how the single `-' got converted into a list before
|
|
|
|
threading."
|
|
|
|
(declare (indent 1) (debug thread-first))
|
|
|
|
`(internal--thread-argument nil ,@forms))
|
|
|
|
|
|
|
|
(defsubst internal--listify (elt)
|
2017-09-12 16:44:45 +00:00
|
|
|
"Wrap ELT in a list if it is not one.
|
|
|
|
If ELT is of the form ((EXPR)), listify (EXPR) with a dummy symbol."
|
|
|
|
(cond
|
|
|
|
((symbolp elt) (list elt elt))
|
2017-09-13 14:19:59 +00:00
|
|
|
((null (cdr elt))
|
2017-09-12 16:44:45 +00:00
|
|
|
(list (make-symbol "s") (car elt)))
|
|
|
|
(t elt)))
|
New if-let, when-let, thread-first and thread-last macros.
* lisp/emacs-lisp/subr-x.el
(internal--listify, internal--check-binding)
(internal--build-binding-value-form, internal--build-binding)
(internal--build-bindings): New functions.
(internal--thread-argument, thread-first, thread-last)
(if-let, when-let): New macros.
* test/automated/subr-x-tests.el
(subr-x-test-if-let-single-binding-expansion)
(subr-x-test-if-let-single-symbol-expansion)
(subr-x-test-if-let-nil-related-expansion)
(subr-x-test-if-let-malformed-binding, subr-x-test-if-let-true)
(subr-x-test-if-let-false, subr-x-test-if-let-bound-references)
(subr-x-test-if-let-and-lazyness-is-preserved)
(subr-x-test-when-let-body-expansion)
(subr-x-test-when-let-single-binding-expansion)
(subr-x-test-when-let-single-symbol-expansion)
(subr-x-test-when-let-nil-related-expansion)
(subr-x-test-when-let-malformed-binding)
(subr-x-test-when-let-true, subr-x-test-when-let-false)
(subr-x-test-when-let-bound-references)
(subr-x-test-when-let-and-lazyness-is-preserved)
(subr-x-test-thread-first-no-forms)
(subr-x-test-thread-first-function-names-are-threaded)
(subr-x-test-thread-first-expansion)
(subr-x-test-thread-last-no-forms)
(subr-x-test-thread-last-function-names-are-threaded)
(subr-x-test-thread-last-expansion): New tests.
2014-06-30 04:11:43 +00:00
|
|
|
|
|
|
|
(defsubst internal--check-binding (binding)
|
|
|
|
"Check BINDING is properly formed."
|
|
|
|
(when (> (length binding) 2)
|
|
|
|
(signal
|
|
|
|
'error
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
(cons "`let' bindings can have only one value-form" binding)))
|
New if-let, when-let, thread-first and thread-last macros.
* lisp/emacs-lisp/subr-x.el
(internal--listify, internal--check-binding)
(internal--build-binding-value-form, internal--build-binding)
(internal--build-bindings): New functions.
(internal--thread-argument, thread-first, thread-last)
(if-let, when-let): New macros.
* test/automated/subr-x-tests.el
(subr-x-test-if-let-single-binding-expansion)
(subr-x-test-if-let-single-symbol-expansion)
(subr-x-test-if-let-nil-related-expansion)
(subr-x-test-if-let-malformed-binding, subr-x-test-if-let-true)
(subr-x-test-if-let-false, subr-x-test-if-let-bound-references)
(subr-x-test-if-let-and-lazyness-is-preserved)
(subr-x-test-when-let-body-expansion)
(subr-x-test-when-let-single-binding-expansion)
(subr-x-test-when-let-single-symbol-expansion)
(subr-x-test-when-let-nil-related-expansion)
(subr-x-test-when-let-malformed-binding)
(subr-x-test-when-let-true, subr-x-test-when-let-false)
(subr-x-test-when-let-bound-references)
(subr-x-test-when-let-and-lazyness-is-preserved)
(subr-x-test-thread-first-no-forms)
(subr-x-test-thread-first-function-names-are-threaded)
(subr-x-test-thread-first-expansion)
(subr-x-test-thread-last-no-forms)
(subr-x-test-thread-last-function-names-are-threaded)
(subr-x-test-thread-last-expansion): New tests.
2014-06-30 04:11:43 +00:00
|
|
|
binding)
|
|
|
|
|
|
|
|
(defsubst internal--build-binding-value-form (binding prev-var)
|
|
|
|
"Build the conditional value form for BINDING using PREV-VAR."
|
2017-09-12 16:44:45 +00:00
|
|
|
(let ((var (car binding)))
|
2017-09-13 14:19:59 +00:00
|
|
|
`(,var (and ,prev-var ,(cadr binding)))))
|
New if-let, when-let, thread-first and thread-last macros.
* lisp/emacs-lisp/subr-x.el
(internal--listify, internal--check-binding)
(internal--build-binding-value-form, internal--build-binding)
(internal--build-bindings): New functions.
(internal--thread-argument, thread-first, thread-last)
(if-let, when-let): New macros.
* test/automated/subr-x-tests.el
(subr-x-test-if-let-single-binding-expansion)
(subr-x-test-if-let-single-symbol-expansion)
(subr-x-test-if-let-nil-related-expansion)
(subr-x-test-if-let-malformed-binding, subr-x-test-if-let-true)
(subr-x-test-if-let-false, subr-x-test-if-let-bound-references)
(subr-x-test-if-let-and-lazyness-is-preserved)
(subr-x-test-when-let-body-expansion)
(subr-x-test-when-let-single-binding-expansion)
(subr-x-test-when-let-single-symbol-expansion)
(subr-x-test-when-let-nil-related-expansion)
(subr-x-test-when-let-malformed-binding)
(subr-x-test-when-let-true, subr-x-test-when-let-false)
(subr-x-test-when-let-bound-references)
(subr-x-test-when-let-and-lazyness-is-preserved)
(subr-x-test-thread-first-no-forms)
(subr-x-test-thread-first-function-names-are-threaded)
(subr-x-test-thread-first-expansion)
(subr-x-test-thread-last-no-forms)
(subr-x-test-thread-last-function-names-are-threaded)
(subr-x-test-thread-last-expansion): New tests.
2014-06-30 04:11:43 +00:00
|
|
|
|
|
|
|
(defun internal--build-binding (binding prev-var)
|
|
|
|
"Check and build a single BINDING with PREV-VAR."
|
|
|
|
(thread-first
|
|
|
|
binding
|
|
|
|
internal--listify
|
|
|
|
internal--check-binding
|
|
|
|
(internal--build-binding-value-form prev-var)))
|
|
|
|
|
|
|
|
(defun internal--build-bindings (bindings)
|
|
|
|
"Check and build conditional value forms for BINDINGS."
|
|
|
|
(let ((prev-var t))
|
|
|
|
(mapcar (lambda (binding)
|
|
|
|
(let ((binding (internal--build-binding binding prev-var)))
|
|
|
|
(setq prev-var (car binding))
|
|
|
|
binding))
|
|
|
|
bindings)))
|
|
|
|
|
2018-03-06 17:28:51 +00:00
|
|
|
(defmacro if-let* (varlist then &rest else)
|
2018-12-02 01:21:29 +00:00
|
|
|
"Bind variables according to VARLIST and evaluate THEN or ELSE.
|
2018-03-10 15:39:41 +00:00
|
|
|
This is like `if-let' but doesn't handle a VARLIST of the form
|
|
|
|
\(SYMBOL SOMETHING) specially."
|
2015-05-07 20:13:29 +00:00
|
|
|
(declare (indent 2)
|
2018-03-06 17:28:51 +00:00
|
|
|
(debug ((&rest [&or symbolp (symbolp form) (form)])
|
2021-05-22 14:21:59 +00:00
|
|
|
body)))
|
2017-09-12 16:44:45 +00:00
|
|
|
(if varlist
|
|
|
|
`(let* ,(setq varlist (internal--build-bindings varlist))
|
|
|
|
(if ,(caar (last varlist))
|
|
|
|
,then
|
|
|
|
,@else))
|
2017-09-13 17:25:41 +00:00
|
|
|
`(let* () ,then)))
|
2017-09-12 16:44:45 +00:00
|
|
|
|
2018-03-06 17:28:51 +00:00
|
|
|
(defmacro when-let* (varlist &rest body)
|
2018-12-02 01:21:29 +00:00
|
|
|
"Bind variables according to VARLIST and conditionally evaluate BODY.
|
2018-03-10 15:39:41 +00:00
|
|
|
This is like `when-let' but doesn't handle a VARLIST of the form
|
|
|
|
\(SYMBOL SOMETHING) specially."
|
2021-05-22 14:21:59 +00:00
|
|
|
(declare (indent 1) (debug if-let*))
|
2018-03-06 17:28:51 +00:00
|
|
|
(list 'if-let* varlist (macroexp-progn body)))
|
New if-let, when-let, thread-first and thread-last macros.
* lisp/emacs-lisp/subr-x.el
(internal--listify, internal--check-binding)
(internal--build-binding-value-form, internal--build-binding)
(internal--build-bindings): New functions.
(internal--thread-argument, thread-first, thread-last)
(if-let, when-let): New macros.
* test/automated/subr-x-tests.el
(subr-x-test-if-let-single-binding-expansion)
(subr-x-test-if-let-single-symbol-expansion)
(subr-x-test-if-let-nil-related-expansion)
(subr-x-test-if-let-malformed-binding, subr-x-test-if-let-true)
(subr-x-test-if-let-false, subr-x-test-if-let-bound-references)
(subr-x-test-if-let-and-lazyness-is-preserved)
(subr-x-test-when-let-body-expansion)
(subr-x-test-when-let-single-binding-expansion)
(subr-x-test-when-let-single-symbol-expansion)
(subr-x-test-when-let-nil-related-expansion)
(subr-x-test-when-let-malformed-binding)
(subr-x-test-when-let-true, subr-x-test-when-let-false)
(subr-x-test-when-let-bound-references)
(subr-x-test-when-let-and-lazyness-is-preserved)
(subr-x-test-thread-first-no-forms)
(subr-x-test-thread-first-function-names-are-threaded)
(subr-x-test-thread-first-expansion)
(subr-x-test-thread-last-no-forms)
(subr-x-test-thread-last-function-names-are-threaded)
(subr-x-test-thread-last-expansion): New tests.
2014-06-30 04:11:43 +00:00
|
|
|
|
2018-03-06 17:28:51 +00:00
|
|
|
(defmacro and-let* (varlist &rest body)
|
2018-12-02 01:21:29 +00:00
|
|
|
"Bind variables according to VARLIST and conditionally evaluate BODY.
|
2018-03-06 17:28:51 +00:00
|
|
|
Like `when-let*', except if BODY is empty and all the bindings
|
2017-09-12 16:44:45 +00:00
|
|
|
are non-nil, then the result is non-nil."
|
2021-05-22 14:21:59 +00:00
|
|
|
(declare (indent 1) (debug if-let*))
|
2017-09-12 16:44:45 +00:00
|
|
|
(let (res)
|
|
|
|
(if varlist
|
|
|
|
`(let* ,(setq varlist (internal--build-bindings varlist))
|
2018-06-19 01:27:26 +00:00
|
|
|
(when ,(setq res (caar (last varlist)))
|
|
|
|
,@(or body `(,res))))
|
2017-09-12 16:44:45 +00:00
|
|
|
`(let* () ,@(or body '(t))))))
|
|
|
|
|
2020-09-30 01:47:47 +00:00
|
|
|
;;;###autoload
|
2018-03-06 17:28:51 +00:00
|
|
|
(defmacro if-let (spec then &rest else)
|
2018-12-02 01:21:29 +00:00
|
|
|
"Bind variables according to SPEC and evaluate THEN or ELSE.
|
2019-06-23 20:55:40 +00:00
|
|
|
Evaluate each binding in turn, as in `let*', stopping if a
|
|
|
|
binding value is nil. If all are non-nil return the value of
|
|
|
|
THEN, otherwise the last form in ELSE.
|
2018-03-10 15:39:41 +00:00
|
|
|
|
2018-12-02 01:21:29 +00:00
|
|
|
Each element of SPEC is a list (SYMBOL VALUEFORM) that binds
|
2018-03-10 15:39:41 +00:00
|
|
|
SYMBOL to the value of VALUEFORM. An element can additionally be
|
|
|
|
of the form (VALUEFORM), which is evaluated and checked for nil;
|
|
|
|
i.e. SYMBOL can be omitted if only the test result is of
|
|
|
|
interest. It can also be of the form SYMBOL, then the binding of
|
|
|
|
SYMBOL is checked for nil.
|
|
|
|
|
2018-12-02 01:21:29 +00:00
|
|
|
As a special case, interprets a SPEC of the form \(SYMBOL SOMETHING)
|
|
|
|
like \((SYMBOL SOMETHING)). This exists for backward compatibility
|
|
|
|
with an old syntax that accepted only one binding."
|
2018-03-06 17:28:51 +00:00
|
|
|
(declare (indent 2)
|
2021-05-18 07:25:54 +00:00
|
|
|
(debug ([&or (symbolp form) ; must be first, Bug#48489
|
|
|
|
(&rest [&or symbolp (symbolp form) (form)])]
|
2021-05-22 14:21:59 +00:00
|
|
|
body)))
|
2018-03-06 17:28:51 +00:00
|
|
|
(when (and (<= (length spec) 2)
|
|
|
|
(not (listp (car spec))))
|
|
|
|
;; Adjust the single binding case
|
|
|
|
(setq spec (list spec)))
|
|
|
|
(list 'if-let* spec then (macroexp-progn else)))
|
|
|
|
|
2019-09-20 22:45:34 +00:00
|
|
|
;;;###autoload
|
2018-03-06 17:28:51 +00:00
|
|
|
(defmacro when-let (spec &rest body)
|
2018-12-02 01:21:29 +00:00
|
|
|
"Bind variables according to SPEC and conditionally evaluate BODY.
|
|
|
|
Evaluate each binding in turn, stopping if a binding value is nil.
|
|
|
|
If all are non-nil, return the value of the last form in BODY.
|
2018-03-10 15:39:41 +00:00
|
|
|
|
|
|
|
The variable list SPEC is the same as in `if-let'."
|
2021-05-22 14:21:59 +00:00
|
|
|
(declare (indent 1) (debug if-let))
|
2018-03-06 17:28:51 +00:00
|
|
|
(list 'if-let spec (macroexp-progn body)))
|
2017-02-04 02:42:42 +00:00
|
|
|
|
2015-05-20 15:50:38 +00:00
|
|
|
(defsubst hash-table-empty-p (hash-table)
|
|
|
|
"Check whether HASH-TABLE is empty (has 0 elements)."
|
|
|
|
(zerop (hash-table-count hash-table)))
|
2015-05-20 15:49:20 +00:00
|
|
|
|
2013-11-04 15:34:42 +00:00
|
|
|
(defsubst hash-table-keys (hash-table)
|
|
|
|
"Return a list of keys in HASH-TABLE."
|
2016-11-26 03:03:25 +00:00
|
|
|
(cl-loop for k being the hash-keys of hash-table collect k))
|
2013-11-04 15:34:42 +00:00
|
|
|
|
|
|
|
(defsubst hash-table-values (hash-table)
|
|
|
|
"Return a list of values in HASH-TABLE."
|
2016-11-26 03:03:25 +00:00
|
|
|
(cl-loop for v being the hash-values of hash-table collect v))
|
2013-11-04 15:34:42 +00:00
|
|
|
|
2013-11-29 16:51:44 +00:00
|
|
|
(defsubst string-empty-p (string)
|
|
|
|
"Check whether STRING is empty."
|
|
|
|
(string= string ""))
|
|
|
|
|
2013-11-25 19:04:50 +00:00
|
|
|
(defsubst string-join (strings &optional separator)
|
|
|
|
"Join all STRINGS using SEPARATOR."
|
2018-06-01 20:58:10 +00:00
|
|
|
(mapconcat #'identity strings separator))
|
2013-11-25 19:04:50 +00:00
|
|
|
|
2014-09-29 18:14:08 +00:00
|
|
|
(define-obsolete-function-alias 'string-reverse 'reverse "25.1")
|
2013-11-26 15:24:10 +00:00
|
|
|
|
2020-03-07 17:26:44 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun string-truncate-left (string length)
|
|
|
|
"Truncate STRING to LENGTH, replacing initial surplus with \"...\"."
|
|
|
|
(let ((strlen (length string)))
|
|
|
|
(if (<= strlen length)
|
|
|
|
string
|
|
|
|
(setq length (max 0 (- length 3)))
|
|
|
|
(concat "..." (substring string (max 0 (- strlen 1 length)))))))
|
|
|
|
|
2013-11-29 16:51:44 +00:00
|
|
|
(defsubst string-blank-p (string)
|
2019-09-01 12:26:18 +00:00
|
|
|
"Check whether STRING is either empty or only whitespace.
|
|
|
|
The following characters count as whitespace here: space, tab, newline and
|
|
|
|
carriage return."
|
2013-12-07 18:46:03 +00:00
|
|
|
(string-match-p "\\`[ \t\n\r]*\\'" string))
|
2013-11-29 16:51:44 +00:00
|
|
|
|
2013-12-20 16:37:10 +00:00
|
|
|
(defsubst string-remove-prefix (prefix string)
|
|
|
|
"Remove PREFIX from STRING if present."
|
|
|
|
(if (string-prefix-p prefix string)
|
|
|
|
(substring string (length prefix))
|
|
|
|
string))
|
|
|
|
|
|
|
|
(defsubst string-remove-suffix (suffix string)
|
|
|
|
"Remove SUFFIX from STRING if present."
|
|
|
|
(if (string-suffix-p suffix string)
|
|
|
|
(substring string 0 (- (length string) (length suffix)))
|
|
|
|
string))
|
|
|
|
|
2020-12-21 17:53:32 +00:00
|
|
|
(defun string-clean-whitespace (string)
|
|
|
|
"Clean up whitespace in STRING.
|
|
|
|
All sequences of whitespaces in STRING are collapsed into a
|
|
|
|
single space character, and leading/trailing whitespace is
|
|
|
|
removed."
|
2020-12-22 03:24:25 +00:00
|
|
|
(let ((blank "[[:blank:]\r\n]+"))
|
2020-12-21 22:34:33 +00:00
|
|
|
(string-trim (replace-regexp-in-string blank " " string t t)
|
2020-12-21 21:41:37 +00:00
|
|
|
blank blank)))
|
2020-12-21 17:53:32 +00:00
|
|
|
|
|
|
|
(defun string-fill (string length)
|
|
|
|
"Try to word-wrap STRING so that no lines are longer than LENGTH.
|
|
|
|
Wrapping is done where there is whitespace. If there are
|
|
|
|
individual words in STRING that are longer than LENGTH, the
|
|
|
|
result will have lines that are longer than LENGTH."
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert string)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(let ((fill-column length)
|
|
|
|
(adaptive-fill-mode nil))
|
|
|
|
(fill-region (point-min) (point-max)))
|
|
|
|
(buffer-string)))
|
|
|
|
|
2020-12-25 04:58:09 +00:00
|
|
|
(defun string-limit (string length &optional end coding-system)
|
2020-12-21 17:53:32 +00:00
|
|
|
"Return (up to) a LENGTH substring of STRING.
|
2020-12-21 20:40:12 +00:00
|
|
|
If STRING is shorter than or equal to LENGTH, the entire string
|
2020-12-22 05:54:32 +00:00
|
|
|
is returned unchanged.
|
|
|
|
|
|
|
|
If STRING is longer than LENGTH, return a substring consisting of
|
|
|
|
the first LENGTH characters of STRING. If END is non-nil, return
|
2020-12-23 06:59:24 +00:00
|
|
|
the last LENGTH characters instead.
|
|
|
|
|
2020-12-25 04:58:09 +00:00
|
|
|
If CODING-SYSTEM is non-nil, STRING will be encoded before
|
|
|
|
limiting, and LENGTH is interpreted as the number of bytes to
|
|
|
|
limit the string to. The result will be a unibyte string that is
|
|
|
|
shorter than LENGTH, but will not contain \"partial\" characters,
|
|
|
|
even if CODING-SYSTEM encodes characters with several bytes per
|
|
|
|
character.
|
|
|
|
|
2020-12-23 06:59:24 +00:00
|
|
|
When shortening strings for display purposes,
|
|
|
|
`truncate-string-to-width' is almost always a better alternative
|
|
|
|
than this function."
|
2020-12-22 05:54:32 +00:00
|
|
|
(unless (natnump length)
|
|
|
|
(signal 'wrong-type-argument (list 'natnump length)))
|
2020-12-25 04:58:09 +00:00
|
|
|
(if coding-system
|
|
|
|
(let ((result nil)
|
|
|
|
(result-length 0)
|
|
|
|
(index (if end (1- (length string)) 0)))
|
2021-05-12 13:41:03 +00:00
|
|
|
;; FIXME: This implementation, which uses encode-coding-char
|
|
|
|
;; to encode the string one character at a time, is in general
|
|
|
|
;; incorrect: coding-systems that produce prefix or suffix
|
|
|
|
;; bytes, such as ISO-2022-based or UTF-8/16 with BOM, will
|
|
|
|
;; produce those bytes for each character, instead of just
|
|
|
|
;; once for the entire string. encode-coding-char attempts to
|
|
|
|
;; remove those extra bytes at least in some situations, but
|
|
|
|
;; it cannot do that in all cases. And in any case, producing
|
|
|
|
;; what is supposed to be a UTF-16 or ISO-2022-CN encoded
|
|
|
|
;; string which lacks the BOM bytes at the beginning and the
|
|
|
|
;; charset designation sequences at the head and tail of the
|
|
|
|
;; result will definitely surprise the callers in some cases.
|
2020-12-25 04:58:09 +00:00
|
|
|
(while (let ((encoded (encode-coding-char
|
|
|
|
(aref string index) coding-system)))
|
|
|
|
(and (<= (+ (length encoded) result-length) length)
|
|
|
|
(progn
|
|
|
|
(push encoded result)
|
|
|
|
(cl-incf result-length (length encoded))
|
|
|
|
(setq index (if end (1- index)
|
|
|
|
(1+ index))))
|
|
|
|
(if end (> index -1)
|
|
|
|
(< index (length string)))))
|
|
|
|
;; No body.
|
|
|
|
)
|
|
|
|
(apply #'concat (if end result (nreverse result))))
|
|
|
|
(cond
|
|
|
|
((<= (length string) length) string)
|
|
|
|
(end (substring string (- (length string) length)))
|
|
|
|
(t (substring string 0 length)))))
|
2020-12-21 17:53:32 +00:00
|
|
|
|
|
|
|
(defun string-lines (string &optional omit-nulls)
|
|
|
|
"Split STRING into a list of lines.
|
|
|
|
If OMIT-NULLS, empty lines will be removed from the results."
|
|
|
|
(split-string string "\n" omit-nulls))
|
|
|
|
|
2020-12-22 05:59:25 +00:00
|
|
|
(defun string-pad (string length &optional padding start)
|
2020-12-21 19:01:28 +00:00
|
|
|
"Pad STRING to LENGTH using PADDING.
|
|
|
|
If PADDING is nil, the space character is used. If not nil, it
|
|
|
|
should be a character.
|
|
|
|
|
|
|
|
If STRING is longer than the absolute value of LENGTH, no padding
|
|
|
|
is done.
|
|
|
|
|
2020-12-22 05:59:25 +00:00
|
|
|
If START is nil (or not present), the padding is done to the end
|
2020-12-22 09:01:47 +00:00
|
|
|
of the string, and if non-nil, padding is done to the start of
|
|
|
|
the string."
|
2020-12-22 05:59:25 +00:00
|
|
|
(unless (natnump length)
|
|
|
|
(signal 'wrong-type-argument (list 'natnump length)))
|
|
|
|
(let ((pad-length (- length (length string))))
|
2020-12-21 20:40:12 +00:00
|
|
|
(if (< pad-length 0)
|
|
|
|
string
|
2020-12-22 05:59:25 +00:00
|
|
|
(concat (and start
|
2020-12-21 19:01:28 +00:00
|
|
|
(make-string pad-length (or padding ?\s)))
|
|
|
|
string
|
2020-12-22 05:59:25 +00:00
|
|
|
(and (not start)
|
2020-12-21 19:01:28 +00:00
|
|
|
(make-string pad-length (or padding ?\s)))))))
|
|
|
|
|
2020-12-21 21:05:37 +00:00
|
|
|
(defun string-chop-newline (string)
|
|
|
|
"Remove the final newline (if any) from STRING."
|
2020-12-21 22:18:05 +00:00
|
|
|
(string-remove-suffix "\n" string))
|
2020-12-21 21:05:37 +00:00
|
|
|
|
2019-02-23 20:18:36 +00:00
|
|
|
(defun replace-region-contents (beg end replace-fn
|
|
|
|
&optional max-secs max-costs)
|
|
|
|
"Replace the region between BEG and END using REPLACE-FN.
|
|
|
|
REPLACE-FN runs on the current buffer narrowed to the region. It
|
|
|
|
should return either a string or a buffer replacing the region.
|
|
|
|
|
|
|
|
The replacement is performed using `replace-buffer-contents'
|
|
|
|
which also describes the MAX-SECS and MAX-COSTS arguments and the
|
|
|
|
return value.
|
|
|
|
|
|
|
|
Note: If the replacement is a string, it'll be placed in a
|
|
|
|
temporary buffer so that `replace-buffer-contents' can operate on
|
|
|
|
it. Therefore, if you already have the replacement in a buffer,
|
|
|
|
it makes no sense to convert it to a string using
|
|
|
|
`buffer-substring' or similar."
|
|
|
|
(save-excursion
|
|
|
|
(save-restriction
|
|
|
|
(narrow-to-region beg end)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(let ((repl (funcall replace-fn)))
|
|
|
|
(if (bufferp repl)
|
|
|
|
(replace-buffer-contents repl max-secs max-costs)
|
|
|
|
(let ((source-buffer (current-buffer)))
|
|
|
|
(with-temp-buffer
|
|
|
|
(insert repl)
|
|
|
|
(let ((tmp-buffer (current-buffer)))
|
|
|
|
(set-buffer source-buffer)
|
|
|
|
(replace-buffer-contents tmp-buffer max-secs max-costs)))))))))
|
|
|
|
|
2021-01-20 19:12:50 +00:00
|
|
|
(defmacro named-let (name bindings &rest body)
|
|
|
|
"Looping construct taken from Scheme.
|
|
|
|
Like `let', bind variables in BINDINGS and then evaluate BODY,
|
|
|
|
but with the twist that BODY can evaluate itself recursively by
|
|
|
|
calling NAME, where the arguments passed to NAME are used
|
|
|
|
as the new values of the bound variables in the recursive invocation."
|
|
|
|
(declare (indent 2) (debug (symbolp (&rest (symbolp form)) body)))
|
|
|
|
(require 'cl-lib)
|
|
|
|
(let ((fargs (mapcar (lambda (b) (if (consp b) (car b) b)) bindings))
|
|
|
|
(aargs (mapcar (lambda (b) (if (consp b) (cadr b))) bindings)))
|
|
|
|
;; According to the Scheme semantics of named let, `name' is not in scope
|
|
|
|
;; while evaluating the expressions in `bindings', and for this reason, the
|
|
|
|
;; "initial" function call below needs to be outside of the `cl-labels'.
|
|
|
|
;; When the "self-tco" eliminates all recursive calls, the `cl-labels'
|
|
|
|
;; expands to a lambda which the byte-compiler then combines with the
|
|
|
|
;; funcall to make a `let' so we end up with a plain `while' loop and no
|
|
|
|
;; remaining `lambda' at all.
|
|
|
|
`(funcall
|
|
|
|
(cl-labels ((,name ,fargs . ,body)) #',name)
|
|
|
|
. ,aargs)))
|
|
|
|
|
|
|
|
|
2013-12-20 16:21:45 +00:00
|
|
|
(provide 'subr-x)
|
2013-11-04 15:34:42 +00:00
|
|
|
|
2013-12-20 16:21:45 +00:00
|
|
|
;;; subr-x.el ends here
|