all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 6eabe57c7e4c64a4b08855f37d4e916d7270c28d 2130 bytes (raw)
name: admin/ldefs-clean.el 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 
;; Copyright (C) 2016-2017 Free Software Foundation, Inc.

;; 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
;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This file takes the output from the "generate-ldefs-boot" make
;; target, takes the relevant autoload forms, removes everything else
;; and adds some comments.

(defun ldefs-clean-uniquify-region-lines (beg end)
  "Remove duplicate adjacent lines in region."
  (save-excursion
    (goto-char beg)
    (while (re-search-forward "^\\(.*\n\\)\\1+" end t)
      (replace-match "\\1"))))

(defun ldefs-clean-uniquify-buffer-lines ()
  "Remove duplicate adjacent lines in the current buffer."
  (interactive)
  (ldefs-clean-uniquify-region-lines (point-min) (point-max)))

(defun ldefs-clean-up ()
  "Clean up output from build and turn it into ldefs-boot-auto.el."
  (interactive)
  (goto-char (point-max))
  ;; We only need the autoloads up till loaddefs.el is
  ;; generated. After this, ldefs-boot.el is not needed
  (search-backward "  GEN      loaddefs.el")
  (delete-region (point) (point-max))
  (keep-lines "(autoload" (point-min) (point-max))
  (sort-lines nil (point-min) (point-max))
  (ldefs-clean-uniquify-buffer-lines)
  (goto-char (point-min))
  (insert
   ";; This file is autogenerated by admin/ldefs-clean.el
;; Do not edit
")
  (goto-char (point-max))
  (insert
   ";; Local Variables:
;; no-byte-compile: t
;; no-update-autoloads: t
;; End:"))


(defun ldefs-clean ()
  (find-file "lisp/ldefs-boot-auto.temp")
  (ldefs-clean-up)
  (write-file "ldefs-boot-auto.el"))

debug log:

solving 6eabe57 ...
found 6eabe57 in https://git.savannah.gnu.org/cgit/emacs.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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.