From 9fe325c9355fbea46e8ee5818a2bce133f08dce0 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 13 Feb 2026 23:48:32 -0500 Subject: [PATCH] ede/proj-shared.el: Remove leftover obsolete EIEIO name arguments * lisp/cedet/ede/proj-shared.el (ede-gcc-shared-compiler) (ede-gcc-libtool-shared-compiler, ede-cc-linker-libtool) (ede-g++-shared-compiler, ede-g++-libtool-shared-compiler) (ede-g++-linker-libtool): Remove obsolete name argument to `clone`. --- lisp/cedet/ede/proj-shared.el | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lisp/cedet/ede/proj-shared.el b/lisp/cedet/ede/proj-shared.el index 673192bd1a5..fdfecba15ac 100644 --- a/lisp/cedet/ede/proj-shared.el +++ b/lisp/cedet/ede/proj-shared.el @@ -52,7 +52,6 @@ Use ldlibs to add addition libraries.") (defvar ede-gcc-shared-compiler (clone ede-gcc-compiler - "ede-c-shared-compiler" :name "gcc -shared" :variables '(("CC_SHARED" . "gcc") ("C_SHARED_COMPILE" . @@ -68,7 +67,6 @@ Use ldlibs to add addition libraries.") (defvar ede-gcc-libtool-shared-compiler (clone ede-gcc-shared-compiler - "ede-c-shared-compiler-libtool" :name "libtool" :variables '(("LIBTOOL" . "libtool") ("LTCOMPILE" . "$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)") @@ -87,7 +85,6 @@ Use ldlibs to add addition libraries.") (defvar ede-cc-linker-libtool (clone ede-cc-linker - "ede-cc-linker-libtool" :name "cc shared" ;; Only use this linker when c++ exists. :sourcetype '(ede-source-c++) @@ -102,7 +99,6 @@ Use ldlibs to add addition libraries.") (defvar ede-g++-shared-compiler (clone ede-g++-compiler - "ede-c++-shared-compiler" :name "gcc -shared" :variables '(("CXX_SHARED" . "g++") ("CXX_SHARED_COMPILE" . @@ -114,7 +110,6 @@ Use ldlibs to add addition libraries.") (defvar ede-g++-libtool-shared-compiler (clone ede-g++-shared-compiler - "ede-c++-shared-compiler-libtool" :name "libtool" :variables '(("CXX" "g++") ("LIBTOOL" . "libtool") @@ -133,7 +128,6 @@ Use ldlibs to add addition libraries.") (defvar ede-g++-linker-libtool (clone ede-g++-linker - "ede-g++-linker-libtool" :name "g++" ;; Only use this linker when c++ exists. :sourcetype '(ede-source-c++)