• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching +defs:no +defs:clone +defs:indirect

86 If no other buffer exists, the buffer `*scratch*' is returned."
147 (defcustom next-error-highlight-no-select 0.5
148 "*Highlighting of locations in `next-error-no-select'.
340 (defun next-error-no-select (&optional n)
347 (let ((next-error-highlight next-error-highlight-no-select))
351 (defun previous-error-no-select (&optional n)
358 (next-error-no-select (- (or n 1))))
382 (next-error-no-select 0))
416 ;; Make sure no functions want to be told about
420 ;; Make sure there are no markers here.
423 ;; Make sure no text properties want to know
448 ;; there is no need to since we're at BOL.
580 ;; and there are no following blank lines.
830 (buffer-substring-no-properties
972 (concat (buffer-substring-no-properties pos to)
996 (buffer-substring-no-properties (point) (1+ (point))))
1002 (buffer-substring-no-properties (point) (1+ (point))))
1020 A value of nil means no limit."
1027 A value of nil means no limit."
1091 (with-no-warnings
1158 (error "There are no previous complex commands to repeat")))))
1225 (minibuffer-contents-no-properties)))
1228 (if (isearch-no-upper-case-p regexp t) ; assume isearch.el is dumped
1307 (minibuffer-contents-no-properties)))
1310 (error "End of history; no next item")
1311 (error "End of history; no default available")))
1313 (error "Beginning of history; no preceding item"))
1389 (defvar undo-no-redo nil
1445 (when (and (consp equiv) undo-no-redo)
1504 (let ((undo-no-redo t)) (undo arg)))
1690 If you answer no, there is a slight risk that Emacs might crash, so
1727 (yes-or-no-p (format "Buffer `%s' undo info is %d bytes long; discard it? "
1810 If there is no output, or if output is inserted in the current buffer,
1857 ;; Do no formatting while reading error file,
1886 (if (yes-or-no-p "A command is running. Kill it? ")
2011 If there is no output, or if output is inserted in the current buffer,
2034 (error "The mark is not set now, so there is no region"))
2129 "no output")))
2151 ;; Do no formatting while reading error file,
2318 ;; For backward compatibility, minus with no modifiers is an ordinary
2348 If this variable is nil, no filtering is performed.")
2369 `buffer-substring-no-properties', or `delete-and-extract-region'
2386 (buffer-substring-no-properties beg end))
2416 The function should be called with no arguments. If the function
2417 returns nil, then no other program has provided such text, and the top
2570 (error "The mark is not set now, so there is no region"))
2585 ;; However, there's no harm in putting
2598 ;; copy-region-as-kill no longer sets this-command, because it's confusing
2697 With no argument, the previous kill is inserted.
2841 "*If non-nil, `kill-line' with no arg at beg of line kills the whole line."
2846 "Kill the rest of the current line; if no nonblanks there, kill thru newline.
2851 When calling from a program, nil means \"no arg\",
2859 with no argument. As a consequence, you can always kill a whole line
2875 ;; The choice has no effect on undo now that undo records
3204 If no prefix arg and mark is already set there, just activate it.
3233 With no prefix argument, set the mark at point, and push the
3246 the \\[set-mark-command] command with no prefix argument pops the next position
3410 If there is no character in the target line exactly under the current column,
3413 If there is no line in the buffer after this one, behavior depends on the
3423 when there is no goal column.
3427 and more reliable (no dependence on goal column, etc.)."
3447 If there is no character in the target line exactly over the current column,
3456 when there is no goal column.
3460 to use and more reliable (no dependence on goal column, etc.)."
3634 ;; If there's no invisibility here, move over the newline.
3954 (with-no-warnings
3971 (with-no-warnings
3981 If no argument and at end of line, the previous two chars are exchanged."
4019 ;; to make sure we'll obey the same precedence no matter which direction
4138 The return value includes no text properties.
4141 if there is no word nearby.
4173 (buffer-substring-no-properties start end)))))
4247 ;; There is no use breaking at end of line.
4342 "Set `selective-display' to ARG; clear it if no arg.
4468 This variable has no effect if `blink-matching-paren' is nil.
4581 (substring-no-properties open-paren-line-string))))))))
4881 (defvar completion-no-auto-exit nil
4951 (setq completion (buffer-substring-no-properties beg end))
4995 the minibuffer; no further functions will be called.
5008 ;; or completion-no-auto-exit is non-nil.
5038 (and (not completion-no-auto-exit)
5307 (defvar clone-buffer-hook nil
5308 "Normal hook to run in the new buffer at the end of `clone-buffer'.")
5310 (defun clone-process (process &optional newname)
5345 (defun clone-buffer (&optional newname display-flag)
5347 Unlike an indirect buffer, the new buffer can be edited
5354 clone a file-visiting buffer, or a buffer whose major mode symbol
5355 has a non-nil `no-clone' property, results in an error.
5362 This runs the normal hook `clone-buffer-hook' in the new buffer
5367 (error "Cannot clone a file-visiting buffer"))
5368 (if (get major-mode 'no-clone)
5369 (error "Cannot clone a buffer in %s mode" mode-name))
5374 (error "Cannot clone a file-visiting buffer"))
5375 (if (get major-mode 'no-clone)
5376 (error "Cannot clone a buffer in %s mode" mode-name))
5401 (when process (clone-process process))
5417 (run-hooks 'clone-buffer-hook))
5420 ;; we want to display the clone elsewhere.
5427 (defun clone-indirect-buffer (newname display-flag &optional norecord)
5428 "Create an indirect buffer that is a twin copy of the current buffer.
5430 Give the indirect buffer name NEWNAME. Interactively, read NEWNAME
5443 (if (get major-mode 'no-clone-indirect)
5444 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
5446 (read-buffer "Name of indirect buffer: " (current-buffer)))
5448 (if (get major-mode 'no-clone-indirect)
5449 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
5454 (buffer (make-indirect-buffer (current-buffer) name t)))
5460 (defun clone-indirect-buffer-other-window (newname display-flag &optional norecord)
5461 "Like `clone-indirect-buffer' but display in another window."
5464 (if (get major-mode 'no-clone-indirect)
5465 (error "Cannot indirectly clone a buffer in %s mode" mode-name))
5467 (read-buffer "Name of indirect buffer: " (current-buffer)))
5470 (clone-indirect-buffer newname display-flag norecord)))