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

Lines Matching +defs:delete +defs:backward +defs:char

82 ;; byte-compile-delete-errors	Whether the optimizer may delete calls or
281 (defcustom byte-compile-delete-errors nil
282 "*If non-nil, the optimizer may delete forms that may signal an error.
588 (byte-defop 98 0 byte-goto-char)
592 (byte-defop 102 0 byte-char-after)
593 (byte-defop 103 1 byte-following-char)
594 (byte-defop 104 1 byte-preceding-char)
610 (byte-defop 117 0 byte-forward-char)
613 (byte-defop 120 -1 byte-skip-chars-backward)
615 (byte-defop 122 0 byte-char-syntax)
617 (byte-defop 124 -1 byte-delete-region)
905 (goto-char (point-max))
918 (defsubst byte-compile-delete-first (elt list)
957 (byte-compile-delete-first
981 (goto-char byte-compile-last-position)
984 (goto-char byte-compile-last-position)
1016 (goto-char (point-max))
1092 ;; (delete-errors byte-compile-delete-errors (t nil) val)
1270 (goto-char 1)
1273 (unless (eq ?% (char-after (1+ (match-beginning 0))))
1708 (condition-case nil (delete-file target-file) (error nil)))
1726 (goto-char (point-max))
1740 (delete-file target-file))
1858 (goto-char 1)
1891 (goto-char (point-min))
1903 (goto-char (point-min))
1904 (delete-region (point) (progn (re-search-forward "^(")
1917 (goto-char (point-max))
1919 (delete-char delta)))))
1926 (goto-char 1)
1994 ;; can delete them so as to keep the buffer positions
2117 (goto-char (prog1 (1+ (point))
2120 (goto-char (point-max)))))
2419 (goto-char position)
2424 (goto-char position)
2427 (goto-char position)
2430 (goto-char (point-max))
2432 (goto-char position)
2442 (goto-char (point-max))))
2798 ((and for-effect byte-compile-delete-errors)
2996 (byte-defop-compiler following-char 0)
2997 (byte-defop-compiler preceding-char 0)
3004 ;;(byte-defop-compiler read-char 0) ;; obsolete
3008 (byte-defop-compiler19 forward-char 0-1)
3023 (byte-defop-compiler goto-char 1)
3024 (byte-defop-compiler char-after 0-1)
3028 (byte-defop-compiler19 char-syntax 1)
3035 (byte-defop-compiler19 skip-chars-backward 1-2)
3069 (byte-defop-compiler19 delete-region 2)
3165 (byte-defop-compiler char-before)
3166 (byte-defop-compiler backward-char)
3167 (byte-defop-compiler backward-word)
3179 (defun byte-compile-char-before (form)
3181 (byte-compile-form (list 'char-after (if (numberp (nth 1 form))
3185 (byte-compile-form '(char-after (1- (point)))))
3188 ;; backward-... ==> forward-... with negated argument.
3189 (defun byte-compile-backward-char (form)
3191 (byte-compile-form (list 'forward-char (if (numberp (nth 1 form))
3195 (byte-compile-form '(forward-char -1)))
3198 (defun byte-compile-backward-word (form)
3431 (byte-defop-compiler-1 map-char-table byte-compile-funarg)
4186 (delete-file destfile)))