2021-03-12 11:32:42 -05:00
|
|
|
;;; makefile-edit.el --- Makefile editing/scanning commands. -*- lexical-binding: t; -*-
|
2009-09-20 15:06:05 +00:00
|
|
|
|
2023-01-01 05:31:12 -05:00
|
|
|
;; Copyright (C) 2009-2023 Free Software Foundation, Inc.
|
2009-09-20 15:06:05 +00:00
|
|
|
|
2019-05-26 00:58:28 -07:00
|
|
|
;; Author: Eric M. Ludlam <zappo@gnu.org>
|
2009-09-20 15:06:05 +00:00
|
|
|
|
|
|
|
;; 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 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2009-09-20 15:06:05 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
|
|
|
;; Utilities for editing a Makefile for EDE Makefile management commands.
|
|
|
|
;;
|
|
|
|
;; Derived from project-am.el.
|
|
|
|
;;
|
|
|
|
;; Makefile editing and scanning commands
|
|
|
|
;;
|
|
|
|
;; Formatting of a makefile
|
|
|
|
;;
|
|
|
|
;; 1) Creating an automakefile, stick in a top level comment about
|
2021-09-14 08:43:18 +02:00
|
|
|
;; being created by Emacs.
|
2009-09-20 15:06:05 +00:00
|
|
|
;; 2) Leave order of variable contents alone, except for SOURCE
|
|
|
|
;; SOURCE always keep in the order of .c, .h, the other stuff.
|
|
|
|
|
|
|
|
;;; Things to do
|
2022-11-20 12:59:39 +01:00
|
|
|
;; makefile-fill-paragraph -- refill a macro with backslashes
|
2009-09-20 15:06:05 +00:00
|
|
|
;; makefile-insert-macro -- insert "foo = "
|
|
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(defun makefile-beginning-of-command ()
|
2009-10-04 02:25:42 +00:00
|
|
|
"Move to the beginning of the current command."
|
2009-09-20 15:06:05 +00:00
|
|
|
(interactive)
|
|
|
|
(if (save-excursion
|
|
|
|
(forward-line -1)
|
|
|
|
(makefile-line-continued-p))
|
|
|
|
(forward-line -1))
|
|
|
|
(beginning-of-line)
|
|
|
|
(if (not (makefile-line-continued-p))
|
|
|
|
nil
|
|
|
|
(while (and (makefile-line-continued-p)
|
|
|
|
(not (bobp)))
|
|
|
|
(forward-line -1))
|
|
|
|
(forward-line 1)))
|
|
|
|
|
|
|
|
(defun makefile-end-of-command ()
|
2009-10-04 02:25:42 +00:00
|
|
|
"Move to the end of the current command."
|
2009-09-20 15:06:05 +00:00
|
|
|
(interactive)
|
|
|
|
(end-of-line)
|
|
|
|
(while (and (makefile-line-continued-p)
|
|
|
|
(not (eobp)))
|
|
|
|
(forward-line 1)
|
|
|
|
(end-of-line)))
|
|
|
|
|
|
|
|
(defun makefile-line-continued-p ()
|
|
|
|
"Return non-nil if the current line ends in continuation."
|
|
|
|
(save-excursion
|
|
|
|
(end-of-line)
|
|
|
|
(= (preceding-char) ?\\)))
|
|
|
|
|
2011-11-13 22:27:12 -08:00
|
|
|
;;; Programmatic editing of a Makefile
|
2009-09-20 15:06:05 +00:00
|
|
|
;;
|
|
|
|
(defun makefile-move-to-macro (macro &optional next)
|
|
|
|
"Move to the definition of MACRO. Return t if found.
|
2009-10-01 04:10:10 +00:00
|
|
|
If NEXT is non-nil, move to the next occurrence of MACRO."
|
2009-09-20 15:06:05 +00:00
|
|
|
(let ((oldpt (point)))
|
|
|
|
(when (not next) (goto-char (point-min)))
|
2020-01-16 16:08:54 -08:00
|
|
|
(if (re-search-forward (concat "^\\s-*" (regexp-quote macro) "\\s-*[+:?]?=")
|
|
|
|
nil t)
|
2009-09-20 15:06:05 +00:00
|
|
|
t
|
|
|
|
(goto-char oldpt)
|
|
|
|
nil)))
|
|
|
|
|
|
|
|
(defun makefile-navigate-macro (stop-before)
|
|
|
|
"In a list of files, move forward until STOP-BEFORE is reached.
|
|
|
|
STOP-BEFORE is a regular expression matching a file name."
|
|
|
|
(save-excursion
|
|
|
|
(makefile-beginning-of-command)
|
|
|
|
(let ((e (save-excursion
|
|
|
|
(makefile-end-of-command)
|
|
|
|
(point))))
|
|
|
|
(if (re-search-forward stop-before nil t)
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
(goto-char e)))))
|
|
|
|
|
|
|
|
(defun makefile-macro-file-list (macro)
|
|
|
|
"Return a list of all files in MACRO."
|
|
|
|
(save-excursion
|
|
|
|
(goto-char (point-min))
|
2012-10-02 02:10:29 +08:00
|
|
|
(let ((lst nil)
|
|
|
|
(case-fold-search nil))
|
2009-09-20 15:06:05 +00:00
|
|
|
(while (makefile-move-to-macro macro t)
|
|
|
|
(let ((e (save-excursion
|
|
|
|
(makefile-end-of-command)
|
|
|
|
(point))))
|
Fix regular-expression glitches and typos
Problems reported by Mattias Engdegård in:
https://lists.gnu.org/r/emacs-devel/2019-03/msg00085.html
* admin/admin.el (set-version):
* lisp/allout.el (allout-latexify-one-item):
* lisp/arc-mode.el (archive-arc-rename-entry)
(archive-rar-summarize):
* lisp/calc/calc-graph.el (calc-graph-set-styles)
(calc-graph-hide):
* lisp/calc/calc-help.el (calc-describe-key):
* lisp/calc/calc-lang.el (math-compose-tex-func, eqn):
* lisp/calc/calc.el (calcDigit-key):
* lisp/cedet/ede/makefile-edit.el (makefile-macro-file-list):
* lisp/cedet/ede/speedbar.el (ede-tag-expand):
* lisp/cedet/semantic/sb.el (semantic-sb-show-extra)
(semantic-sb-expand-group):
* lisp/comint.el (comint-substitute-in-file-name):
* lisp/dired.el (dired-actual-switches):
* lisp/emacs-lisp/chart.el (chart-rmail-from):
* lisp/emacs-lisp/eieio-opt.el (eieio-sb-expand):
* lisp/emacs-lisp/eieio-speedbar.el (eieio-speedbar-object-expand):
* lisp/emacs-lisp/rx.el (rx-not, rx-atomic-p):
* lisp/emulation/viper-ex.el (viper-get-ex-token)
(viper-get-ex-pat, ex-set-read-variable):
* lisp/epg.el (epg--status-SIG_CREATED):
* lisp/erc/erc-speedbar.el (erc-speedbar-expand-user):
(erc-speedbar-expand-channel, erc-speedbar-expand-server)
* lisp/erc/erc.el (erc-is-message-ctcp-and-not-action-p)
(erc-banlist-update):
* lisp/eshell/em-dirs.el (eshell-parse-drive-letter, eshell/pwd):
* lisp/find-dired.el (find-dired):
* lisp/frame.el (frame-set-background-mode):
* lisp/generic-x.el (apache-log-generic-mode):
* lisp/gnus/gnus-art.el (gnus-button-valid-localpart-regexp):
* lisp/gnus/gnus.el (gnus-short-group-name):
* lisp/gnus/message.el (message-mailer-swallows-blank-line):
* lisp/ibuffer.el (ibuffer-fontification-alist):
* lisp/ido.el (ido-set-matches-1):
* lisp/info-xref.el (info-xref-lock-file-p):
* lisp/info.el (Info-dir-remove-duplicates)
(Info-unescape-quotes, Info-split-parameter-string)
(Info-speedbar-expand-node):
* lisp/international/mule.el (sgml-html-meta-auto-coding-function):
* lisp/isearch.el (isearch-pre-command-hook):
* lisp/language/ethio-util.el (ethio-fidel-to-tex-buffer):
* lisp/mail/rmail.el (rmail-collect-deleted):
* lisp/mh-e/mh-alias.el (mh-alias-suggest-alias):
* lisp/mh-e/mh-comp.el (mh-forward):
* lisp/mh-e/mh-search.el (mh-index-next-folder)
(mh-index-create-imenu-index):
* lisp/mh-e/mh-xface.el (mh-picon-get-image):
* lisp/minibuffer.el (completion--embedded-envvar-re):
* lisp/net/ange-ftp.el (ange-ftp-ls-parser):
* lisp/net/goto-addr.el (goto-address-mail-regexp)
(goto-address-find-address-at-point):
* lisp/net/pop3.el (pop3-read-response, pop3-user)
(pop3-pass, pop3-apop):
* lisp/net/tramp.el (tramp-ipv6-regexp)
(tramp-replace-environment-variables):
* lisp/nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* lisp/nxml/rng-uri.el (rng-uri-escape-multibyte):
* lisp/nxml/rng-xsd.el (rng-xsd-convert-any-uri):
* lisp/obsolete/pgg.el (pgg-fetch-key):
* lisp/obsolete/vip.el (vip-get-ex-token):
* lisp/org/ob-core.el (org-babel-string-read):
* lisp/org/org-agenda.el:
(org-agenda-add-entry-to-org-agenda-diary-file):
* lisp/org/org-element.el (org-element-keyword-parser):
* lisp/org/org-list.el (org-list-indent-item-generic):
* lisp/org/org-mhe.el (org-mhe-get-message-folder-from-index):
* lisp/org/org-mobile.el (org-mobile-apply):
* lisp/org/org-mouse.el (org-mouse-context-menu):
* lisp/org/org-plot.el (org-plot/gnuplot):
* lisp/org/org-protocol.el (org-protocol-flatten-greedy):
* lisp/org/org-table.el (org-table-copy-down)
(org-table-formula-make-cmp-string)
(org-table-get-stored-formulas, org-table-recalculate)
(org-table-edit-formulas):
* lisp/org/org.el (org-translate-link-from-planner)
(org-fill-line-break-nobreak-p):
* lisp/org/ox-ascii.el (org-ascii-item):
* lisp/org/ox-latex.el (org-latex-clean-invalid-line-breaks):
* lisp/org/ox.el (org-export-expand-include-keyword):
* lisp/progmodes/ada-xref.el (ada-treat-cmd-string):
* lisp/progmodes/cfengine.el (cfengine2-font-lock-keywords):
* lisp/progmodes/cperl-mode.el (cperl-to-comment-or-eol)
(cperl-find-pods-heres, cperl-fix-line-spacing)
(cperl-have-help-regexp, cperl-word-at-point-hard)
(cperl-make-regexp-x):
* lisp/progmodes/dcl-mode.el (dcl-option-value-offset):
* lisp/progmodes/etags.el (tag-implicit-name-match-p):
* lisp/progmodes/fortran.el (fortran-fill):
* lisp/progmodes/gdb-mi.el (gdb-speedbar-expand-node)
(gdb-locals-handler-custom):
* lisp/progmodes/grep.el (grep-mode-font-lock-keywords):
* lisp/progmodes/gud.el (gud-jdb-find-source-using-classpath):
* lisp/progmodes/js.el (js--continued-expression-p):
* lisp/progmodes/m4-mode.el (m4-font-lock-keywords):
* lisp/progmodes/meta-mode.el (meta-indent-level-count):
* lisp/progmodes/mixal-mode.el (mixal-font-lock-keywords):
* lisp/progmodes/opascal.el (opascal-find-unit-in-directory):
* lisp/progmodes/pascal.el (pascal-progbeg-re):
* lisp/progmodes/ruby-mode.el (ruby-expression-expansion-re)
(ruby-expr-beg, ruby-parse-partial)
(ruby-toggle-string-quotes, ruby-font-lock-keywords):
* lisp/progmodes/sql.el (sql--make-help-docstring):
* lisp/progmodes/verilog-mode.el (verilog-coverpoint-re)
(verilog-skip-forward-comment-p)
(verilog-read-sub-decls-gate)
(verilog-read-auto-template-middle):
* lisp/progmodes/vhdl-mode.el (vhdl-resolve-env-variable)
(vhdl-speedbar-expand-project, vhdl-speedbar-expand-entity)
(vhdl-speedbar-expand-architecture)
(vhdl-speedbar-expand-config, vhdl-speedbar-expand-package)
(vhdl-speedbar-dired):
* lisp/speedbar.el (speedbar-dired, speedbar-tag-file)
(speedbar-tag-expand):
* lisp/textmodes/dns-mode.el (dns-mode-font-lock-keywords):
* lisp/textmodes/flyspell.el (flyspell-debug-signal-word-checked):
* lisp/textmodes/ispell.el (ispell-process-line):
* lisp/textmodes/reftex-cite.el (reftex-end-of-bib-entry):
* lisp/textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
* lisp/url/url-parse.el (url-generic-parse-url):
* lisp/url/url-util.el (url-truncate-url-for-viewing):
* lisp/vc/diff-mode.el (diff-unified->context):
* lisp/vc/vc-bzr.el (vc-bzr-error-regexp-alist):
* lisp/vc/vc-cvs.el (vc-cvs-parse-status):
* lisp/woman.el (woman0-el, woman-if-ignore)
(woman-change-fonts):
* lisp/xdg.el (xdg--substitute-home-env):
Fix regular-expression infelicities and typos.
Fix regular expression typos
Fix typos reported by Mattias Engdegård in:
that occurred in preloaded modules.
* lisp/frame.el (frame-set-background-mode):
* lisp/international/mule.el (sgml-html-meta-auto-coding-function):
* lisp/isearch.el (isearch-pre-command-hook):
* lisp/minibuffer.el (completion--embedded-envvar-re):
2019-03-04 18:00:00 -08:00
|
|
|
(while (re-search-forward "\\s-*\\([-a-zA-Z0-9./_@$%(){}]+\\)\\s-*" e t)
|
2009-09-20 15:06:05 +00:00
|
|
|
(let ((var nil)(varexp nil)
|
|
|
|
(match (buffer-substring-no-properties
|
|
|
|
(match-beginning 1)
|
|
|
|
(match-end 1))))
|
|
|
|
(if (not (setq var (makefile-extract-varname-from-text match)))
|
|
|
|
(setq lst (cons match lst))
|
|
|
|
(setq varexp (makefile-macro-file-list var))
|
|
|
|
(dolist (V varexp)
|
|
|
|
(setq lst (cons V lst))))))))
|
|
|
|
(nreverse lst))))
|
|
|
|
|
|
|
|
(defun makefile-extract-varname-from-text (text)
|
|
|
|
"Extract the variable name from TEXT if it is a variable reference.
|
|
|
|
Return nil if it isn't a variable."
|
|
|
|
(save-match-data
|
|
|
|
(when (string-match "\\$\\s(\\([A-Za-z0-9_]+\\)\\s)" text)
|
|
|
|
(match-string 1 text))))
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'ede/makefile-edit)
|
|
|
|
|
2009-10-02 12:52:17 +00:00
|
|
|
;;; ede/makefile-edit.el ends here
|