This file is indexed.

/usr/share/emacs/site-lisp/elpa-src/el-x-0.3.1/dflet.el is in elpa-el-x 0.3.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
;;; dflet.el --- dynamically-scoped flet

;; Copyright (C) 2012  Yann Hodique
;; Copyright (C) 1993, 2001-2012  Free Software Foundation, Inc.

;; Author: Yann Hodique <yann.hodique@gmail.com>
;; Keywords: lisp

;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;;; Commentary:

;; This is bringing back the historical definition of `flet', in all its global
;; and dynamic splendor.

;;; Code:

(eval-when-compile
  (require 'cl)
  (require 'macroexp)
  (require 'subr-compat))

(ignore-errors
  (require 'cl-lib))

;;; silence byte-compiler
(eval-when-compile
  (unless (fboundp 'cl--compiling-file) ;; should be in cl-lib
    (cond ((version< emacs-version "24.3")
           ;; sure it doesn't exist, but it won't be called anyway...
           (autoload 'cl--compiling-file "cl"))
          ((version= emacs-version "24.3.1")
           (declare-function cl--compiling-file "cl" t t)))))

(cond ((version< emacs-version "24.3")
       ;; before that version, flet was not marked as obsolete, so use it
       (defalias 'dflet 'flet))
      ((version= emacs-version "24.3.1")
       (defmacro dflet (bindings &rest body)
         "Make temporary overriding function definitions.
This is an analogue of a dynamically scoped `let' that operates on the function
cell of FUNCs rather than their value cell.

\(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
         `(letf ,(mapcar
                  (lambda (x)
                    (if (or (and (fboundp (car x))
                                 (eq (car-safe (symbol-function (car x))) 'macro))
                            (cdr (assq (car x) macroexpand-all-environment)))
                        (error "Use `labels', not `dflet', to rebind macro names"))
                    (let ((func `(cl-function
                                  (lambda ,(cadr x)
                                    (cl-block ,(car x) ,@(cddr x))))))
                      (when (cl--compiling-file)
                        ;; Bug#411.  It would be nice to fix this.
                        (and (get (car x) 'byte-compile)
                             (error "Byte-compiling a redefinition of `%s' \
will not work - use `labels' instead" (symbol-name (car x))))
                        ;; FIXME This affects the rest of the file, when it
                        ;; should be restricted to the flet body.
                        (and (boundp 'byte-compile-function-environment)
                             (push (cons (car x) (eval func))
                                   byte-compile-function-environment)))
                      (list `(symbol-function ',(car x)) func)))
                  bindings)
                ,@body)))
      (t
       (defmacro dflet (bindings &rest body)
         "Make temporary overriding function definitions.
This is an analogue of a dynamically scoped `let' that operates on the function
cell of FUNCs rather than their value cell.

\(fn ((FUNC ARGLIST BODY...) ...) FORM...)"
         (declare (indent 1) (debug cl-flet))
         `(cl-letf ,(mapcar
                     (lambda (x)
                       (list
                        (list 'symbol-function (list 'quote (car x)))
                        (cons 'lambda (cons (cadr x) (cddr x)))))
                     bindings)
            ,@body))))

;;;###autoload
(autoload 'dflet "dflet")

;;;###autoload
(defmacro adflet (bindings &rest body)
  "Anaphoric version of `dflet'. Binds `this-fn' to the original
definition of the function."
  `(dflet ,(mapcar
            (lambda (x)
              (list (car x) (cadr x)
                    `(let ((this-fn ,(symbol-function (car x))))
                       ,@(cddr x))))
            bindings)
          ,@body))


(provide 'dflet)
;;; dflet.el ends here