emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/isearch.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/isearch.el [lexbind]
Date: Sat, 04 Sep 2004 05:48:17 -0400

Index: emacs/lisp/isearch.el
diff -c emacs/lisp/isearch.el:1.212.2.10 emacs/lisp/isearch.el:1.212.2.11
*** emacs/lisp/isearch.el:1.212.2.10    Sat Sep  4 09:22:55 2004
--- emacs/lisp/isearch.el       Sat Sep  4 09:24:35 2004
***************
*** 778,817 ****
  
  (defsubst isearch-string (frame)
    "Return the search string in FRAME."
!   (aref 0 frame))
  (defsubst isearch-message-string (frame)
    "Return the search string to display to the user in FRAME."
!   (aref 1 frame))
  (defsubst isearch-point (frame)
    "Return the point in FRAME."
!   (aref 2 frame))
  (defsubst isearch-success (frame)
    "Return the success flag in FRAME."
!   (aref 3 frame))
  (defsubst isearch-forward-flag (frame)
    "Return the searching-forward flag in FRAME."
!   (aref 4 frame))
  (defsubst isearch-other-end (frame)
    "Return the other end of the match in FRAME."
!   (aref 5 frame))
  (defsubst isearch-word (frame)
    "Return the search-by-word flag in FRAME."
!   (aref 6 frame))
  (defsubst isearch-invalid-regexp (frame)
    "Return the regexp error message in FRAME, or nil if its regexp is valid."
!   (aref 7 frame))
  (defsubst isearch-wrapped (frame)
    "Return the search-wrapped flag in FRAME."
!   (aref 8 frame))
  (defsubst isearch-barrier (frame)
    "Return the barrier value in FRAME."
!   (aref 9 frame))
  (defsubst isearch-within-brackets (frame)
    "Return the in-character-class flag in FRAME."
!   (aref 10 frame))
  (defsubst isearch-case-fold-search (frame)
    "Return the case-folding flag in FRAME."
!   (aref 11 frame))
  
  (defun isearch-top-state ()
    (let ((cmd (car isearch-cmds)))
--- 778,817 ----
  
  (defsubst isearch-string (frame)
    "Return the search string in FRAME."
!   (aref frame 0))
  (defsubst isearch-message-string (frame)
    "Return the search string to display to the user in FRAME."
!   (aref frame 1))
  (defsubst isearch-point (frame)
    "Return the point in FRAME."
!   (aref frame 2))
  (defsubst isearch-success (frame)
    "Return the success flag in FRAME."
!   (aref frame 3))
  (defsubst isearch-forward-flag (frame)
    "Return the searching-forward flag in FRAME."
!   (aref frame 4))
  (defsubst isearch-other-end (frame)
    "Return the other end of the match in FRAME."
!   (aref frame 5))
  (defsubst isearch-word (frame)
    "Return the search-by-word flag in FRAME."
!   (aref frame 6))
  (defsubst isearch-invalid-regexp (frame)
    "Return the regexp error message in FRAME, or nil if its regexp is valid."
!   (aref frame 7))
  (defsubst isearch-wrapped (frame)
    "Return the search-wrapped flag in FRAME."
!   (aref frame 8))
  (defsubst isearch-barrier (frame)
    "Return the barrier value in FRAME."
!   (aref frame 9))
  (defsubst isearch-within-brackets (frame)
    "Return the in-character-class flag in FRAME."
!   (aref frame 10))
  (defsubst isearch-case-fold-search (frame)
    "Return the case-folding flag in FRAME."
!   (aref frame 11))
  
  (defun isearch-top-state ()
    (let ((cmd (car isearch-cmds)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]