• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/progmodes/

Lines Matching +defs:skip +defs:keep

87 (defvar gud-keep-buffer nil)
324 (make-local-variable 'gud-keep-buffer))
664 ;; beginning of another marker? If it does, then keep it in
746 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).")
747 (gud-def gud-nexti "nexti %p" nil "Step one instruction (skip functions).")
917 (defun gud-gdb-run-command-fetch-lines (command buffer &optional skip)
920 SKIP is the number of chars to skip on each lines, it defaults to 0."
933 (gud-gdb-fetch-lines-break (or skip 0))
1023 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).")
1080 ;; If the incomplete line APPEARS to begin with another marker, keep it
1131 ;; beginning of another marker? If it does, then keep it in
1280 ;; If the incomplete line APPEARS to begin with another marker, keep it
1341 (gud-def gud-next "next %p" "\C-n" "Step one line (skip functions).")
1342 (gud-def gud-nexti "nexti %p" nil "Step one instruction (skip functions).")
1418 (gud-def gud-next "S %p" "\C-n" "Step one line (skip functions).")
1507 ;; beginning of another marker? If it does, then keep it in
1547 (gud-def gud-next "n" "\C-n" "Step one line (skip functions).")
1613 ;; beginning of another marker? If it does, then keep it in
1652 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
1744 ;; nice to keep as much information as possible between runs. It would
1804 "Maximum number of debugger output characters to keep.
1823 file from which the class originated. This allows gud mode to keep
1851 (defun gud-jdb-skip-whitespace ()
1852 (skip-chars-forward " \n\r\t\014"))
1855 (defun gud-jdb-skip-single-line-comment ()
1859 (defun gud-jdb-skip-traditional-or-documentation-comment ()
1874 (defun gud-jdb-skip-whitespace-and-comments ()
1875 (gud-jdb-skip-whitespace)
1880 (gud-jdb-skip-single-line-comment)
1881 (gud-jdb-skip-whitespace))
1883 (gud-jdb-skip-traditional-or-documentation-comment)
1884 (gud-jdb-skip-whitespace))
1887 ;; Move point past things that are id-like. The intent is to skip regular
1890 (defun gud-jdb-skip-id-ish-thing ()
1891 (skip-chars-forward "^ /\n\r\t\014,;{"))
1894 (defun gud-jdb-skip-string-literal ()
1904 (defun gud-jdb-skip-character-literal ()
1917 (defun gud-jdb-skip-block ()
1927 (gud-jdb-skip-single-line-comment))
1929 (gud-jdb-skip-traditional-or-documentation-comment))
1931 (gud-jdb-skip-string-literal))
1933 (gud-jdb-skip-character-literal))
1944 (gud-jdb-skip-single-line-comment))
1946 (gud-jdb-skip-traditional-or-documentation-comment))
1948 (gud-jdb-skip-string-literal))
1950 (gud-jdb-skip-character-literal))
1970 (gud-jdb-skip-whitespace)
1982 (gud-jdb-skip-single-line-comment))
1986 (gud-jdb-skip-traditional-or-documentation-comment))
1991 (gud-jdb-skip-whitespace-and-comments)
1993 (gud-jdb-skip-id-ish-thing)
1995 (gud-jdb-skip-whitespace-and-comments)
2002 (gud-jdb-skip-whitespace-and-comments)
2003 (gud-jdb-skip-id-ish-thing)
2004 (gud-jdb-skip-whitespace-and-comments)
2020 (gud-jdb-skip-whitespace-and-comments)
2022 (gud-jdb-skip-id-ish-thing)
2025 (gud-jdb-skip-block))
2030 (gud-jdb-skip-block))
2310 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
2706 (unless (or (verify-visited-file-modtime buffer) gud-keep-buffer)
2711 (setq gud-keep-buffer t)))
3143 (defun gdb-script-skip-to-head ()
3147 (gdb-script-skip-to-head)))
3152 (gdb-script-skip-to-head)
3157 (gdb-script-skip-to-head))
3162 (skip-chars-forward " \t")
3173 (skip-chars-forward " \t")
3180 (skip-chars-forward " \t")
3216 (set (make-local-variable 'comment-start-skip) "#+\\s-*")