diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emulation/edt-lk201.el | 4 | ||||
-rw-r--r-- | lisp/emulation/edt-mapper.el | 4 | ||||
-rw-r--r-- | lisp/emulation/edt-pc.el | 4 | ||||
-rw-r--r-- | lisp/emulation/edt-vt100.el | 4 | ||||
-rw-r--r-- | lisp/emulation/edt.el | 7 | ||||
-rw-r--r-- | lisp/simple.el | 8 |
6 files changed, 19 insertions, 12 deletions
diff --git a/lisp/emulation/edt-lk201.el b/lisp/emulation/edt-lk201.el index c30a84d72ae..bb8577c93c5 100644 --- a/lisp/emulation/edt-lk201.el +++ b/lisp/emulation/edt-lk201.el @@ -3,8 +3,8 @@ ;; Copyright (C) 1986, 1992-1993, 1995, 2001-2016 Free Software ;; Foundation, Inc. -;; Author: Kevin Gallagher <Kevin.Gallagher@boeing.com> -;; Maintainer: Kevin Gallagher <Kevin.Gallagher@boeing.com> +;; Author: Kevin Gallagher <kevin.gal@verizon.net> +;; Maintainer: Kevin Gallagher <kevin.gal@verizon.net> ;; Keywords: emulations ;; Package: edt diff --git a/lisp/emulation/edt-mapper.el b/lisp/emulation/edt-mapper.el index df32ac0cee1..0bba9e3eeb4 100644 --- a/lisp/emulation/edt-mapper.el +++ b/lisp/emulation/edt-mapper.el @@ -2,8 +2,8 @@ ;; Copyright (C) 1994-1995, 2000-2016 Free Software Foundation, Inc. -;; Author: Kevin Gallagher <Kevin.Gallagher@boeing.com> -;; Maintainer: Kevin Gallagher <Kevin.Gallagher@boeing.com> +;; Author: Kevin Gallagher <kevin.gal@verizon.net> +;; Maintainer: Kevin Gallagher <kevin.gal@verizon.net> ;; Keywords: emulations ;; Package: edt diff --git a/lisp/emulation/edt-pc.el b/lisp/emulation/edt-pc.el index 13b60fb3c3d..1f55f4a2369 100644 --- a/lisp/emulation/edt-pc.el +++ b/lisp/emulation/edt-pc.el @@ -3,8 +3,8 @@ ;; Copyright (C) 1986, 1994-1995, 2001-2016 Free Software Foundation, ;; Inc. -;; Author: Kevin Gallagher <Kevin.Gallagher@boeing.com> -;; Maintainer: Kevin Gallagher <Kevin.Gallagher@boeing.com> +;; Author: Kevin Gallagher <kevin.gal@verizon.net> +;; Maintainer: Kevin Gallagher <kevin.gal@verizon.net> ;; Keywords: emulations ;; Package: edt diff --git a/lisp/emulation/edt-vt100.el b/lisp/emulation/edt-vt100.el index 1f134f7937c..019283ed6ee 100644 --- a/lisp/emulation/edt-vt100.el +++ b/lisp/emulation/edt-vt100.el @@ -3,8 +3,8 @@ ;; Copyright (C) 1986, 1992-1993, 1995, 2002-2016 Free Software ;; Foundation, Inc. -;; Author: Kevin Gallagher <Kevin.Gallagher@boeing.com> -;; Maintainer: Kevin Gallagher <Kevin.Gallagher@boeing.com> +;; Author: Kevin Gallagher <kevin.gal@verizon.net> +;; Maintainer: Kevin Gallagher <kevin.gal@verizon.net> ;; Keywords: emulations ;; Package: edt diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index 1e55fd86c4a..6bda15bf98d 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el @@ -3,8 +3,8 @@ ;; Copyright (C) 1986, 1992-1995, 2000-2016 Free Software Foundation, ;; Inc. -;; Author: Kevin Gallagher <Kevin.Gallagher@boeing.com> -;; Maintainer: Kevin Gallagher <Kevin.Gallagher@boeing.com> +;; Author: Kevin Gallagher <kevin.gal@verizon.net> +;; Maintainer: Kevin Gallagher <kevin.gal@verizon.net> ;; Keywords: emulations ;; This file is part of GNU Emacs. @@ -59,7 +59,8 @@ ;; The EDT emulation consists of the following files: ;; ;; edt.texi - User manual -;; edt-user.el - Sample Customization File +;; edt-user.el - Sample Customization File (located in Emacs +;; distribution etc directory) ;; edt.el - EDT Emulation Functions and Default Configuration ;; edt-lk201.el - Built-in support for DEC LK-201 Keyboards ;; edt-vt100.el - Built-in support for DEC VT-100 (and above) terminals diff --git a/lisp/simple.el b/lisp/simple.el index cce62c2b301..4efad8ce9e3 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -6736,7 +6736,13 @@ current object." (defun backward-word (&optional arg) "Move backward until encountering the beginning of a word. With argument ARG, do this that many times. -If ARG is omitted or nil, move point backward one word." +If ARG is omitted or nil, move point backward one word. + +The word boundaries are normally determined by the buffer's syntax +table, but `find-word-boundary-function-table', such as set up +by `subword-mode', can change that. If a Lisp program needs to +move by words determined strictly by the syntax table, it should +use `backward-word-strictly' instead." (interactive "^p") (forward-word (- (or arg 1)))) |