Removed old unused source files and patches.

This commit is contained in:
Karel Klíč 2010-02-16 16:59:39 +00:00
parent 6640ce1e84
commit 9b6bf433f4
7 changed files with 0 additions and 1224 deletions

View File

@ -1,12 +0,0 @@
*** emacs-22.3/lib-src/emacsclient.c~ 2007-02-16 09:12:59.000000000 -0800
--- emacs-22.3/lib-src/emacsclient.c 2009-03-05 15:42:53.000000000 -0800
***************
*** 48,53 ****
--- 48,54 ----
# ifdef HAVE_INET_SOCKETS
# include <netinet/in.h>
+ # include <arpa/inet.h>
# endif
# define INVALID_SOCKET -1

View File

@ -1,30 +0,0 @@
description:
;;; files.el --- file input and output commands for Emacs
----------------------------
revision 1.938
date: 2007-11-02 11:03:42 +0000; author: rfrancoise; state: Exp; lines: +2 -2; commitid: wgxFxIhiWr3NtZDs;
2007-11-02 Drake Wilson <drake@begriffli.ch> (tiny change)
* files.el (hack-local-variables): Fix membership tests to avoid
treating all variables as safe if `enable-local-variables' is
set to :safe.
=============================================================================
Index: lisp/files.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/files.el,v
retrieving revision 1.937
retrieving revision 1.938
diff -u -r1.937 -r1.938
--- lisp/files.el 26 Oct 2007 14:25:17 -0000 1.937
+++ lisp/files.el 2 Nov 2007 11:03:42 -0000 1.938
@@ -2821,8 +2821,8 @@
;; If caller wants only the safe variables,
;; install only them.
(dolist (elt result)
- (unless (or (memq (car elt) unsafe-vars)
- (memq (car elt) risky-vars))
+ (unless (or (member elt unsafe-vars)
+ (member elt risky-vars))
(hack-one-local-variable (car elt) (cdr elt))))
;; Query, except in the case where all are known safe
;; if the user wants no quuery in that case.

View File

@ -1,16 +0,0 @@
;; igrep-init.el
(autoload 'igrep "igrep"
"*Run `grep` PROGRAM to match REGEX in FILES..." t)
(autoload 'igrep-find "igrep"
"*Run `grep` via `find`..." t)
(autoload 'igrep-visited-files "igrep"
"*Run `grep` ... on all visited files." t)
(autoload 'dired-do-igrep "igrep"
"*Run `grep` on the marked (or next prefix ARG) files." t)
(autoload 'dired-do-igrep-find "igrep"
"*Run `grep` via `find` on the marked (or next prefix ARG) directories." t)
(autoload 'Buffer-menu-igrep "igrep"
"*Run `grep` on the files visited in buffers marked with '>'." t)
(autoload 'igrep-insinuate "igrep"
"Define `grep' aliases for the corresponding `igrep' commands." t)

1153
igrep.el

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,3 +0,0 @@
;; setup tramp
(add-to-list 'load-path "/usr/share/emacs/site-lisp/tramp")

10
wrapper
View File

@ -1,10 +0,0 @@
#!/bin/sh
PROG_NAME=`basename $0`
for i in x nox; do
[ -x "/usr/bin/${PROG_NAME}-$i" ] && exec -a ${PROG_NAME} /usr/bin/${PROG_NAME}-$i "$@"
done
echo "Can't find $PROG_NAME" 1>&2
exit 1