diff options
| author | Karl Heuer | 1996-07-20 17:20:16 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-07-20 17:20:16 +0000 |
| commit | d63a37ea487bc863c58856d2d2f8ae89b9775425 (patch) | |
| tree | ee94dcc86b9e63cf11ad0fb19277784a081bcbf3 | |
| parent | 41f3fb387864197895cfd5bff603cc8726eed2fe (diff) | |
| download | emacs-d63a37ea487bc863c58856d2d2f8ae89b9775425.tar.gz emacs-d63a37ea487bc863c58856d2d2f8ae89b9775425.zip | |
(vip-ms-style-os-p): Doc fix.
| -rw-r--r-- | lisp/emulation/viper.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el index 6c940d9522c..f45ee975c1e 100644 --- a/lisp/emulation/viper.el +++ b/lisp/emulation/viper.el | |||
| @@ -88,7 +88,7 @@ | |||
| 88 | ;; The same macro name can have several different definitions: | 88 | ;; The same macro name can have several different definitions: |
| 89 | ;; one global, several definitions for various major modes, and | 89 | ;; one global, several definitions for various major modes, and |
| 90 | ;; definitions for specific buffers. | 90 | ;; definitions for specific buffers. |
| 91 | ;; Bffer-specific definitions override mode-specific | 91 | ;; Buffer-specific definitions override mode-specific |
| 92 | ;; definitions, which, in turn, override global definitions. | 92 | ;; definitions, which, in turn, override global definitions. |
| 93 | ;; | 93 | ;; |
| 94 | ;; | 94 | ;; |
| @@ -100,8 +100,8 @@ | |||
| 100 | 100 | ||
| 101 | ;;; Acknowledgements: | 101 | ;;; Acknowledgements: |
| 102 | ;; ----------------- | 102 | ;; ----------------- |
| 103 | ;; Bug reports and ideas contributed by the following users | 103 | ;; Bug reports and ideas contributed by many users have helped |
| 104 | ;; have helped improve Viper and the various versions of VIP. | 104 | ;; improve Viper and the various versions of VIP. |
| 105 | ;; See the on-line manual for a complete list of contributors. | 105 | ;; See the on-line manual for a complete list of contributors. |
| 106 | ;; | 106 | ;; |
| 107 | ;; | 107 | ;; |
| @@ -155,8 +155,8 @@ | |||
| 155 | ;; For instance, C-c will not have its standard Emacs binding | 155 | ;; For instance, C-c will not have its standard Emacs binding |
| 156 | ;; and so many of the goodies of Emacs are not available. | 156 | ;; and so many of the goodies of Emacs are not available. |
| 157 | ;; | 157 | ;; |
| 158 | ;; An skilled user, should set vip-expert-level to at least 3. This will | 158 | ;; A skilled user should set vip-expert-level to at least 3. This will |
| 159 | ;; enable ;; C-c and many Emacs facilities will become available. | 159 | ;; enable `C-c' and many Emacs facilities will become available. |
| 160 | ;; In this case, vip-vi-diehard-minor-mode is inactive. | 160 | ;; In this case, vip-vi-diehard-minor-mode is inactive. |
| 161 | ;; | 161 | ;; |
| 162 | ;; Viper gurus should have at least | 162 | ;; Viper gurus should have at least |
| @@ -821,7 +821,7 @@ These buffers can be cycled through via :R and :P commands.") | |||
| 821 | "t means, arrange that vi-state will be a default.") | 821 | "t means, arrange that vi-state will be a default.") |
| 822 | 822 | ||
| 823 | (defvar vip-ms-style-os-p (memq system-type '(ms-dos windows-nt windows-95)) | 823 | (defvar vip-ms-style-os-p (memq system-type '(ms-dos windows-nt windows-95)) |
| 824 | "Tells is Emacs is running under an MS-style OS: ms-dos, window-nt, W95.") | 824 | "Tells if Emacs is running under an MS-style OS: ms-dos, windows-nt, W95.") |
| 825 | (defvar vip-vms-os-p (memq system-type '(vax-vms axp-vms)) | 825 | (defvar vip-vms-os-p (memq system-type '(vax-vms axp-vms)) |
| 826 | "Tells if Emacs is running under VMS.") | 826 | "Tells if Emacs is running under VMS.") |
| 827 | 827 | ||