Removed old unused source files and patches.
This commit is contained in:
parent
1c21195fae
commit
03069ba671
@ -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
|
|
@ -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.
|
|
@ -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)
|
|
BIN
rfc1345.el
BIN
rfc1345.el
Binary file not shown.
@ -1,3 +0,0 @@
|
|||||||
;; setup tramp
|
|
||||||
|
|
||||||
(add-to-list 'load-path "/usr/share/emacs/site-lisp/tramp")
|
|
Loading…
Reference in New Issue
Block a user