/[emacs]/emacs/lisp/simple.el
ViewVC logotype

Diff of /emacs/lisp/simple.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.556 by schwab, Sat Jun 29 18:16:12 2002 UTC revision 1.557 by abraham, Thu Jul 4 13:36:12 2002 UTC
# Line 3189  The variable `selective-display' has a s Line 3189  The variable `selective-display' has a s
3189    (prin1 selective-display t)    (prin1 selective-display t)
3190    (princ "." t))    (princ "." t))
3191    
3192    (defun toggle-truncate-lines (arg)
3193      "Toggle whether to fold or truncate long lines on the screen.
3194    With arg, truncate long lines iff arg is positive."
3195      (interactive "P")
3196      (setq truncate-lines
3197            (if (null arg)
3198                (not truncate-lines)
3199              (> (prefix-numeric-value arg) 0))))
3200    
3201  (defvar overwrite-mode-textual " Ovwrt"  (defvar overwrite-mode-textual " Ovwrt"
3202    "The string displayed in the mode line when in overwrite mode.")    "The string displayed in the mode line when in overwrite mode.")
3203  (defvar overwrite-mode-binary " Bin Ovwrt"  (defvar overwrite-mode-binary " Bin Ovwrt"

Legend:
Removed from v.1.556  
changed lines
  Added in v.1.557

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26