aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2012-06-08 11:44:45 +0300
committerEli Zaretskii2012-06-08 11:44:45 +0300
commite9f66fcb51971f4cc138979b7f65eac588ee133d (patch)
tree474a6e3b81dc04acbb1b56de300646704599aded
parentf3372c8789c843a00912e7fc9793ded4beb9a35a (diff)
downloademacs-e9f66fcb51971f4cc138979b7f65eac588ee133d.tar.gz
emacs-e9f66fcb51971f4cc138979b7f65eac588ee133d.zip
Mention in "C-u C-x =" display how to insert the character w/o input methods.
lisp/descr-text.el (describe-char): Mention how to insert the character, if the current input method doesn't support it. See the discussion in this thread for the details: http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/descr-text.el5
-rw-r--r--lisp/emacs-lisp/cl-loaddefs.el2
-rw-r--r--src/dispnew.c5
4 files changed, 16 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5d9ccc0cd32..2698374ed8a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12012-06-08 Eli Zaretskii <eliz@gnu.org>
2
3 * descr-text.el (describe-char): Mention how to insert the
4 character, if the current input method doesn't support it.
5 See the discussion in this thread for the details:
6 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
7
12012-06-08 Sam Steingold <sds@gnu.org> 82012-06-08 Sam Steingold <sds@gnu.org>
2 9
3 * bindings.el (global-map): Bind XF86Forward to next-buffer and 10 * bindings.el (global-map): Bind XF86Forward to next-buffer and
diff --git a/lisp/descr-text.el b/lisp/descr-text.el
index 50b32fc8f2e..bcb95a54ad6 100644
--- a/lisp/descr-text.el
+++ b/lisp/descr-text.el
@@ -597,7 +597,10 @@ relevant to POS."
597 `(insert-text-button 597 `(insert-text-button
598 ,current-input-method 598 ,current-input-method
599 'type 'help-input-method 599 'type 'help-input-method
600 'help-args '(,current-input-method))))))) 600 'help-args '(,current-input-method))
601 "input method")
602 (list
603 "type \"C-x 8 RET HEX-CODEPOINT\" or \"C-x 8 RET NAME\"")))))
601 ("buffer code" 604 ("buffer code"
602 ,(if multibyte-p 605 ,(if multibyte-p
603 (encoded-string-description 606 (encoded-string-description
diff --git a/lisp/emacs-lisp/cl-loaddefs.el b/lisp/emacs-lisp/cl-loaddefs.el
index 95716ae2e29..cd26660f4f5 100644
--- a/lisp/emacs-lisp/cl-loaddefs.el
+++ b/lisp/emacs-lisp/cl-loaddefs.el
@@ -263,7 +263,7 @@ Remove from SYMBOL's plist the property PROPNAME and its value.
263;;;;;; cl-do* cl-do cl-loop cl-return-from cl-return cl-block cl-etypecase 263;;;;;; cl-do* cl-do cl-loop cl-return-from cl-return cl-block cl-etypecase
264;;;;;; cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when 264;;;;;; cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when
265;;;;;; cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp 265;;;;;; cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp
266;;;;;; cl-gensym) "cl-macs" "cl-macs.el" "4c0f605e3c7454488cc9d498b611f422") 266;;;;;; cl-gensym) "cl-macs" "cl-macs.el" "ce1ef5c6c925f03cb425d9a46cfa6d5f")
267;;; Generated autoloads from cl-macs.el 267;;; Generated autoloads from cl-macs.el
268 268
269(autoload 'cl-gensym "cl-macs" "\ 269(autoload 'cl-gensym "cl-macs" "\
diff --git a/src/dispnew.c b/src/dispnew.c
index a23f2b9a959..5cf6d581790 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -2173,7 +2173,10 @@ adjust_frame_glyphs_for_frame_redisplay (struct frame *f)
2173 any of the windows contain margins. I haven't been able 2173 any of the windows contain margins. I haven't been able
2174 to hunt down the reason, but for the moment this prevents 2174 to hunt down the reason, but for the moment this prevents
2175 the problem from manifesting. -- cyd */ 2175 the problem from manifesting. -- cyd */
2176 && !showing_window_margins_p (XWINDOW (FRAME_ROOT_WINDOW (f)))) 2176#if 0
2177 && !showing_window_margins_p (XWINDOW (FRAME_ROOT_WINDOW (f)))
2178#endif
2179 )
2177 { 2180 {
2178 struct glyph_matrix *copy = save_current_matrix (f); 2181 struct glyph_matrix *copy = save_current_matrix (f);
2179 adjust_glyph_matrix (NULL, f->desired_matrix, 0, 0, matrix_dim); 2182 adjust_glyph_matrix (NULL, f->desired_matrix, 0, 0, matrix_dim);