? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /usr/share/emacs/24.3/lisp/

Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Upload File :
Current File : //usr/share/emacs/24.3/lisp/dnd.elc

;ELC
;;; Compiled by mockbuild@buildfarm06-new.corp.cloudlinux.com on Fri Oct 11 10:12:51 2024
;;; from file /builddir/build/BUILD/emacs-24.3/lisp/dnd.el
;;; in Emacs version 24.3
;;; with all optimizations.

;;; This file uses dynamic docstrings, first added in Emacs 19.29.

;;; This file does not contain utf-8 non-ASCII characters,
;;; and so can be loaded in Emacs versions earlier than 23.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


(byte-code "\300\301\302\303\304\305\306\307\310\311&	\210\300\312\313\314\304\305\306\315\310\311&	\210\300\316\317\320\304\305\306\321\310\311&	\207" [custom-declare-variable dnd-protocol-alist `((,(purecopy "^file:///") . dnd-open-local-file) (,(purecopy "^file://") . dnd-open-file) (,(purecopy "^file:") . dnd-open-local-file) (,(purecopy "^\\(https?\\|ftp\\|file\\|nfs\\)://") . dnd-open-file)) "The functions to call for different protocols when a drop is made.\nThis variable is used by `dnd-handle-one-url' and `dnd-handle-file-name'.\nThe list contains of (REGEXP . FUNCTION) pairs.\nThe functions shall take two arguments, URL, which is the URL dropped and\nACTION which is the action to be performed for the drop (move, copy, link,\nprivate or ask).\nIf no match is found here, and the value of `browse-url-browser-function'\nis a pair of (REGEXP . FUNCTION), those regexps are tried for a match.\nIf no match is found, the URL is inserted as text by calling `dnd-insert-text'.\nThe function shall return the action done (move, copy, link or private)\nif some action was made, or nil if the URL is ignored." :version "22.1" :type (repeat (cons (regexp) (function))) :group dnd dnd-open-remote-file-function (if (eq system-type 'windows-nt) 'dnd-open-local-file 'dnd-open-remote-url) "The function to call when opening a file on a remote machine.\nThe function will be called with two arguments; URI and ACTION. See\n`dnd-open-file' for details.\nIf nil, then dragging remote files into Emacs will result in an error.\nPredefined functions are `dnd-open-local-file' and `dnd-open-remote-url'.\n`dnd-open-local-file' attempts to open a remote file using its UNC name and\nis the  default on MS-Windows.  `dnd-open-remote-url' uses `url-handler-mode'\nand is the default except for MS-Windows." function dnd-open-file-other-window nil "If non-nil, always use find-file-other-window to open dropped files." boolean] 10)
#@437 Handle one dropped url by calling the appropriate handler.
The handler is first located by looking at `dnd-protocol-alist'.
If no match is found here, and the value of `browse-url-browser-function'
is a pair of (REGEXP . FUNCTION), those regexps are tried for a match.
If no match is found, just call `dnd-insert-text'.
WINDOW is where the drop happened, ACTION is the action for the drop,
URL is what has been dropped.
Returns ACTION.
(defalias 'dnd-handle-one-url #[(window action url) "\305\306!\210\307\310\311\215\204 \312	!\204\310\313\215\204 \314\n\f#\210\315)\207" [ret browse-url-browser-function window action url require browse-url nil done (byte-code "\306\211\203%\n@\307	@\"\203	A\f\"\310\311\312\"\210\nA\211\204*\306\207" [dnd-protocol-alist bf --dolist-tail-- url action ret nil string-match throw done t] 4) functionp (byte-code "\306\211\203'\n@\307	@\"\203 \310	A
\"\210\311\312\313\"\210\nA\211\204*\306\207" [browse-url-browser-function bf --dolist-tail-- url ret action nil string-match private throw done t] 4) dnd-insert-text private] 4 (#$ . 2473)])
#@107 Return an uri converted to file:/// syntax if uri is a local file.
Return nil if URI is not a local file.
(defalias 'dnd-get-local-file-uri #[(uri) "\304\305\"\205\f\306\307\"\227\304\310	\"\203\306\311	\"\202	\227\211\205>\312\230\2045	\227\230\2045\n\230\205>\313\314G\\\315OP*\207" [uri system-name system-name-no-dot hostname string-match "^file://\\([^/]*\\)" match-string 1 "^[^\\.]+" 0 "localhost" "file://" 7 nil] 5 (#$ . 3590)])
(defalias 'dnd-unescape-uri #[(uri) "\301\302\303\304\211%\207" [uri replace-regexp-in-string "%[A-Fa-f0-9][A-Fa-f0-9]" #[(arg) "\302\303\304\"\211\304\305	\303\306O\307\"I\210)\207" [str arg make-string 1 0 string-to-number nil 16] 7] t] 6])
(put 'dnd-unescape-uri 'byte-optimizer 'byte-compile-inline-expand)
#@204 Return file name converted from file:/// or file: syntax.
URI is the uri for the file.  If MUST-EXIST is given and non-nil,
only return non-nil if the file exists.
Return nil if URI is not a local file.
(defalias 'dnd-get-local-file-name #[(uri &optional must-exist) "\305\306\"\203\307\225S\310O\202\305\311\"\205\307\225\310O\211\2033\312	\313\314\315\316\211%)\n\2061\"	\203C\f\203C\317	!\204C\310	)\207" [uri f file-name-coding-system default-file-name-coding-system must-exist string-match "^file:///" 0 nil "^file:" decode-coding-string replace-regexp-in-string "%[A-Fa-f0-9][A-Fa-f0-9]" #[(arg) "\302\303\304\"\211\304\305	\303\306O\307\"I\210)\207" [str arg make-string 1 0 string-to-number nil 16] 7] t file-readable-p] 8 (#$ . 4367)])
#@512 Open a local file.
The file is opened in the current window, or a new window if
`dnd-open-file-other-window' is set.  URI is the url for the file,
and must have the format file:file-name or file:///file-name.
The last / in file:/// is part of the file name.  If the system
natively supports unc file names, then remote urls of the form
file://server-name/file-name will also be handled by this function.
An alternative for systems that do not support unc file names is
`dnd-open-remote-url'. ACTION is ignored.
(defalias 'dnd-open-local-file #[(uri _action) "\303\304\"\211\203\"\305	!\203\"\n\203\306	!\210\202\307	!\210\310\202&\311\312\")\207" [uri f dnd-open-file-other-window dnd-get-local-file-name t file-readable-p find-file-other-window find-file private error "Can not read %s"] 4 (#$ . 5142)])
#@255 Open a remote file with `find-file' and `url-handler-mode'.
Turns `url-handler-mode' on if not on before.  The file is opened in the
current window, or a new window if `dnd-open-file-other-window' is set.
URI is the url for the file.  ACTION is ignored.
(defalias 'dnd-open-remote-url #[(uri _action) "\303\304!\210\204\300 \210	\203\305\n!\210\202\306\n!\210\307\207" [url-handler-mode dnd-open-file-other-window uri require url-handlers find-file-other-window find-file private] 2 (#$ . 5964)])
#@287 Open a local or remote file.
The file is opened in the current window, or a new window if
`dnd-open-file-other-window' is set.  URI is the url for the file,
and must have the format file://hostname/file-name.  ACTION is ignored.
The last / in file://hostname/ is part of the file name.
(defalias 'dnd-open-file #[(uri action) "\304!\211\203\305	\n\"\202\203\n\"\202\306\307!)\207" [uri local-file action dnd-open-remote-file-function dnd-get-local-file-uri dnd-open-local-file error "Remote files not supported"] 4 (#$ . 6475)])
#@147 Insert text at point or push to the kill ring if buffer is read only.
TEXT is the text as a string, WINDOW is the window where the drop happened.
(defalias 'dnd-insert-text #[(window action text) "\204\n\304	!\204\305\n!\210\306\307\310\311!\"\210\202\nc\210\207" [buffer-read-only window text action windowp kill-new message "%s" substitute-command-keys "The dropped text can be accessed with \\[yank]"] 4 (#$ . 7024)])
(provide 'dnd)

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net