From 7bedbbc708aa3d369617881020807387e7c5b6b1 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 23 Jun 2024 17:34:38 +0200 Subject: [PATCH] Delete obsolete file process.cocci * admin/coccinelle/process.cocci: Delete file. This semantic patch was converting code to use the PVAR macro, which was removed by Paul Eggert on 2012-08-17 (commit 6a09a33b5551). --- admin/coccinelle/process.cocci | 110 --------------------------------- 1 file changed, 110 deletions(-) delete mode 100644 admin/coccinelle/process.cocci diff --git a/admin/coccinelle/process.cocci b/admin/coccinelle/process.cocci deleted file mode 100644 index bf295ab7b6f..00000000000 --- a/admin/coccinelle/process.cocci +++ /dev/null @@ -1,110 +0,0 @@ -// Change direct access to Lisp_Object fields of struct Lisp_Process to PVAR. -@@ -struct Lisp_Process *P; -Lisp_Object O; -@@ -( -- P->tty_name -+ PVAR (P, tty_name) -| -- P->name -+ PVAR (P, name) -| -- P->command -+ PVAR (P, command) -| -- P->filter -+ PVAR (P, filter) -| -- P->sentinel -+ PVAR (P, sentinel) -| -- P->log -+ PVAR (P, log) -| -- P->buffer -+ PVAR (P, buffer) -| -- P->childp -+ PVAR (P, childp) -| -- P->plist -+ PVAR (P, plist) -| -- P->type -+ PVAR (P, type) -| -- P->mark -+ PVAR (P, mark) -| -- P->status -+ PVAR (P, status) -| -- P->decode_coding_system -+ PVAR (P, decode_coding_system) -| -- P->decoding_buf -+ PVAR (P, decoding_buf) -| -- P->encode_coding_system -+ PVAR (P, encode_coding_system) -| -- P->encoding_buf -+ PVAR (P, encoding_buf) -| -- P->write_queue -+ PVAR (P, write_queue) - -| - -- XPROCESS (O)->tty_name -+ PVAR (XPROCESS (O), tty_name) -| -- XPROCESS (O)->name -+ PVAR (XPROCESS (O), name) -| -- XPROCESS (O)->command -+ PVAR (XPROCESS (O), command) -| -- XPROCESS (O)->filter -+ PVAR (XPROCESS (O), filter) -| -- XPROCESS (O)->sentinel -+ PVAR (XPROCESS (O), sentinel) -| -- XPROCESS (O)->log -+ PVAR (XPROCESS (O), log) -| -- XPROCESS (O)->buffer -+ PVAR (XPROCESS (O), buffer) -| -- XPROCESS (O)->childp -+ PVAR (XPROCESS (O), childp) -| -- XPROCESS (O)->plist -+ PVAR (XPROCESS (O), plist) -| -- XPROCESS (O)->type -+ PVAR (XPROCESS (O), type) -| -- XPROCESS (O)->mark -+ PVAR (XPROCESS (O), mark) -| -- XPROCESS (O)->status -+ PVAR (XPROCESS (O), status) -| -- XPROCESS (O)->decode_coding_system -+ PVAR (XPROCESS (O), decode_coding_system) -| -- XPROCESS (O)->decoding_buf -+ PVAR (XPROCESS (O), decoding_buf) -| -- XPROCESS (O)->encode_coding_system -+ PVAR (XPROCESS (O), encode_coding_system) -| -- XPROCESS (O)->encoding_buf -+ PVAR (XPROCESS (O), encoding_buf) -| -- XPROCESS (O)->write_queue -+ PVAR (XPROCESS (O), write_queue) -)