diff options
| author | Stefan Monnier | 2011-09-20 21:30:35 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2011-09-20 21:30:35 -0400 |
| commit | 8d28cb95b97d8d3db84773b2c49037392be93b08 (patch) | |
| tree | 422bb37812066bf14e600521ff89bb1e6eff12a5 | |
| parent | 5c7f66a032b769051b4ec0dad5e095548889fa75 (diff) | |
| download | emacs-8d28cb95b97d8d3db84773b2c49037392be93b08.tar.gz emacs-8d28cb95b97d8d3db84773b2c49037392be93b08.zip | |
* lisp/window.el (display-buffer--action-function-custom-type):
Don't include internal functions in the Custom interface.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/window.el | 3 |
2 files changed, 7 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0c16a44722a..710cbcf8efa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * window.el (display-buffer--action-function-custom-type): | ||
| 4 | Don't include internal functions in the Custom interface. | ||
| 5 | |||
| 1 | 2011-09-20 Juri Linkov <juri@jurta.org> | 6 | 2011-09-20 Juri Linkov <juri@jurta.org> |
| 2 | 7 | ||
| 3 | * info.el (Info-history-skip-intermediate-nodes): New defcustom. | 8 | * info.el (Info-history-skip-intermediate-nodes): New defcustom. |
| @@ -130,8 +135,8 @@ | |||
| 130 | * net/tramp.el (top): Don't require 'shell. | 135 | * net/tramp.el (top): Don't require 'shell. |
| 131 | (tramp-methods): Fix docstring. | 136 | (tramp-methods): Fix docstring. |
| 132 | (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el. | 137 | (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el. |
| 133 | Return complete remote file name. Handle "smb" case. Use | 138 | Return complete remote file name. Handle "smb" case. |
| 134 | `tramp-tmpdir', if defined for the respective method. | 139 | Use `tramp-tmpdir', if defined for the respective method. |
| 135 | (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'. | 140 | (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'. |
| 136 | 141 | ||
| 137 | * net/tramp-compat.el (top): Require 'shell. | 142 | * net/tramp-compat.el (top): Require 'shell. |
diff --git a/lisp/window.el b/lisp/window.el index e0be98d5bd1..50b8e7345c3 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -4442,10 +4442,7 @@ BUFFER-OR-NAME and return that buffer." | |||
| 4442 | (defconst display-buffer--action-function-custom-type | 4442 | (defconst display-buffer--action-function-custom-type |
| 4443 | '(choice :tag "Function" | 4443 | '(choice :tag "Function" |
| 4444 | (const :tag "--" ignore) ; default for insertion | 4444 | (const :tag "--" ignore) ; default for insertion |
| 4445 | (const display-buffer--maybe-same-window) | ||
| 4446 | (const display-buffer-reuse-window) | 4445 | (const display-buffer-reuse-window) |
| 4447 | (const display-buffer--special) | ||
| 4448 | (const display-buffer--maybe-pop-up-frame-or-window) | ||
| 4449 | (const display-buffer-use-some-window) | 4446 | (const display-buffer-use-some-window) |
| 4450 | (const display-buffer-same-window) | 4447 | (const display-buffer-same-window) |
| 4451 | (const display-buffer-pop-up-frame) | 4448 | (const display-buffer-pop-up-frame) |