diff options
| author | Alan Mackenzie | 2016-01-24 20:30:39 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2016-01-24 20:30:39 +0000 |
| commit | fbce4757a874cc43806eb41b8637538b101c3c69 (patch) | |
| tree | 029f7e1407ed659d9966a29c723197a545148795 /src/w32term.c | |
| parent | fef1b3066ae02ec6dd37b0358905491fabbedfdf (diff) | |
| download | emacs-fbce4757a874cc43806eb41b8637538b101c3c69.tar.gz emacs-fbce4757a874cc43806eb41b8637538b101c3c69.zip | |
Expunge "allow" + infinitive without direct object from source and doc.
Do the same for "permit", "enable", and "prevent".
* doc/emacs/mule.texi:
* doc/lispref/control.texi:
* doc/lispref/display.texi:
* doc/lispref/frames.texi:
* doc/lispref/functions.texi:
* doc/lispref/nonascii.texi:
* doc/lispref/streams.texi:
* doc/lispref/windows.texi:
* doc/misc/dbus.texi:
* doc/misc/eww.texi:
* doc/misc/flymake.texi:
* doc/misc/octave-mode.texi:
* doc/misc/org.texi:
* doc/misc/reftex.texi:
* doc/misc/tramp.texi:
* doc/misc/wisent.texi:
* etc/NEWS:
* lisp/autorevert.el:
* lisp/cedet/mode-local.el:
* lisp/cedet/semantic/senator.el:
* lisp/cedet/semantic/wisent.el:
* lisp/dos-fns.el:
* lisp/frameset.el:
* lisp/gnus/gnus-agent.el:
* lisp/gnus/mm-util.el:
* lisp/international/characters.el:
* lisp/ldefs-boot.el:
* lisp/mail/mailclient.el:
* lisp/man.el:
* lisp/mh-e/mh-search.el:
* lisp/net/tramp-cmds.el:
* lisp/net/tramp-gvfs.el:
* lisp/org/org-crypt.el:
* lisp/org/org-element.el:
* lisp/org/org-feed.el:
* lisp/org/org.el:
* lisp/org/ox-ascii.el:
* lisp/org/ox-icalendar.el:
* lisp/org/ox-publish.el:
* lisp/org/ox.el:
* lisp/play/gamegrid.el:
* lisp/play/gomoku.el:
* lisp/progmodes/antlr-mode.el:
* lisp/progmodes/python.el:
* lisp/progmodes/vhdl-mode.el:
* lisp/strokes.el:
* lisp/textmodes/ispell.el:
* lisp/tree-widget.el:
* lisp/vc/pcvs.el:
* lisp/window.el:
* src/lisp.h:
* src/w32.c:
* src/w32heap.c:
* src/w32term.c:
* src/window.c:
* src/xfaces.c:
Replace solecisms like "This allow to do something" with a correct
alternative, such as "This allow you to do something", "This allows
something to be done" or "This allows the doing of something".
Diffstat (limited to 'src/w32term.c')
| -rw-r--r-- | src/w32term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32term.c b/src/w32term.c index 54fd2953d76..36a50212372 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -3616,8 +3616,8 @@ w32_set_horizontal_scroll_bar_thumb (struct scroll_bar *bar, | |||
| 3616 | si.fMask = SIF_PAGE | SIF_POS | SIF_RANGE; | 3616 | si.fMask = SIF_PAGE | SIF_POS | SIF_RANGE; |
| 3617 | si.nMin = 0; | 3617 | si.nMin = 0; |
| 3618 | si.nMax = whole; | 3618 | si.nMax = whole; |
| 3619 | /* Allow nPage to be one larger than nPos so we don't allow to scroll | 3619 | /* Allow nPage to be one larger than nPos so we don't allow the scrolling |
| 3620 | an already fully visible buffer. */ | 3620 | of an already fully visible buffer. */ |
| 3621 | si.nPage = min (portion, si.nMax) + 1; | 3621 | si.nPage = min (portion, si.nMax) + 1; |
| 3622 | si.nPos = min (position, si.nMax); | 3622 | si.nPos = min (position, si.nMax); |
| 3623 | SetScrollInfo (w, SB_CTL, &si, TRUE); | 3623 | SetScrollInfo (w, SB_CTL, &si, TRUE); |