1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Use lexical-binding in various ede files

* lisp/cedet/ede/dired.el:
* lisp/cedet/ede/emacs.el:
* lisp/cedet/ede/make.el:
* lisp/cedet/ede/proj-archive.el:
* lisp/cedet/ede/proj-aux.el:
* lisp/cedet/ede/proj-misc.el:
* lisp/cedet/ede/proj-scheme.el:
* lisp/cedet/ede/srecode.el:
* lisp/cedet/ede/system.el: Use lexical-binding.
This commit is contained in:
Stefan Kangas 2021-02-11 20:59:41 +01:00
parent a24be5ef7e
commit f29c7d61d7
9 changed files with 11 additions and 12 deletions

View file

@ -1,4 +1,4 @@
;;; ede/dired.el --- EDE extensions to dired.
;;; ede/dired.el --- EDE extensions to dired. -*- lexical-binding: t -*-
;; Copyright (C) 1998-2000, 2003, 2009-2021 Free Software Foundation,
;; Inc.

View file

@ -1,4 +1,4 @@
;;; ede/emacs.el --- Special project for Emacs
;;; ede/emacs.el --- Special project for Emacs -*- lexical-binding: t -*-
;; Copyright (C) 2008-2021 Free Software Foundation, Inc.

View file

@ -1,4 +1,4 @@
;;; ede/make.el --- General information about "make"
;;; ede/make.el --- General information about "make" -*- lexical-binding: t -*-
;;; Copyright (C) 2009-2021 Free Software Foundation, Inc.

View file

@ -1,4 +1,4 @@
;;; ede/proj-archive.el --- EDE Generic Project archive support
;;; ede/proj-archive.el --- EDE Generic Project archive support -*- lexical-binding: t -*-
;; Copyright (C) 1998-2001, 2009-2021 Free Software Foundation, Inc.
@ -45,7 +45,7 @@
"Linker object for creating an archive.")
(cl-defmethod ede-proj-makefile-insert-source-variables :before
((this ede-proj-target-makefile-archive) &optional moresource)
((this ede-proj-target-makefile-archive) &optional _moresource)
"Insert bin_PROGRAMS variables needed by target THIS.
We aren't actually inserting SOURCE details, but this is used by the
Makefile.am generator, so use it to add this important bin program."

View file

@ -1,4 +1,4 @@
;;; ede/proj-aux.el --- EDE Generic Project auxiliary file support
;;; ede/proj-aux.el --- EDE Generic Project auxiliary file support -*- lexical-binding: t -*-
;; Copyright (C) 1998-2000, 2007, 2009-2021 Free Software Foundation,
;; Inc.

View file

@ -1,4 +1,4 @@
;;; ede-proj-misc.el --- EDE Generic Project Emacs Lisp support
;;; ede-proj-misc.el --- EDE Generic Project Emacs Lisp support -*- lexical-binding: t -*-
;; Copyright (C) 1998-2001, 2008-2021 Free Software Foundation, Inc.

View file

@ -1,4 +1,4 @@
;;; ede/proj-scheme.el --- EDE Generic Project scheme (guile) support
;;; ede/proj-scheme.el --- EDE Generic Project scheme (guile) support -*- lexical-binding: t -*-
;; Copyright (C) 1998-2000, 2009-2021 Free Software Foundation, Inc.
@ -40,7 +40,7 @@
)
"This target consists of scheme files.")
(cl-defmethod ede-proj-tweak-autoconf ((this ede-proj-target-scheme))
(cl-defmethod ede-proj-tweak-autoconf ((_this ede-proj-target-scheme))
"Tweak the configure file (current buffer) to accommodate THIS."
(autoconf-insert-new-macro "AM_INIT_GUILE_MODULE"))

View file

@ -1,4 +1,4 @@
;;; ede/srecode.el --- EDE utilities on top of SRecoder
;;; ede/srecode.el --- EDE utilities on top of SRecoder -*- lexical-binding: t -*-
;; Copyright (C) 2008-2021 Free Software Foundation, Inc.
@ -86,7 +86,6 @@ Note: Just like `srecode-insert', but templates found in `ede' app."
(car (cdr dictionary-entries)))
(setq dictionary-entries
(cdr (cdr dictionary-entries))))
))
(provide 'ede/srecode)

View file

@ -1,4 +1,4 @@
;;; ede-system.el --- EDE working with the system (VC, FTP, ETC)
;;; ede-system.el --- EDE working with the system (VC, FTP, ETC) -*- lexical-binding: t -*-
;; Copyright (C) 2001-2003, 2009-2021 Free Software Foundation, Inc.