diff options
| author | Michael R. Mauger | 2017-07-03 15:32:41 -0400 |
|---|---|---|
| committer | Michael R. Mauger | 2017-07-03 15:32:41 -0400 |
| commit | 776635c01abd4aa759e7aa9584b513146978568c (patch) | |
| tree | 554f444bc96cb6b05435e8bf195de4df1b00df8f /src/buffer.c | |
| parent | 77083e2d34ba5559ae2899d3b03cf08c2e6c5ad4 (diff) | |
| parent | 4cd0db3d6e6e4d5bd49283483bdafbbfc0f583f1 (diff) | |
| download | emacs-776635c01abd4aa759e7aa9584b513146978568c.tar.gz emacs-776635c01abd4aa759e7aa9584b513146978568c.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index ff4a500c8b7..80dbd3318dc 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5486,8 +5486,11 @@ A string is printed verbatim in the mode line except for %-constructs: | |||
| 5486 | For a modified read-only buffer, %* gives % and %+ gives *. | 5486 | For a modified read-only buffer, %* gives % and %+ gives *. |
| 5487 | %s -- print process status. %l -- print the current line number. | 5487 | %s -- print process status. %l -- print the current line number. |
| 5488 | %c -- print the current column number (this makes editing slower). | 5488 | %c -- print the current column number (this makes editing slower). |
| 5489 | Columns are numbered starting from the left margin, and the | ||
| 5490 | leftmost column is displayed as zero. | ||
| 5489 | To make the column number update correctly in all cases, | 5491 | To make the column number update correctly in all cases, |
| 5490 | `column-number-mode' must be non-nil. | 5492 | `column-number-mode' must be non-nil. |
| 5493 | %C -- Like %c, but the leftmost column is displayed as one. | ||
| 5491 | %i -- print the size of the buffer. | 5494 | %i -- print the size of the buffer. |
| 5492 | %I -- like %i, but use k, M, G, etc., to abbreviate. | 5495 | %I -- like %i, but use k, M, G, etc., to abbreviate. |
| 5493 | %p -- print percent of buffer above top of window, or Top, Bot or All. | 5496 | %p -- print percent of buffer above top of window, or Top, Bot or All. |
| @@ -5629,7 +5632,9 @@ visual lines rather than logical lines. See the documentation of | |||
| 5629 | DEFVAR_PER_BUFFER ("default-directory", &BVAR (current_buffer, directory), | 5632 | DEFVAR_PER_BUFFER ("default-directory", &BVAR (current_buffer, directory), |
| 5630 | Qstringp, | 5633 | Qstringp, |
| 5631 | doc: /* Name of default directory of current buffer. | 5634 | doc: /* Name of default directory of current buffer. |
| 5632 | To interactively change the default directory, use command `cd'. */); | 5635 | It should be a directory name (as opposed to a directory file-name). |
| 5636 | On GNU and Unix systems, directory names end in a slash `/'. | ||
| 5637 | To interactively change the default directory, use command `cd'. */); | ||
| 5633 | 5638 | ||
| 5634 | DEFVAR_PER_BUFFER ("auto-fill-function", &BVAR (current_buffer, auto_fill_function), | 5639 | DEFVAR_PER_BUFFER ("auto-fill-function", &BVAR (current_buffer, auto_fill_function), |
| 5635 | Qnil, | 5640 | Qnil, |