emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r107947: * src/dired.c (Fsystem_users


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107947: * src/dired.c (Fsystem_users): Doc fix.
Date: Mon, 16 Apr 2012 21:35:15 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107947
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2012-04-16 21:35:15 -0400
message:
  * src/dired.c (Fsystem_users): Doc fix.
  
  * etc/NEWS: Mention system-users, system-groups.
modified:
  etc/NEWS
  src/ChangeLog
  src/dired.c
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2012-04-16 03:47:43 +0000
+++ b/etc/NEWS  2012-04-17 01:35:15 +0000
@@ -32,6 +32,9 @@
 
 * Changes in Emacs 24.2
 
+** New functions `system-users', `system-groups' return lists of the user
+name, group names known to the system (where possible).
+
 ** If your Emacs was built from a bzr checkout, the new variable
 `emacs-bzr-version' contains information about which bzr revision was used.
 

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-04-17 01:29:58 +0000
+++ b/src/ChangeLog     2012-04-17 01:35:15 +0000
@@ -1,3 +1,7 @@
+2012-04-17  Glenn Morris  <address@hidden>
+
+       * dired.c (Fsystem_users): Doc fix.
+
 2012-04-17  Dmitry Antipov  <address@hidden>
 
        * dired.c (Fsystem_users, Fsystem_groups): New functions.  (Bug#7900)

=== modified file 'src/dired.c'
--- a/src/dired.c       2012-04-17 01:29:58 +0000
+++ b/src/dired.c       2012-04-17 01:35:15 +0000
@@ -1018,7 +1018,8 @@
 
 DEFUN ("system-users", Fsystem_users, Ssystem_users, 0, 0, 0,
        doc: /* Return a list of user names currently registered in the system.
-The value may be nil if not supported on this platform.  */)
+If we don't know how to determine that on this platform, just
+return a list with one element, taken from `user-real-login-name'.  */)
      (void)
 {
   Lisp_Object users = Qnil;


reply via email to

[Prev in Thread] Current Thread [Next in Thread]