[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Use radix-tree for string arrays
From: |
Philip Kaludercic |
Subject: |
Re: Use radix-tree for string arrays |
Date: |
Thu, 06 Jul 2023 18:50:17 +0000 |
Yuchen Pei <id@ypei.org> writes:
> On Wed 2023-07-05 16:47:38 +0000, Philip Kaludercic wrote:
>
>> Yuchen Pei <id@ypei.org> writes:
>>
>>> @@ -1,6 +1,6 @@
>>> ;;; radix-tree.el --- A simple library of radix trees -*-
>>> lexical-binding: t; -*-
>>>
>>> -;; Copyright (C) 2016-2023 Free Software Foundation, Inc.
>>> +;; Copyright (C) 2016-2022 Free Software Foundation, Inc.
>>
>> I suppose this edit was not intentional?
>
> It's not. It's because I modified emacs 28.2, the version I use, and
> diffed against master.
In that case I can recommend using copyright-update. I have this block
in my init.el:
(setopt copyright-names-regexp
(regexp-opt '("Free Software Foundation, Inc."
"<your name here>")))
(add-hook 'before-save-hook #'copyright-update)
> Best,
> Yuchen