diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 4 | ||||
| -rw-r--r-- | src/gfilenotify.c | 24 |
2 files changed, 14 insertions, 14 deletions
diff --git a/src/buffer.c b/src/buffer.c index bd7c82c062f..fb1502a13a4 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5540,12 +5540,12 @@ This is the same as (default-value 'indicate-buffer-boundaries). */); | |||
| 5540 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-indicator-alist", | 5540 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-indicator-alist", |
| 5541 | fringe_indicator_alist, | 5541 | fringe_indicator_alist, |
| 5542 | doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it. | 5542 | doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it. |
| 5543 | This is the same as (default-value 'fringe-indicator-alist'). */); | 5543 | This is the same as (default-value 'fringe-indicator-alist). */); |
| 5544 | 5544 | ||
| 5545 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-cursor-alist", | 5545 | DEFVAR_BUFFER_DEFAULTS ("default-fringe-cursor-alist", |
| 5546 | fringe_cursor_alist, | 5546 | fringe_cursor_alist, |
| 5547 | doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it. | 5547 | doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it. |
| 5548 | This is the same as (default-value 'fringe-cursor-alist'). */); | 5548 | This is the same as (default-value 'fringe-cursor-alist). */); |
| 5549 | 5549 | ||
| 5550 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-up-aggressively", | 5550 | DEFVAR_BUFFER_DEFAULTS ("default-scroll-up-aggressively", |
| 5551 | scroll_up_aggressively, | 5551 | scroll_up_aggressively, |
diff --git a/src/gfilenotify.c b/src/gfilenotify.c index 08713a8fce3..5488fa38507 100644 --- a/src/gfilenotify.c +++ b/src/gfilenotify.c | |||
| @@ -119,9 +119,9 @@ watched for some reason, this function signals a `file-notify-error' error. | |||
| 119 | FLAGS is a list of conditions to set what will be watched for. It can | 119 | FLAGS is a list of conditions to set what will be watched for. It can |
| 120 | include the following symbols: | 120 | include the following symbols: |
| 121 | 121 | ||
| 122 | 'watch-mounts' -- watch for mount events | 122 | `watch-mounts' -- watch for mount events |
| 123 | 'send-moved' -- pair 'deleted' and 'created' events caused by file | 123 | `send-moved' -- pair `deleted' and `created' events caused by file |
| 124 | renames and send a single 'renamed' event instead | 124 | renames and send a single `renamed' event instead |
| 125 | 125 | ||
| 126 | When any event happens, Emacs will call the CALLBACK function passing | 126 | When any event happens, Emacs will call the CALLBACK function passing |
| 127 | it a single argument EVENT, which is of the form | 127 | it a single argument EVENT, which is of the form |
| @@ -132,18 +132,18 @@ DESCRIPTOR is the same object as the one returned by this function. | |||
| 132 | ACTION is the description of the event. It could be any one of the | 132 | ACTION is the description of the event. It could be any one of the |
| 133 | following: | 133 | following: |
| 134 | 134 | ||
| 135 | 'changed' -- FILE has changed | 135 | `changed' -- FILE has changed |
| 136 | 'changes-done-hint' -- a hint that this was probably the last change | 136 | `changes-done-hint' -- a hint that this was probably the last change |
| 137 | in a set of changes | 137 | in a set of changes |
| 138 | 'deleted' -- FILE was deleted | 138 | `deleted' -- FILE was deleted |
| 139 | 'created' -- FILE was created | 139 | `created' -- FILE was created |
| 140 | 'attribute-changed' -- a FILE attribute was changed | 140 | `attribute-changed' -- a FILE attribute was changed |
| 141 | 'pre-unmount' -- the FILE location will soon be unmounted | 141 | `pre-unmount' -- the FILE location will soon be unmounted |
| 142 | 'unmounted' -- the FILE location was unmounted | 142 | `unmounted' -- the FILE location was unmounted |
| 143 | 'moved' -- FILE was moved to FILE1 | 143 | `moved' -- FILE was moved to FILE1 |
| 144 | 144 | ||
| 145 | FILE is the name of the file whose event is being reported. FILE1 | 145 | FILE is the name of the file whose event is being reported. FILE1 |
| 146 | will be reported only in case of the 'moved' event. */) | 146 | will be reported only in case of the `moved' event. */) |
| 147 | (Lisp_Object file, Lisp_Object flags, Lisp_Object callback) | 147 | (Lisp_Object file, Lisp_Object flags, Lisp_Object callback) |
| 148 | { | 148 | { |
| 149 | Lisp_Object watch_object; | 149 | Lisp_Object watch_object; |