Mercurial > emacs
changeset 28695:3930c7410fd6
*** empty log message ***
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 24 Apr 2000 14:01:22 +0000 |
parents | 22bde6ec328f |
children | 0c9cb5ad25fc |
files | etc/NEWS lisp/ChangeLog lisp/cus-load.el src/ChangeLog |
diffstat | 4 files changed, 32 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/etc/NEWS Mon Apr 24 14:00:07 2000 +0000 +++ b/etc/NEWS Mon Apr 24 14:01:22 2000 +0000 @@ -16,6 +16,21 @@ * Changes in Emacs 21.1 +** On window-systems, additional space can be put between text lines +on the display using several methods + +- By setting frame parameter `line-spacing' to PIXELS. PIXELS must be +a positive integer, and specifies that PIXELS number of pixels should +be put below text lines on the affected frame or frames. + +- By setting X resource `lineSpacing', class `LineSpacing'. This is +equivalent ot specifying the frame parameter. + +- By specifying `--line-spaceing=N' or `-lsp N' on the command line. + +- By setting buffer-local variable `line-spacing'. The meaning is +the same, but applies to the a particular buffer only. + ** The new command `clone-buffer-indirectly' can be used to create an indirect buffer that is a twin copy of the current buffer. The command `clone-buffer-indirectly-other-window', bound to C-x 4 c, @@ -315,7 +330,9 @@ ** Hscrolling in C code. -Horizontal scrolling now happens automatically. +Horizontal scrolling now happens automatically if +`automatic-hscrolling' is set (the default). This setting can be +customized. ** Tool bar support.
--- a/lisp/ChangeLog Mon Apr 24 14:00:07 2000 +0000 +++ b/lisp/ChangeLog Mon Apr 24 14:01:22 2000 +0000 @@ -1,3 +1,11 @@ +2000-04-24 Gerd Moellmann <gerd@gnu.org> + + * frame.el (scrolling): New group. + (automatic-hscrolling): New user-option. + + * startup.el (command-line-x-option-alist): Add `-lsp' and + `--line-spacing'. + 2000-04-19 Dave Love <fx@gnu.org> * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
--- a/lisp/cus-load.el Mon Apr 24 14:00:07 2000 +0000 +++ b/lisp/cus-load.el Mon Apr 24 14:01:22 2000 +0000 @@ -400,6 +400,7 @@ (put 'gnus-article-saving 'custom-loads '("gnus-art")) (put 'icomplete 'custom-loads '("icomplete")) (put 'LaTeX 'custom-loads '("reftex-vars")) +(put 'scrolling 'custom-loads '("frame")) (put 'man 'custom-loads '("man")) (put 'solitaire 'custom-loads '("solitaire")) (put 'hippie-expand 'custom-loads '("hippie-exp")) @@ -611,6 +612,8 @@ (custom-put-if-not 'change-log-version-info-enabled 'standard-value t) (custom-put-if-not 'midnight 'custom-version "20.3") (custom-put-if-not 'midnight 'group-documentation "Run something every day at midnight.") +(custom-put-if-not 'automatic-hscrolling 'custom-version "21.1") +(custom-put-if-not 'automatic-hscrolling 'standard-value t) (custom-put-if-not 'custom-buffer-done-function 'custom-version "21.1") (custom-put-if-not 'custom-buffer-done-function 'standard-value t) (custom-put-if-not 'tags-apropos-additional-actions 'custom-version "21.1") @@ -689,6 +692,8 @@ (custom-put-if-not 'checkdoc 'group-documentation "Support for doc string checking in Emacs Lisp.") (custom-put-if-not 'mail-abbrevs-mode 'custom-version "20.3") (custom-put-if-not 'mail-abbrevs-mode 'standard-value t) +(custom-put-if-not 'scrolling 'custom-version "21.1") +(custom-put-if-not 'scrolling 'group-documentation "Scrolling windows.") (custom-put-if-not 'sh-imenu-generic-expression 'custom-version "20.4") (custom-put-if-not 'sh-imenu-generic-expression 'standard-value t) (custom-put-if-not 'temp-buffer-max-height 'custom-version "20.4") @@ -752,7 +757,7 @@ (custom-put-if-not 'eval-expression-print-level 'custom-version "21.1") (custom-put-if-not 'eval-expression-print-level 'standard-value t) -(defvar custom-versions-load-alist '(("20.3.3" "dos-vars") (21.1 "ange-ftp") ("20.4" "files" "sh-script" "help" "compile") ("21.1" "debug" "dabbrev" "paths" "sgml-mode" "fortran" "etags" "cus-edit" "add-log" "find-func" "simple") ("20.3" "desktop" "easymenu" "hscroll" "dabbrev" "ffap" "rmail" "paren" "mailabbrev" "frame" "uce" "mouse" "diary-lib" "sendmail" "debug" "hexl" "vcursor" "vc" "compile" "etags" "help" "browse-url" "add-log" "find-func" "vc-hooks" "cus-edit" "replace")) +(defvar custom-versions-load-alist '(("20.3.3" "dos-vars") (21.1 "ange-ftp") ("20.4" "files" "sh-script" "help" "compile") ("21.1" "debug" "dabbrev" "paths" "sgml-mode" "fortran" "etags" "cus-edit" "frame" "add-log" "find-func" "simple") ("20.3" "desktop" "easymenu" "hscroll" "dabbrev" "ffap" "rmail" "paren" "mailabbrev" "frame" "uce" "mouse" "diary-lib" "sendmail" "debug" "hexl" "vcursor" "vc" "compile" "etags" "help" "browse-url" "add-log" "find-func" "vc-hooks" "cus-edit" "replace")) "For internal use by custom.") (provide 'cus-load)