]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fuser_real_login_name): Reindent.
authorPavel Janík <Pavel@Janik.cz>
Tue, 13 Nov 2001 06:59:27 +0000 (06:59 +0000)
committerPavel Janík <Pavel@Janik.cz>
Tue, 13 Nov 2001 06:59:27 +0000 (06:59 +0000)
(Finsert_buffer_substring): Likewise.
(Fcompare_buffer_substrings): Likewise.
(Fsubst_char_in_region): Likewise.

src/ChangeLog
src/editfns.c

index 8fc76324779de918d25d06e21285ff1d27592c81..8d34096f1bc4727a8cbc55641ed7f3ba7e97d04c 100644 (file)
@@ -1,5 +1,10 @@
 2001-11-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
+       * editfns.c (Fuser_real_login_name): Reindent.
+       (Finsert_buffer_substring): Likewise.
+       (Fcompare_buffer_substrings): Likewise.
+       (Fsubst_char_in_region): Likewise.
+
        * dispnew.c (Fsit_for): Reindent.
        (Fframe_or_buffer_changed_p): Likewise.
        (Finternal_show_cursor_p): Likewise.
index 6befea8f35a1a5256170777f1cd5ec5113d46a42..7f94150d0ee25735846a21e42df39dd1b168171d 100644 (file)
@@ -1209,7 +1209,7 @@ with that uid, or nil if there is no such user.  */)
 }
 
 DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
-  0, 0, 0,
+       0, 0, 0,
        doc: /* Return the name of the user's real uid, as a string.
 This ignores the environment variables LOGNAME and USER, so it differs from
 `user-login-name' when running under `su'.  */)
@@ -2304,7 +2304,7 @@ of the buffer.  */)
 }
 
 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
-  1, 3, 0,
+       1, 3, 0,
        doc: /* Insert before point a substring of the contents of buffer BUFFER.
 BUFFER may be a buffer or a buffer name.
 Arguments START and END are character numbers specifying the substring.
@@ -2354,7 +2354,7 @@ They default to the beginning and the end of BUFFER.  */)
 }
 
 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
-  6, 6, 0,
+       6, 6, 0,
        doc: /* Compare two substrings of two buffers; return result as number.
 the value is -N if first string is less after N-1 chars,
 +N if first string is greater after N-1 chars, or 0 if strings match.
@@ -2526,7 +2526,7 @@ subst_char_in_region_unwind_1 (arg)
 }
 
 DEFUN ("subst-char-in-region", Fsubst_char_in_region,
-  Ssubst_char_in_region, 4, 5, 0,
+       Ssubst_char_in_region, 4, 5, 0,
        doc: /* From START to END, replace FROMCHAR with TOCHAR each time it occurs.
 If optional arg NOUNDO is non-nil, don't record this change for undo
 and don't mark the buffer as really changed.